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

Unified Diff: tests/standalone/io/async_catch_errors_test.dart

Issue 18788002: Let completers complete in the zone they were constructed in. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Move comment to correct place. Created 7 years, 5 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
« no previous file with comments | « sdk/lib/async/future_impl.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/async_catch_errors_test.dart
diff --git a/tests/standalone/io/async_catch_errors_test.dart b/tests/standalone/io/async_catch_errors_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..68ebec0790c15169c53671aa15694c178da6eaaf
--- /dev/null
+++ b/tests/standalone/io/async_catch_errors_test.dart
@@ -0,0 +1,49 @@
+// 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 'dart:async';
+import 'dart:isolate';
+import 'dart:io';
+
+var events = [];
+
+void testSocketException() {
+ var completer = new Completer();
+ runZonedExperimental(() {
+ Socket.connect("4", 1).then((Socket s) {
+ Expect.fail("Socket should not be able to connect");
+ });
+ }, onError: (err) {
+ if (err is! SocketException) Expect.fail("Not expected error: $err");
+ completer.complete("socket test, ok.");
+ events.add("SocketException");
+ });
+ return completer.future;
+}
+
+void testFileException() {
+ var completer = new Completer();
+ runZonedExperimental(() {
+ new File("lol it's not a file\n").openRead().listen(null);
+ }, onError: (err) {
+ if (err is! FileException) Expect.fail("Not expected error: $err");
+ completer.complete("file test, ok.");
+ events.add("FileException");
+ });
+ return completer.future;
+}
+
+main() {
+ // We keep a ReceivePort open until all tests are done. This way the VM will
+ // hang if the callbacks are not invoked and the test will time out.
+ var timeOutPort = new ReceivePort();
+ testSocketException()
+ .then((_) => testFileException())
+ .then((_) {
+ timeOutPort.close();
+ Expect.listEquals(["SocketException", "FileException"],
+ events);
+ });
+}
« no previous file with comments | « sdk/lib/async/future_impl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698