| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 library future_test; | 5 library future_test; |
| 6 | 6 |
| 7 import "package:expect/expect.dart"; | 7 import "package:expect/expect.dart"; |
| 8 import 'dart:async'; | 8 import 'dart:async'; |
| 9 import 'dart:isolate'; | |
| 10 | 9 |
| 11 main() { | 10 main() { |
| 12 compare(func) { | 11 compare(func) { |
| 13 // Compare the results of the following two futures. | 12 // Compare the results of the following two futures. |
| 14 Future f1 = new Future(func); | 13 Future f1 = new Future(func); |
| 15 Future f2 = new Future.value().then((_) => func()); | 14 Future f2 = new Future.value().then((_) => func()); |
| 16 f2.catchError((_){}); // I'll get the error later. | 15 f2.catchError((_){}); // I'll get the error later. |
| 17 f1.then((v1) { f2.then((v2) { Expect.equals(v1, v2); }); }, | 16 f1.then((v1) { f2.then((v2) { Expect.equals(v1, v2); }); }, |
| 18 onError: (e1) { | 17 onError: (e1) { |
| 19 f2.then((_) { Expect.fail("Expected error"); }, | 18 f2.then((_) { Expect.fail("Expected error"); }, |
| 20 onError: (e2) { | 19 onError: (e2) { |
| 21 Expect.equals(e1, e2); | 20 Expect.equals(e1, e2); |
| 22 }); | 21 }); |
| 23 }); | 22 }); |
| 24 } | 23 } |
| 25 Future val = new Future.value(42); | 24 Future val = new Future.value(42); |
| 26 Future err1 = new Future.error("Error")..catchError((_){}); | 25 Future err1 = new Future.error("Error")..catchError((_){}); |
| 27 compare(() => 42); | 26 compare(() => 42); |
| 28 compare(() => val); | 27 compare(() => val); |
| 29 compare(() { throw "Flif"; }); | 28 compare(() { throw "Flif"; }); |
| 30 compare(() => err1); | 29 compare(() => err1); |
| 31 bool hasExecuted = false; | 30 bool hasExecuted = false; |
| 32 compare(() { | 31 compare(() { |
| 33 hasExecuted = true; | 32 hasExecuted = true; |
| 34 return 499; | 33 return 499; |
| 35 }); | 34 }); |
| 36 Expect.isFalse(hasExecuted); | 35 Expect.isFalse(hasExecuted); |
| 37 } | 36 } |
| 38 | 37 |
| OLD | NEW |