Files
sdk/tests/standalone_2/io/named_pipe_script_test.dart
T
Lasse R.H. Nielsen 0b58c4bd10 Change some constant declarations to lowerCase.
Retain the old values.

Reapply of https://dart-review.googlesource.com/c/sdk/+/20680 with fixes
for VM method fingerprints.

Change-Id: Ie14e7ccc3194d5561983348e6b6752728913ff4d
Reviewed-on: https://dart-review.googlesource.com/20664
Reviewed-by: Erik Ernst <eernst@google.com>
Commit-Queue: Lasse R.H. Nielsen <lrn@google.com>
2017-11-14 12:59:14 +00:00

59 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, [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();
}