| // Copyright (c) 2022, 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"; |
| import "package:path/path.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; |
| } |
| |
| Directory dir = Directory.systemTemp.createTempSync('named_pipe'); |
| final String stdinPipePath = '/dev/fd/0'; |
| final String script = ''' |
| import "dart:io"; |
| main() { |
| FileStat fileStat = FileStat.statSync("$stdinPipePath"); |
| print(fileStat.type); |
| } |
| '''; |
| File file = new File(join(dir.path, "typeScript")); |
| file.writeAsString(script); |
| |
| // 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."); |
| dir.deleteSync(recursive: true); |
| asyncEnd(); |
| return; |
| } |
| |
| StringBuffer output = new StringBuffer(); |
| Process process = await Process.start( |
| Platform.executable, |
| [] |
| ..addAll(Platform.executableArguments) |
| ..add('--sound-null-safety') |
| ..add('--verbosity=warning') |
| ..add(file.path)); |
| 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("pipe\n", output.toString()); |
| } |
| |
| dir.deleteSync(recursive: true); |
| asyncEnd(); |
| } |