Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: tests/lib_strong/async/zone_empty_description_test.dart

Issue 2802973005: Migrate async tests to strong (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/lib_strong/async/zone_empty_description_test.dart
diff --git a/tests/lib_strong/async/zone_empty_description_test.dart b/tests/lib_strong/async/zone_empty_description_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..30e494f20f9dd384ad8a2a7695d5b7174ff81783
--- /dev/null
+++ b/tests/lib_strong/async/zone_empty_description_test.dart
@@ -0,0 +1,78 @@
+// Copyright (c) 2013, 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.
+
+import 'package:expect/expect.dart';
+import 'package:async_helper/async_helper.dart';
+import 'dart:async';
+
+testForkedZone(Zone forked) {
+ var result;
+ result = forked.run(() {
+ Expect.identical(forked, Zone.current);
+ return 499;
+ });
+ Expect.equals(499, result);
+ Expect.identical(Zone.ROOT, Zone.current);
+
+ result = forked.runUnary((x) {
+ Expect.equals(42, x);
+ Expect.identical(forked, Zone.current);
+ return -499;
+ }, 42);
+ Expect.equals(-499, result);
+ Expect.identical(Zone.ROOT, Zone.current);
+
+ bool runGuardedDidRun = false;
+ forked.runGuarded(() {
+ runGuardedDidRun = true;
+ Expect.identical(forked, Zone.current);
+ });
+ Expect.identical(Zone.ROOT, Zone.current);
+ Expect.isTrue(runGuardedDidRun);
+
+ runGuardedDidRun = false;
+ forked.runUnaryGuarded((x) {
+ runGuardedDidRun = true;
+ Expect.equals(42, x);
+ Expect.identical(forked, Zone.current);
+ }, 42);
+ Expect.identical(Zone.ROOT, Zone.current);
+ Expect.isTrue(runGuardedDidRun);
+
+ var callback = () => 499;
+ Expect.identical(callback, forked.registerCallback(callback));
+ Expect.identical(Zone.ROOT, Zone.current);
+
+ var callback1 = (x) => 42 + x;
+ Expect.identical(callback1, forked.registerUnaryCallback(callback1));
+ Expect.identical(Zone.ROOT, Zone.current);
+
+ asyncStart();
+ bool asyncDidRun = false;
+ forked.scheduleMicrotask(() {
+ Expect.identical(forked, Zone.current);
+ asyncDidRun = true;
+ asyncEnd();
+ });
+ Expect.isFalse(asyncDidRun);
+ Expect.identical(Zone.ROOT, Zone.current);
+
+ asyncStart();
+ bool timerDidRun = false;
+ forked.createTimer(const Duration(milliseconds: 0), () {
+ Expect.identical(forked, Zone.current);
+ timerDidRun = true;
+ asyncEnd();
+ });
+ Expect.identical(Zone.ROOT, Zone.current);
+}
+
+main() {
+ Expect.identical(Zone.ROOT, Zone.current);
+ Zone forked = Zone.current.fork();
+ Expect.isFalse(identical(Zone.ROOT, forked));
+ testForkedZone(forked);
+ Zone forkedChild = forked.fork();
+ testForkedZone(forkedChild);
+}
« no previous file with comments | « tests/lib_strong/async/zone_empty_description2_test.dart ('k') | tests/lib_strong/async/zone_error_callback_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698