| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 "dart:async"; | 5 import "dart:async"; |
| 6 import "package:expect/expect.dart"; | 6 import "package:expect/expect.dart"; |
| 7 import "package:async_helper/async_helper.dart"; | 7 import "package:async_helper/async_helper.dart"; |
| 8 | 8 |
| 9 // Regression test for http://dartbug.com/27205 | 9 // Regression test for http://dartbug.com/27205 |
| 10 // If a yield-star completes while the stream is paused, it didn't resume. | 10 // If a yield-star completes while the stream is paused, it didn't resume. |
| 11 | 11 |
| 12 main() async { | 12 main() { |
| 13 asyncStart(); | 13 asyncStart(); |
| 14 var c = new Completer(); | 14 var c = new Completer(); |
| 15 var s = yieldStream(mkStream()); | 15 var s = yieldStream(mkStream()); |
| 16 var sub; | 16 var sub; |
| 17 sub = s.listen((v) { | 17 sub = s.listen((v) { |
| 18 sub.pause(); | 18 sub.pause(); |
| 19 print(v); | 19 print(v); |
| 20 Timer.run(sub.resume); | 20 Timer.run(sub.resume); |
| 21 }, onDone: () { | 21 }, onDone: () { |
| 22 print("DONE"); | 22 print("DONE"); |
| 23 c.complete(null); | 23 c.complete(null); |
| 24 }); | 24 }); |
| 25 | 25 |
| 26 await c.future; | 26 c.future.whenComplete(asyncEnd); |
| 27 asyncEnd(); | |
| 28 } | 27 } |
| 29 | 28 |
| 30 Stream yieldStream(Stream s) async* { | 29 Stream yieldStream(Stream s) async* { |
| 31 yield* s; | 30 yield* s; |
| 32 } | 31 } |
| 33 | 32 |
| 34 Stream mkStream() { | 33 Stream mkStream() { |
| 35 var s = new StreamController(sync:true); | 34 var s = new StreamController(sync:true); |
| 36 // The close event has to be sent and received between | 35 // The close event has to be sent and received between |
| 37 // the pause and resume above. | 36 // the pause and resume above. |
| 38 // Using a sync controller and a Timer.run(sub.resume) ensures this. | 37 // Using a sync controller and a Timer.run(sub.resume) ensures this. |
| 39 Timer.run(() { | 38 Timer.run(() { |
| 40 s.add("event"); | 39 s.add("event"); |
| 41 s.close(); | 40 s.close(); |
| 42 }); | 41 }); |
| 43 return s.stream; | 42 return s.stream; |
| 44 } | 43 } |
| OLD | NEW |