mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
test: make test output less noisy (denoland/deno#8445)
This commit makes output of tests less noisy by passing "--quiet" flag to Deno subprocesses run as part of test suite.
This commit is contained in:
parent
0ea945721b
commit
4379f0a9c1
@ -10,6 +10,7 @@ Deno.test("[examples/cat] print multiple files", async () => {
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
"--allow-read",
|
||||
"cat.ts",
|
||||
"testdata/cat/hello.txt",
|
||||
|
@ -82,7 +82,14 @@ function catj(
|
||||
...files: string[]
|
||||
): Deno.Process<Deno.RunOptions & { stdin: "piped"; stdout: "piped" }> {
|
||||
return Deno.run({
|
||||
cmd: [Deno.execPath(), "run", "--allow-read", "catj.ts", ...files],
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
"--allow-read",
|
||||
"catj.ts",
|
||||
...files,
|
||||
],
|
||||
cwd: moduleDir,
|
||||
stdin: "piped",
|
||||
stdout: "piped",
|
||||
|
@ -14,6 +14,7 @@ async function startServer(): Promise<
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
"--allow-net",
|
||||
"--allow-read",
|
||||
"server.ts",
|
||||
|
@ -7,7 +7,7 @@ const moduleDir = dirname(fromFileUrl(import.meta.url));
|
||||
Deno.test("[examples/colors] print a colored text", async () => {
|
||||
const decoder = new TextDecoder();
|
||||
const process = Deno.run({
|
||||
cmd: [Deno.execPath(), "run", "colors.ts"],
|
||||
cmd: [Deno.execPath(), "run", "--quiet", "colors.ts"],
|
||||
cwd: moduleDir,
|
||||
stdout: "piped",
|
||||
});
|
||||
|
@ -20,6 +20,7 @@ Deno.test({
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
"--allow-net",
|
||||
"curl.ts",
|
||||
"http://localhost:8081",
|
||||
|
@ -9,7 +9,7 @@ Deno.test("[examples/echo_server]", async () => {
|
||||
const encoder = new TextEncoder();
|
||||
const decoder = new TextDecoder();
|
||||
const process = Deno.run({
|
||||
cmd: [Deno.execPath(), "run", "--allow-net", "echo_server.ts"],
|
||||
cmd: [Deno.execPath(), "run", "--quiet", "--allow-net", "echo_server.ts"],
|
||||
cwd: moduleDir,
|
||||
stdout: "piped",
|
||||
});
|
||||
|
@ -19,6 +19,7 @@ Deno.test("catSmoke", async function (): Promise<void> {
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
"--allow-read",
|
||||
relative(Deno.cwd(), resolve(moduleDir, "cat.ts")),
|
||||
relative(Deno.cwd(), resolve(moduleDir, "..", "README.md")),
|
||||
|
@ -7,7 +7,7 @@ const moduleDir = dirname(fromFileUrl(import.meta.url));
|
||||
Deno.test("[examples/welcome] print a welcome message", async () => {
|
||||
const decoder = new TextDecoder();
|
||||
const process = Deno.run({
|
||||
cmd: [Deno.execPath(), "run", "welcome.ts"],
|
||||
cmd: [Deno.execPath(), "run", "--quiet", "welcome.ts"],
|
||||
cwd: moduleDir,
|
||||
stdout: "piped",
|
||||
});
|
||||
|
@ -38,6 +38,7 @@ Deno.test({
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
xevalPath,
|
||||
"--replvar=abc",
|
||||
"console.log(abc)",
|
||||
@ -58,7 +59,7 @@ Deno.test({
|
||||
|
||||
Deno.test("xevalCliSyntaxError", async function (): Promise<void> {
|
||||
const p = Deno.run({
|
||||
cmd: [Deno.execPath(), "run", xevalPath, "("],
|
||||
cmd: [Deno.execPath(), "run", "--quiet", xevalPath, "("],
|
||||
cwd: moduleDir,
|
||||
stdin: "null",
|
||||
stdout: "piped",
|
||||
|
@ -204,7 +204,7 @@ for (const s of scenes) {
|
||||
);
|
||||
|
||||
try {
|
||||
const args = [Deno.execPath(), "run"];
|
||||
const args = [Deno.execPath(), "run", "--quiet"];
|
||||
|
||||
if (s.read) {
|
||||
args.push("--allow-read");
|
||||
|
@ -113,7 +113,7 @@ for (const s of scenes) {
|
||||
let title = `test ${s.async ? "exists" : "existsSync"}("testdata/${s.file}")`;
|
||||
title += ` ${s.read ? "with" : "without"} --allow-read`;
|
||||
Deno.test(`[fs] existsPermission ${title}`, async function (): Promise<void> {
|
||||
const args = [Deno.execPath(), "run"];
|
||||
const args = [Deno.execPath(), "run", "--quiet"];
|
||||
|
||||
if (s.read) {
|
||||
args.push("--allow-read");
|
||||
|
@ -119,7 +119,13 @@ Deno.test("expandGlobIncludeDirs", async function (): Promise<void> {
|
||||
Deno.test("expandGlobPermError", async function (): Promise<void> {
|
||||
const exampleUrl = new URL("testdata/expand_wildcard.js", import.meta.url);
|
||||
const p = Deno.run({
|
||||
cmd: [Deno.execPath(), "run", "--unstable", exampleUrl.toString()],
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
"--unstable",
|
||||
exampleUrl.toString(),
|
||||
],
|
||||
stdin: "null",
|
||||
stdout: "piped",
|
||||
stderr: "piped",
|
||||
|
@ -25,6 +25,7 @@ async function startFileServer({
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
"--allow-read",
|
||||
"--allow-net",
|
||||
"file_server.ts",
|
||||
@ -50,6 +51,7 @@ async function startFileServerAsLibrary({}: FileServerCfg = {}): Promise<void> {
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
"--allow-read",
|
||||
"--allow-net",
|
||||
"testdata/file_server_as_library.ts",
|
||||
@ -205,6 +207,7 @@ Deno.test("printHelp", async function (): Promise<void> {
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
// TODO(ry) It ought to be possible to get the help output without
|
||||
// --allow-read.
|
||||
"--allow-read",
|
||||
@ -264,6 +267,7 @@ async function startTlsFileServer({
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
"--allow-read",
|
||||
"--allow-net",
|
||||
"file_server.ts",
|
||||
@ -319,6 +323,7 @@ Deno.test("partial TLS arguments fail", async function (): Promise<void> {
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
"--allow-read",
|
||||
"--allow-net",
|
||||
"file_server.ts",
|
||||
|
@ -9,7 +9,7 @@ const moduleDir = dirname(fromFileUrl(import.meta.url));
|
||||
let server: Deno.Process<Deno.RunOptions & { stdout: "piped" }>;
|
||||
async function startServer(): Promise<void> {
|
||||
server = Deno.run({
|
||||
cmd: [Deno.execPath(), "run", "-A", "racing_server.ts"],
|
||||
cmd: [Deno.execPath(), "run", "--quiet", "-A", "racing_server.ts"],
|
||||
cwd: moduleDir,
|
||||
stdout: "piped",
|
||||
});
|
||||
|
@ -370,6 +370,7 @@ Deno.test({
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
"--allow-net",
|
||||
"testdata/simple_server.ts",
|
||||
],
|
||||
@ -415,6 +416,7 @@ Deno.test({
|
||||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
"--allow-net",
|
||||
"--allow-read",
|
||||
"testdata/simple_https_server.ts",
|
||||
|
Loading…
Reference in New Issue
Block a user