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

Unified Diff: tests/standalone/src/io/DartStdIOPipeTest.dart

Issue 10252020: test rename overhaul: step 12 - standalone (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
« no previous file with comments | « tests/standalone/src/io/CompileAllTest.dart ('k') | tests/standalone/src/io/DartStdIOPipeTest.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/io/DartStdIOPipeTest.dart
diff --git a/tests/standalone/src/io/DartStdIOPipeTest.dart b/tests/standalone/src/io/DartStdIOPipeTest.dart
deleted file mode 100644
index 71a5f9aaf7664fc205cf78bae44a29182e05004b..0000000000000000000000000000000000000000
--- a/tests/standalone/src/io/DartStdIOPipeTest.dart
+++ /dev/null
@@ -1,101 +0,0 @@
-// 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.
-//
-// Test a dart sub-process handling stdio with different types of
-// redirection.
-//
-// VMOptions=
-// VMOptions=--short_socket_read
-// VMOptions=--short_socket_write
-// VMOptions=--short_socket_read --short_socket_write
-
-#import("dart:io");
-#source("ProcessTestUtil.dart");
-
-void checkFileEmpty(String fileName) {
- RandomAccessFile pipeOut = new File(fileName).openSync();
- Expect.equals(0, pipeOut.lengthSync());
- pipeOut.closeSync();
-}
-
-
-void checkFileContent(String fileName, String content) {
- RandomAccessFile pipeOut = new File(fileName).openSync();
- int length = pipeOut.lengthSync();
- List data = new List<int>(length);
- pipeOut.readListSync(data, 0, length);
- Expect.equals(content, new String.fromCharCodes(data));
- pipeOut.closeSync();
-}
-
-
-void test(String shellScript, String dartScript, String type) {
- Directory dir = new Directory("");
- dir.createTempSync();
-
- // The shell script will run the dart executable passed with a
- // number of different redirections of stdio.
- String pipeOutFile = "${dir.path}/pipe";
- String redirectOutFile = "${dir.path}/redirect";
- List args =
- [getDartFileName(), dartScript, type, pipeOutFile, redirectOutFile];
- Process process = new Process.start(shellScript, args);
-
- // Wait for the process to exit and then check result.
- process.onExit = (exitCode) {
- Expect.equals(0, exitCode);
- process.close();
-
- // Check the expected file contents.
- if (type == "0") {
- checkFileContent("${pipeOutFile}", "Hello\n");
- checkFileEmpty("${redirectOutFile}.stderr");
- checkFileContent("${redirectOutFile}.stdout", "Hello\nHello\n");
- }
- if (type == "1") {
- checkFileContent("${pipeOutFile}", "Hello\n");
- checkFileEmpty("${redirectOutFile}.stdout");
- checkFileContent("${redirectOutFile}.stderr", "Hello\nHello\n");
- }
- if (type == "2") {
- checkFileContent("${pipeOutFile}", "Hello\nHello\n");
- checkFileContent("${redirectOutFile}.stdout",
- "Hello\nHello\nHello\nHello\n");
- checkFileContent("${redirectOutFile}.stderr",
- "Hello\nHello\nHello\nHello\n");
- }
-
- // Cleanup test directory.
- dir.deleteRecursivelySync();
- };
-
- process.onError = (ProcessException error) {
- Expect.fail(error.toString());
- };
-}
-
-// This tests that the Dart standalone VM can handle piping to stdin
-// and can pipe to stdout.
-main() {
- // Don't try to run shell scripts on Windows.
- var os = Platform.operatingSystem();
- if (os == 'windows') return;
-
- // Get the shell script for testing the Standalone Dart VM with
- // piping and redirections of stdio.
- var shellScript = new File("tests/standalone/src/io/DartStdIOPipeTest.sh");
- if (!shellScript.existsSync()) {
- shellScript = new File("../tests/standalone/src/io/DartStdIOPipeTest.sh");
- }
- // Get the Dart script file which echoes stdin to stdout or stderr or both.
- var scriptFile = new File("tests/standalone/src/io/ProcessStdIOScript.dart");
- if (!scriptFile.existsSync()) {
- scriptFile = new File("../tests/standalone/src/io/ProcessStdIOScript.dart");
- }
-
- // Run the shell script.
- test(shellScript.name, scriptFile.name, "0");
- test(shellScript.name, scriptFile.name, "1");
- test(shellScript.name, scriptFile.name, "2");
-}
« no previous file with comments | « tests/standalone/src/io/CompileAllTest.dart ('k') | tests/standalone/src/io/DartStdIOPipeTest.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698