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

Unified Diff: mojo/dart/test/core_test.dart

Issue 1027603002: Dart: Removes all but native calls and the handle watcher from the snapshot. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Hoist application interface dependence Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/dart/test/compile_all_interfaces_test.dart ('k') | mojo/dart/test/exception_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/dart/test/core_test.dart
diff --git a/mojo/dart/test/core_test.dart b/mojo/dart/test/core_test.dart
index a9798f603be36275278f63726db1b72873f8f109..da6f33517c230fc3247c77c350f7d4cc696c8222 100644
--- a/mojo/dart/test/core_test.dart
+++ b/mojo/dart/test/core_test.dart
@@ -3,9 +3,9 @@
// found in the LICENSE file.
import 'dart:typed_data';
-import 'dart:mojo.core';
import 'package:mojo/dart/testing/expect.dart';
+import 'package:mojo/public/dart/core.dart';
invalidHandleTest() {
MojoHandle invalidHandle = new MojoHandle(MojoHandle.INVALID);
@@ -15,12 +15,13 @@ invalidHandleTest() {
Expect.isTrue(result.isInvalidArgument);
// Wait.
- MojoWaitResult mwr = invalidHandle.wait(MojoHandleSignals.kReadWrite, 1000000);
+ MojoWaitResult mwr =
+ invalidHandle.wait(MojoHandleSignals.kReadWrite, 1000000);
Expect.isTrue(mwr.result.isInvalidArgument);
- MojoWaitManyResult mwmr = MojoHandle.waitMany([invalidHandle.h],
- [MojoHandleSignals.kReadWrite],
- MojoHandle.DEADLINE_INDEFINITE);
+ MojoWaitManyResult mwmr = MojoHandle.waitMany([invalidHandle.h], [
+ MojoHandleSignals.kReadWrite
+ ], MojoHandle.DEADLINE_INDEFINITE);
Expect.isTrue(mwmr.result.isInvalidArgument);
// Message pipe.
@@ -73,7 +74,6 @@ invalidHandleTest() {
Expect.isTrue(result.isInvalidArgument);
}
-
basicMessagePipeTest() {
MojoMessagePipe pipe = new MojoMessagePipe();
Expect.isNotNull(pipe);
@@ -106,9 +106,9 @@ basicMessagePipeTest() {
Expect.isTrue(result.isOk);
// end0 should now be readable.
- MojoWaitManyResult mwmr = MojoHandle.waitMany([end0.handle.h],
- [MojoHandleSignals.kReadable],
- MojoHandle.DEADLINE_INDEFINITE);
+ MojoWaitManyResult mwmr = MojoHandle.waitMany([end0.handle.h], [
+ MojoHandleSignals.kReadable
+ ], MojoHandle.DEADLINE_INDEFINITE);
Expect.isTrue(mwmr.result.isOk);
// Read from end0.
@@ -138,7 +138,6 @@ basicMessagePipeTest() {
Expect.isTrue(result.isOk);
}
-
basicDataPipeTest() {
MojoDataPipe pipe = new MojoDataPipe();
Expect.isNotNull(pipe);
@@ -179,14 +178,14 @@ basicDataPipeTest() {
Expect.equals(written, helloData.lengthInBytes);
// Now that we have written, the consumer should be readable.
- MojoWaitManyResult mwmr = MojoHandle.waitMany([consumer.handle.h],
- [MojoHandleSignals.kReadable],
- MojoHandle.DEADLINE_INDEFINITE);
+ MojoWaitManyResult mwmr = MojoHandle.waitMany([consumer.handle.h], [
+ MojoHandleSignals.kReadable
+ ], MojoHandle.DEADLINE_INDEFINITE);
Expect.isTrue(mwr.result.isOk);
// Do a two-phase write to the producer.
- ByteData twoPhaseWrite = producer.beginWrite(
- 20, MojoDataPipeProducer.FLAG_NONE);
+ ByteData twoPhaseWrite =
+ producer.beginWrite(20, MojoDataPipeProducer.FLAG_NONE);
Expect.isTrue(producer.status.isOk);
Expect.isNotNull(twoPhaseWrite);
Expect.isTrue(twoPhaseWrite.lengthInBytes >= 20);
@@ -210,14 +209,13 @@ basicDataPipeTest() {
Expect.isTrue(mwr.result.isOk);
// Get the number of remaining bytes.
- int remaining = consumer.read(
- null, 0, MojoDataPipeConsumer.FLAG_QUERY);
+ int remaining = consumer.read(null, 0, MojoDataPipeConsumer.FLAG_QUERY);
Expect.isTrue(consumer.status.isOk);
Expect.equals(remaining, "hello world".length - 1);
// Do a two-phase read.
- ByteData twoPhaseRead = consumer.beginRead(
- remaining, MojoDataPipeConsumer.FLAG_NONE);
+ ByteData twoPhaseRead =
+ consumer.beginRead(remaining, MojoDataPipeConsumer.FLAG_NONE);
Expect.isTrue(consumer.status.isOk);
Expect.isNotNull(twoPhaseRead);
Expect.isTrue(twoPhaseRead.lengthInBytes <= remaining);
@@ -229,18 +227,16 @@ basicDataPipeTest() {
consumer.endRead(twoPhaseRead.lengthInBytes);
Expect.isTrue(consumer.status.isOk);
- String helloWorld = new String.fromCharCodes(
- uint8_list.toList());
+ String helloWorld = new String.fromCharCodes(uint8_list.toList());
Expect.equals("hello world", helloWorld);
result = consumer.handle.close();
Expect.isTrue(result.isOk);
}
-
basicSharedBufferTest() {
- MojoSharedBuffer mojoBuffer = new MojoSharedBuffer.create(
- 100, MojoSharedBuffer.CREATE_FLAG_NONE);
+ MojoSharedBuffer mojoBuffer =
+ new MojoSharedBuffer.create(100, MojoSharedBuffer.CREATE_FLAG_NONE);
Expect.isNotNull(mojoBuffer);
Expect.isNotNull(mojoBuffer.status);
Expect.isTrue(mojoBuffer.status.isOk);
@@ -297,7 +293,6 @@ basicSharedBufferTest() {
duplicate = null;
}
-
main() {
invalidHandleTest();
basicMessagePipeTest();
« no previous file with comments | « mojo/dart/test/compile_all_interfaces_test.dart ('k') | mojo/dart/test/exception_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698