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

Unified Diff: tests/isolate/src/MessageTest.dart

Issue 10153005: unittest step 3 and 4: remove TestFramework.dart, make test.dart use (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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/isolate/src/MessageTest.dart
diff --git a/tests/isolate/src/MessageTest.dart b/tests/isolate/src/MessageTest.dart
index 3eea9a012297f55fd6fe08d549aeb53b354c99cb..028c901e662f1b8623f73a7a30929ebdf4888e4f 100644
--- a/tests/isolate/src/MessageTest.dart
+++ b/tests/isolate/src/MessageTest.dart
@@ -7,17 +7,13 @@
#library('MessageTest');
#import("dart:isolate");
-#import("TestFramework.dart");
+#import('../../../lib/unittest/unittest.dart');
// ---------------------------------------------------------------------------
// Message passing test.
// ---------------------------------------------------------------------------
class MessageTest {
- static void test(TestExpectation expect) {
- PingPongClient.test(expect);
- }
-
static final List list1 = const ["Hello", "World", "Hello", 0xfffffffffff];
static final List list2 = const [null, list1, list1, list1, list1];
static final List list3 = const [list2, 2.0, true, false, 0xfffffffffff];
@@ -67,9 +63,33 @@ class MessageTest {
}
}
-class PingPongClient {
- static void test(TestExpectation expect) {
- expect.completes(new PingPongServer().spawn()).then((SendPort remote) {
+class PingPongServer extends Isolate {
+ PingPongServer() : super() {}
+
+ void main() {
+ int count = 0;
+ this.port.receive(
+ (var message, SendPort replyTo) {
+ if (message == -1) {
+ this.port.close();
+ replyTo.send(count, null);
+ } else {
+ // Check if the received object is correct.
+ if (count < MessageTest.elms.length) {
+ MessageTest.VerifyObject(count, message);
+ }
+ // Bounce the received object back so that the sender
+ // can make sure that the object matches.
+ replyTo.send(message, null);
+ count++;
+ }
+ });
+ }
+}
+
+main() {
+ test("send objects and receive them back", () {
+ new PingPongServer().spawn().then(later1((SendPort remote) {
// Send objects and receive them back.
for (int i = 0; i < MessageTest.elms.length; i++) {
@@ -77,7 +97,7 @@ class PingPongClient {
// TODO(asiva): remove this local var idx once thew new for-loop
// semantics for closures is implemented.
var idx = i;
- remote.call(sentObject).then(expect.runs1((var receivedObject) {
+ remote.call(sentObject).then(later1((var receivedObject) {
MessageTest.VerifyObject(idx, receivedObject);
}));
}
@@ -107,38 +127,9 @@ class PingPongClient {
});
// Shutdown the MessageServer.
- remote.call(-1).then(expect.runs1((int message) {
+ remote.call(-1).then(later1((int message) {
Expect.equals(MessageTest.elms.length + 1, message);
- expect.succeeded();
}));
- });
- }
-}
-
-class PingPongServer extends Isolate {
- PingPongServer() : super() {}
-
- void main() {
- int count = 0;
- this.port.receive(
- (var message, SendPort replyTo) {
- if (message == -1) {
- this.port.close();
- replyTo.send(count, null);
- } else {
- // Check if the received object is correct.
- if (count < MessageTest.elms.length) {
- MessageTest.VerifyObject(count, message);
- }
- // Bounce the received object back so that the sender
- // can make sure that the object matches.
- replyTo.send(message, null);
- count++;
- }
- });
- }
-}
-
-main() {
- runTests([MessageTest.test]);
+ }));
+ });
}

Powered by Google App Engine
This is Rietveld 408576698