dart-sdk/tests/language/async_star/regression_23116_test.dart
Robert Nystrom b81f12a549 Migrate language_2/async_star to NNBD.
Change-Id: I0fa2ee2561dd0bc399d88868d790d56e6df3c94d
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/134940
Commit-Queue: Bob Nystrom <rnystrom@google.com>
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Lasse R.H. Nielsen <lrn@google.com>
2020-02-21 00:22:06 +00:00

34 lines
1,012 B
Dart

// 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;
// At this moment foo is waiting on the given future.
s.pause();
// Ensure that execution of foo is not resumed - the future is not completed
// yet.
s.resume();
completer2.complete(42);
}
main() {
asyncStart();
test().then((_) => asyncEnd());
}