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

Unified Diff: tests/standalone/package/package_isolate_test.dart

Issue 11195017: Allow package: imports inside isolates (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addresses Siva's comments. Created 8 years, 2 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 | « tests/isolate/timer_isolate_test.dart ('k') | tests/standalone/package/sibling_isolate.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/package/package_isolate_test.dart
diff --git a/tests/standalone/package/package_isolate_test.dart b/tests/standalone/package/package_isolate_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..a94a268be21c6531d4af5b3efd5a6a53b28bbc67
--- /dev/null
+++ b/tests/standalone/package/package_isolate_test.dart
@@ -0,0 +1,47 @@
+// Copyright (c) 2012, 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.
+
+library package_isolate_test;
+
+import 'package:shared.dart' as shared;
+import 'dart:isolate';
+import '../../../pkg/unittest/unittest.dart';
+
+expectResponse() {
+ port.receive(expectAsync2((msg, r) {
+ expect('isolate', msg);
+ expect('main', shared.output);
+ port.close();
+ }));
+}
+
+void main() {
+ test("package in spawnFunction()", () {
+ expectResponse();
+ shared.output = 'main';
+ var sendPort = spawnFunction(isolate_main);
+ sendPort.send("sendPort", port.toSendPort());
+ });
+
+ test("package in spawnUri() of sibling file", () {
+ expectResponse();
+ shared.output = 'main';
+ var sendPort = spawnUri('sibling_isolate.dart');
+ sendPort.send('sendPort', port.toSendPort());
+ });
+
+ test("package in spawnUri() of file in folder", () {
+ expectResponse();
+ shared.output = 'main';
+ var sendPort = spawnUri('test_folder/folder_isolate.dart');
+ sendPort.send('sendPort', port.toSendPort());
+ });
+}
+
+void isolate_main() {
+ shared.output = 'isolate';
+ port.receive((msg, replyTo) {
+ replyTo.send(shared.output);
+ });
+}
« no previous file with comments | « tests/isolate/timer_isolate_test.dart ('k') | tests/standalone/package/sibling_isolate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698