Files
bun.sh/test/js/node/nodettywrap.test.ts
2024-09-03 21:32:52 -07:00

55 lines
1.5 KiB
TypeScript

import { expect, test } from "bun:test";
import { isatty } from "node:tty";
test("process.binding('tty_wrap')", () => {
// @ts-expect-error
const tty_wrap = process.binding("tty_wrap");
expect(tty_wrap).toBeDefined();
expect(tty_wrap).toHaveProperty("TTY");
expect(tty_wrap).toHaveProperty("isTTY");
const tty = tty_wrap.TTY;
expect(tty).toHaveProperty("prototype");
const tty_prototype = tty.prototype;
expect(tty_prototype).toHaveProperty("getWindowSize");
expect(tty_prototype).toHaveProperty("setRawMode");
const tty_isTTY = tty_wrap.isTTY;
expect(tty_isTTY(0)).toBe(isatty(0));
expect(tty_isTTY(1)).toBe(isatty(1));
expect(tty_isTTY(2)).toBe(isatty(2));
expect(tty_isTTY(9999999)).toBe(false);
expect(() => tty()).toThrow(TypeError);
if (isatty(0)) {
expect(() => new tty(0)).not.toThrow();
const array = [-1, -1];
expect(() => tty_prototype.getWindowSize.call(array, 0)).toThrow(TypeError);
const ttywrapper = new tty(0);
expect(ttywrapper.getWindowSize(array)).toBeBoolean();
if (ttywrapper.getWindowSize(array)) {
expect(array[0]).toBeNumber();
expect(array[0]).toBeGreaterThanOrEqual(0);
expect(array[1]).toBeNumber();
expect(array[1]).toBeGreaterThanOrEqual(0);
} else {
expect(array[0]).toBe(-1);
expect(array[1]).toBe(-1);
}
} else {
expect(() => new tty(0)).toThrow();
console.warn("warn: Skipping tty tests because stdin is not a tty");
}
});