2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-02-22 22:28:19 -05:00
|
|
|
// deno-lint-ignore-file no-explicit-any
|
|
|
|
|
2024-07-25 01:30:28 -04:00
|
|
|
import { assert } from "@std/assert";
|
2023-02-22 22:28:19 -05:00
|
|
|
import { isatty } from "node:tty";
|
2024-07-19 06:39:05 -04:00
|
|
|
import tty from "node:tty";
|
2024-01-05 16:37:14 -05:00
|
|
|
import process from "node:process";
|
2023-02-22 22:28:19 -05:00
|
|
|
|
|
|
|
Deno.test("[node/tty isatty] returns true when fd is a tty, false otherwise", () => {
|
2024-09-06 18:37:35 -04:00
|
|
|
assert(Deno.stdin.isTerminal() === isatty((Deno as any).stdin.rid));
|
|
|
|
assert(Deno.stdout.isTerminal() === isatty((Deno as any).stdout.rid));
|
|
|
|
assert(Deno.stderr.isTerminal() === isatty((Deno as any).stderr.rid));
|
2023-02-22 22:28:19 -05:00
|
|
|
|
2024-01-24 09:59:55 -05:00
|
|
|
using file = Deno.openSync("README.md");
|
2023-02-22 22:28:19 -05:00
|
|
|
assert(!isatty(file.rid));
|
|
|
|
});
|
|
|
|
|
|
|
|
Deno.test("[node/tty isatty] returns false for irrelevant values", () => {
|
|
|
|
// invalid numeric fd
|
|
|
|
assert(!isatty(1234567));
|
|
|
|
|
|
|
|
// TODO(kt3k): Enable this test when the below issue resolved
|
|
|
|
// https://github.com/denoland/deno/issues/14398
|
|
|
|
// assert(!isatty(-1));
|
|
|
|
|
|
|
|
// invalid type fd
|
|
|
|
assert(!isatty("abc" as any));
|
|
|
|
assert(!isatty({} as any));
|
|
|
|
assert(!isatty([] as any));
|
|
|
|
assert(!isatty(null as any));
|
|
|
|
assert(!isatty(undefined as any));
|
|
|
|
});
|
2024-01-05 16:37:14 -05:00
|
|
|
|
|
|
|
Deno.test("[node/tty WriteStream.isTTY] returns true when fd is a tty", () => {
|
2024-01-23 18:01:56 -05:00
|
|
|
assert(Deno.stdin.isTerminal() === process.stdin.isTTY);
|
|
|
|
assert(Deno.stdout.isTerminal() === process.stdout.isTTY);
|
2024-01-05 16:37:14 -05:00
|
|
|
});
|
2024-07-19 06:39:05 -04:00
|
|
|
|
|
|
|
Deno.test("[node/tty WriteStream.hasColors] returns true when colors are supported", () => {
|
|
|
|
assert(tty.WriteStream.prototype.hasColors() === !Deno.noColor);
|
2024-08-19 11:13:09 -04:00
|
|
|
assert(tty.WriteStream.prototype.hasColors({}) === !Deno.noColor);
|
|
|
|
|
|
|
|
assert(tty.WriteStream.prototype.hasColors(1));
|
|
|
|
assert(tty.WriteStream.prototype.hasColors(1, {}));
|
2024-07-19 06:39:05 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
Deno.test("[node/tty WriteStream.getColorDepth] returns current terminal color depth", () => {
|
|
|
|
assert([1, 4, 8, 24].includes(tty.WriteStream.prototype.getColorDepth()));
|
|
|
|
});
|