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

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

Issue 9969202: Add method flush to output stream (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased to r8419 Created 8 years, 6 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 | « runtime/bin/socket_stream_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/file_output_stream_test.dart
diff --git a/tests/standalone/io/file_output_stream_test.dart b/tests/standalone/io/file_output_stream_test.dart
index ee3a0e87aafc485771511c3ec1232379f568ae14..cdbbb52d168a6225997d41899fffff27cc302741 100644
--- a/tests/standalone/io/file_output_stream_test.dart
+++ b/tests/standalone/io/file_output_stream_test.dart
@@ -69,7 +69,36 @@ void testOutputStreamNoPendingWrite() {
}
+void testOutputStreamFlush() {
+ Directory tempDirectory = new Directory('').createTempSync();
+
+ // Create a port for waiting on the final result of this test.
+ ReceivePort done = new ReceivePort();
+ done.receive((message, replyTo) {
+ tempDirectory.deleteSync();
+ done.close();
+ });
+
+ tempDirectory.createTempSync();
+ String fileName = "${tempDirectory.path}/test";
+ File file = new File(fileName);
+ file.createSync();
+ OutputStream x = file.openOutputStream();
+ x.write([65, 66, 67]);
+ x.flush();
+ x.write([68, 69, 70]);
+ x.flush();
+ x.write([71, 72, 73]);
+ x.onClosed = () {
+ file.deleteSync();
+ done.toSendPort().send("done");
+ };
+ x.close();
+ x.onError = (e) => Expect.fail("No error expected");
+}
+
main() {
testOpenOutputStreamSync();
testOutputStreamNoPendingWrite();
+ testOutputStreamFlush();
}
« no previous file with comments | « runtime/bin/socket_stream_impl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698