Chromium Code Reviews| Index: tests/language/async_star_regression_23116_test.dart |
| diff --git a/tests/language/async_star_regression_23116_test.dart b/tests/language/async_star_regression_23116_test.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c7e19f1ae1cc9f1be8076ae66c5e2eaae947b34c |
| --- /dev/null |
| +++ b/tests/language/async_star_regression_23116_test.dart |
| @@ -0,0 +1,32 @@ |
| +// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| +// for details. All rights reserved. Use of this source code is governed by a |
| +// BSD-style license that can be found in the LICENSE file. |
| + |
| +// Regression test for https://code.google.com/p/dart/issues/detail?id=23116 |
| + |
| +import "package:expect/expect.dart"; |
| +import "package:async_helper/async_helper.dart"; |
| +import 'dart:async'; |
| + |
| +Stream<int> foo(Completer completer, Future future) async* { |
| + completer.complete(100); |
| + int x = await future; |
| + Expect.equals(42, x); |
| +} |
| + |
| +test() async { |
| + Completer completer1 = new Completer(); |
| + Completer completer2 = new Completer(); |
| + StreamSubscription s = foo(completer1, completer2.future).listen((v) => null); |
| + await completer1.future; |
| + // Now foo will be waiting future. |
|
floitsch
2015/04/08 14:01:25
// At this moment foo is waiting on the given futu
sigurdm
2015/04/08 14:07:40
Done.
|
| + s.pause(); |
| + // Ensure that execution of foo is not resumed - future is not completed yet. |
|
floitsch
2015/04/08 14:01:25
the future
sigurdm
2015/04/08 14:07:40
Done.
|
| + s.resume(); |
| + completer2.complete(42); |
| +} |
| + |
| +main() { |
| + asyncStart(); |
| + test().then((_) => asyncEnd()); |
| +} |