Files
sdk/tests/standalone_2/io/named_pipe_script_test.dart
T
Alexander Markov f5c16512cc [Tests] Pass VM options (Platform.executableArguments) to sub-processes
When testing runs with certain set of VM options and tests launch
new Dart processes, VM options should be also forwarded to child
processes.

Change-Id: I7207fe87672cd61fd50d7ac77ef1da67744af183
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/97169
Auto-Submit: Alexander Markov <alexmarkov@google.com>
Reviewed-by: Régis Crelier <regis@google.com>
Commit-Queue: Alexander Markov <alexmarkov@google.com>
2019-03-18 23:20:41 +00:00

63 lines
1.8 KiB
Dart

// Copyright (c) 2016, 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.
// Testing file input stream, VM-only, standalone test.
import "dart:convert";
import "dart:io";
import "package:async_helper/async_helper.dart";
import "package:expect/expect.dart";
main() async {
asyncStart();
// Reading a script from a named pipe is only supported on Linux and MacOS.
if (!Platform.isLinux && !Platform.isMacOS) {
print("This test is only supported on Linux and MacOS.");
asyncEnd();
return;
}
final String script = 'main() { print("Hello, World!"); }';
final String stdinPipePath = '/dev/fd/0';
// If there's no file system access to the pipe, then we can't do a meaningful
// test.
if (!await (new File(stdinPipePath).exists())) {
print("Couldn't find $stdinPipePath.");
asyncEnd();
return;
}
StringBuffer output = new StringBuffer();
Process process = await Process.start(
Platform.executable,
[]
..addAll(Platform.executableArguments)
..add(stdinPipePath));
bool stdinWriteFailed = false;
process.stdout.transform(utf8.decoder).listen(output.write);
process.stderr.transform(utf8.decoder).listen((data) {
if (!stdinWriteFailed) {
Expect.fail(data);
process.kill();
}
});
process.stdin.done.catchError((e) {
// If the write to stdin fails, then give up. We can't test the thing we
// wanted to test.
stdinWriteFailed = true;
process.kill();
});
process.stdin.writeln(script);
await process.stdin.flush();
await process.stdin.close();
int status = await process.exitCode;
if (!stdinWriteFailed) {
Expect.equals(0, status);
Expect.equals("Hello, World!\n", output.toString());
}
asyncEnd();
}