Files
thedotmack__claude-mem/tests/fake-stdin.ts
T
Alex Newman 14447b9ee9 fix(hooks): fail open on malformed hook stdin (#4006)
Night-ship rebase of #3717 by @rodboev onto latest main.

Treats the stdin reader's malformed-EOF and incomplete-timeout diagnostics as non-blocking so UserPromptSubmit fails open.

Supersedes #3717. Refs #3699 / #3605.
2026-09-10 22:31:36 -07:00

41 lines
1.4 KiB
TypeScript

import { PassThrough, Readable } from 'stream';
const realStdin = process.stdin;
const realStdinDescriptor = Object.getOwnPropertyDescriptor(process, 'stdin');
let activeFake: NodeJS.ReadStream | null = null;
export function installFakeStdin(payload: string): void {
const fake = Readable.from([payload], { objectMode: false }) as unknown as NodeJS.ReadStream;
activeFake = fake;
Object.defineProperty(fake, 'isTTY', { value: false, configurable: true });
Object.defineProperty(process, 'stdin', {
configurable: true,
enumerable: realStdinDescriptor?.enumerable ?? true,
writable: true,
value: fake,
});
}
export function installOpenFakeStdin(payload: string): void {
const fake = new PassThrough() as unknown as NodeJS.ReadStream & { write(chunk: string): boolean };
Object.defineProperty(fake, 'isTTY', { value: false, configurable: true });
Object.defineProperty(process, 'stdin', {
configurable: true,
enumerable: realStdinDescriptor?.enumerable ?? true,
writable: true,
value: fake,
});
activeFake = fake;
fake.write(payload);
}
export function restoreStdin(): void {
activeFake?.destroy?.();
activeFake = null;
if (realStdinDescriptor) {
Object.defineProperty(process, 'stdin', realStdinDescriptor);
} else {
Object.defineProperty(process, 'stdin', { value: realStdin, configurable: true, writable: true });
}
}