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

Side by Side Diff: tests/isolate/capability_test.dart

Issue 196983012: Made SendPort a Capability. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/isolate/isolate.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import "dart:isolate"; 5 import "dart:isolate";
6 import "package:expect/expect.dart"; 6 import "package:expect/expect.dart";
7 import "package:async_helper/async_helper.dart"; 7 import "package:async_helper/async_helper.dart";
8 8
9 void main() { 9 void main() {
10 asyncStart(); 10 asyncStart();
11 var c1 = new Capability();
12 var c2 = new Capability();
13 Expect.notEquals(c1, c2);
14 11
15 var receive = new RawReceivePort(); 12 test(c1, c2) {
16 receive.sendPort.send(c1); 13 asyncStart();
17 receive.handler = (c3) { 14 Expect.notEquals(c1, c2);
18 Expect.equals(c3, c1); 15 var receive = new RawReceivePort();
19 Expect.notEquals(c3, c2); 16 receive.sendPort.send(c1);
20 asyncEnd(); 17 receive.handler = (c3) {
21 }; 18 Expect.equals(c3, c1);
19 Expect.notEquals(c3, c2);
20 receive.close();
21 asyncEnd();
22 };
23 }
24 Capability c1 = new Capability();
25 Capability c2 = new Capability();
26 Capability c3 = (new RawReceivePort()..close()).sendPort;
27 Capability c4 = (new RawReceivePort()..close()).sendPort;
28 test(c1, c2);
29 test(c3, c4);
30 test(c1, c3);
31 asyncEnd();
22 } 32 }
OLDNEW
« no previous file with comments | « sdk/lib/isolate/isolate.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698