Files
bun.sh/test/js/node/child_process/child-process-stdio.test.js
2024-03-07 03:07:48 -08:00

119 lines
3.3 KiB
JavaScript

// @known-failing-on-windows: 1 failing
import { describe, it, expect, beforeAll } from "bun:test";
import { spawn, execSync } from "node:child_process";
import { bunExe, bunEnv } from "harness";
const CHILD_PROCESS_FILE = import.meta.dir + "/spawned-child.js";
const OUT_FILE = import.meta.dir + "/stdio-test-out.txt";
describe("process.stdout", () => {
it("should allow us to write to it", done => {
const child = spawn(bunExe(), [CHILD_PROCESS_FILE, "STDOUT"], {
env: bunEnv,
stdio: ["inherit", "pipe", "inherit"],
});
child.stdout.setEncoding("utf8");
child.stdout.on("data", data => {
try {
expect(data).toBe("stdout_test");
done();
} catch (err) {
done(err);
}
});
});
});
describe("process.stdin", () => {
it("should allow us to read from stdin in readable mode", done => {
const input = "hello\n";
// Child should read from stdin and write it back
const child = spawn(bunExe(), [CHILD_PROCESS_FILE, "STDIN", "READABLE"], {
env: bunEnv,
stdio: ["pipe", "pipe", "inherit"],
});
let data = "";
child.stdout.setEncoding("utf8");
child.stdout
.on("data", chunk => {
data += chunk;
})
.on("end", function () {
try {
expect(data).toBe(`data: ${input}`);
done();
} catch (err) {
done(err);
}
});
child.stdin.write(input, function () {
child.stdin.end(...arguments);
});
});
it("should allow us to read from stdin via flowing mode", done => {
const input = "hello\n";
// Child should read from stdin and write it back
const child = spawn(bunExe(), [CHILD_PROCESS_FILE, "STDIN", "FLOWING"], {
env: bunEnv,
stdio: ["pipe", "pipe", "inherit"],
});
let data = "";
child.stdout.setEncoding("utf8");
child.stdout
.on("readable", () => {
let chunk;
while ((chunk = child.stdout.read()) !== null) {
data += chunk;
}
})
.on("end", function () {
try {
expect(data).toBe(`data: ${input}`);
done();
} catch (err) {
done(err);
}
});
child.stdin.end(input);
});
it.only("should allow us to read > 65kb from stdin", done => {
const numReps = Math.ceil((1024 * 1024) / 5);
const input = Buffer.alloc("hello".length * numReps)
.fill("hello")
.toString();
// Child should read from stdin and write it back
const child = spawn(bunExe(), [CHILD_PROCESS_FILE, "STDIN", "FLOWING"], {
env: { ...bunEnv, BUN_DEBUG_QUIET_LOGS: "1" },
stdio: ["pipe", "pipe", "inherit"],
});
let data = "";
child.stdout.setEncoding("utf8");
child.stdout
.on("readable", () => {
let chunk;
while ((chunk = child.stdout.read()) !== null) {
data += chunk;
}
})
.on("end", function () {
try {
expect(data).toBe(`data: ${input}`);
done();
} catch (err) {
done(err);
}
});
child.stdin.end(input);
});
it("should allow us to read from a file", () => {
const result = execSync(`${bunExe()} ${CHILD_PROCESS_FILE} STDIN FLOWING < ${import.meta.dir}/readFileSync.txt`, {
encoding: "utf8",
env: bunEnv,
});
expect(result).toEqual("data: File read successfully");
});
});