| 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 // Test the StreamSubscription.cancel return Future. | 5 // Test the StreamSubscription.cancel return Future. |
| 6 library stream_subscription_cancel; | 6 library stream_subscription_cancel; |
| 7 | 7 |
| 8 import 'dart:async'; | 8 import 'dart:async'; |
| 9 import 'package:unittest/unittest.dart'; | 9 import 'package:test/test.dart'; |
| 10 | 10 |
| 11 void main() { | 11 void main() { |
| 12 test('subscription.cancel', () { | 12 test('subscription.cancel', () { |
| 13 var completer = new Completer(); | 13 var completer = new Completer(); |
| 14 StreamController controller = new StreamController( | 14 StreamController controller = new StreamController( |
| 15 onCancel: () => completer.future); | 15 onCancel: () => completer.future); |
| 16 | 16 |
| 17 bool done = false; | 17 bool done = false; |
| 18 expect(controller.stream.listen(null).cancel().then((_) => done), | 18 expect(controller.stream.listen(null).cancel().then((_) => done), |
| 19 completion(equals(true))); | 19 completion(equals(true))); |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 var future = controller.stream.where((x) => true).listen(null).cancel(); | 313 var future = controller.stream.where((x) => true).listen(null).cancel(); |
| 314 | 314 |
| 315 expect(future.then((_) => done = true), completion(equals(true))); | 315 expect(future.then((_) => done = true), completion(equals(true))); |
| 316 | 316 |
| 317 Timer.run(() { | 317 Timer.run(() { |
| 318 expect(done, isFalse); | 318 expect(done, isFalse); |
| 319 completer.complete(); | 319 completer.complete(); |
| 320 }); | 320 }); |
| 321 }); | 321 }); |
| 322 } | 322 } |
| OLD | NEW |