2020-02-24 08:31:40 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { assertStrictEq } from "../../testing/asserts.ts";
|
|
|
|
|
|
|
|
Deno.test("[examples/cat] print multiple files", async () => {
|
|
|
|
const decoder = new TextDecoder();
|
|
|
|
const process = Deno.run({
|
2020-03-21 17:44:18 -04:00
|
|
|
cmd: [
|
2020-02-24 08:31:40 -05:00
|
|
|
Deno.execPath(),
|
2020-05-04 07:03:30 -04:00
|
|
|
"run",
|
2020-02-24 08:31:40 -05:00
|
|
|
"--allow-read",
|
|
|
|
"cat.ts",
|
|
|
|
"testdata/cat/hello.txt",
|
2020-03-28 13:03:49 -04:00
|
|
|
"testdata/cat/world.txt",
|
2020-02-24 08:31:40 -05:00
|
|
|
],
|
|
|
|
cwd: "examples",
|
2020-03-28 13:03:49 -04:00
|
|
|
stdout: "piped",
|
2020-02-24 08:31:40 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
try {
|
2020-03-18 19:25:55 -04:00
|
|
|
const output = await process.output();
|
2020-02-24 08:31:40 -05:00
|
|
|
const actual = decoder.decode(output).trim();
|
|
|
|
assertStrictEq(actual, "Hello\nWorld");
|
|
|
|
} finally {
|
|
|
|
process.close();
|
|
|
|
}
|
|
|
|
});
|