| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
| 6 import 'dart:async'; | 6 import 'dart:async'; |
| 7 import 'dart:isolate'; | 7 import 'dart:isolate'; |
| 8 | 8 |
| 9 main() { | 9 main() { |
| 10 // We keep a ReceivePort open until all tests are done. This way the VM will | 10 // We keep a ReceivePort open until all tests are done. This way the VM will |
| 11 // time out if the callbacks are not invoked. | 11 // hang if the callbacks are not invoked and the test will time out. |
| 12 var port = new ReceivePort(); | 12 var port = new ReceivePort(); |
| 13 var events = []; | 13 var events = []; |
| 14 // Test nested `catchErrors`. | 14 // Work around bug that makes runAsync use Timers. By invoking `runAsync` here |
| 15 // The nested `catchErrors` throws all kinds of different errors (synchronous | 15 // we make sure that asynchronous non-timer events are executed before any |
| 16 // and asynchronous). The body of the outer `catchErrors` furthermore has a | 16 // Timer events. |
| 17 // synchronous `throw`. | 17 runAsync(() { }); |
| 18 |
| 19 // Test that errors are caught by nested `catchErrors`. Also uses `runAsync` |
| 20 // in the body of a Timer. |
| 18 catchErrors(() { | 21 catchErrors(() { |
| 19 events.add("catch error entry"); | 22 events.add("catch error entry"); |
| 20 catchErrors(() { | 23 catchErrors(() { |
| 21 events.add("catch error entry2"); | 24 events.add("catch error entry2"); |
| 22 new Future.error("future error"); | 25 Timer.run(() { throw "timer error"; }); |
| 23 new Future.error("future error2"); | 26 new Timer(const Duration(milliseconds: 50), |
| 24 new Future.value(499).then((x) => throw x); | 27 () { |
| 25 new Future.delayed(const Duration(milliseconds: 50), () { | 28 runAsync(() { throw "runAsync"; }); |
| 26 throw "delayed error"; | 29 throw "delayed error"; |
| 27 }); | 30 }); |
| 28 throw "catch error"; | |
| 29 }).listen((x) { events.add(x); }) | 31 }).listen((x) { events.add(x); }) |
| 30 .asFuture() | 32 .asFuture() |
| 31 .then((_) => events.add("inner done")) | 33 .then((_) => events.add("inner done")) |
| 32 .then((_) { throw "inner done throw"; }); | 34 .then((_) { throw "inner done throw"; }); |
| 33 events.add("after inner"); | 35 events.add("after inner"); |
| 36 Timer.run(() { throw "timer outer"; }); |
| 34 throw "inner throw"; | 37 throw "inner throw"; |
| 35 }).listen((x) { | 38 }).listen((x) { |
| 36 events.add(x); | 39 events.add(x); |
| 37 }, | 40 }, |
| 38 onDone: () { | 41 onDone: () { |
| 39 Expect.listEquals([ | 42 Expect.listEquals([ |
| 40 "catch error entry", | 43 "catch error entry", |
| 41 "catch error entry2", | 44 "catch error entry2", |
| 42 "after inner", | 45 "after inner", |
| 43 "main exit", | 46 "main exit", |
| 44 "catch error", | |
| 45 "inner throw", | 47 "inner throw", |
| 46 "future error", | 48 "timer error", |
| 47 "future error2", | 49 "timer outer", |
| 48 499, | |
| 49 "delayed error", | 50 "delayed error", |
| 51 "runAsync", |
| 50 "inner done", | 52 "inner done", |
| 51 "inner done throw" | 53 "inner done throw" |
| 52 ], | 54 ], |
| 53 events); | 55 events); |
| 54 port.close(); | 56 port.close(); |
| 55 }); | 57 }); |
| 56 events.add("main exit"); | 58 events.add("main exit"); |
| 57 } | 59 } |
| OLD | NEW |