mirror of
https://github.com/denoland/deno.git
synced 2025-01-11 16:42:21 -05:00
Testing: Pretty output + Silent mode (denoland/deno_std#314)
Original: d44a47a08d
This commit is contained in:
parent
c85b1c06a9
commit
57edeacaa5
1 changed files with 132 additions and 25 deletions
157
testing/mod.ts
157
testing/mod.ts
|
@ -1,7 +1,15 @@
|
||||||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||||
|
|
||||||
import { green, red } from "../colors/mod.ts";
|
import {
|
||||||
|
bgRed,
|
||||||
|
white,
|
||||||
|
bold,
|
||||||
|
green,
|
||||||
|
red,
|
||||||
|
gray,
|
||||||
|
yellow,
|
||||||
|
italic
|
||||||
|
} from "../colors/mod.ts";
|
||||||
export type TestFunction = () => void | Promise<void>;
|
export type TestFunction = () => void | Promise<void>;
|
||||||
|
|
||||||
export interface TestDefinition {
|
export interface TestDefinition {
|
||||||
|
@ -9,9 +17,60 @@ export interface TestDefinition {
|
||||||
name: string;
|
name: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Replacement of the global `console` function to be in silent mode
|
||||||
|
const noop = function(): void {};
|
||||||
|
|
||||||
|
// Clear the current line of the console.
|
||||||
|
// see: http://ascii-table.com/ansi-escape-sequences-vt-100.php
|
||||||
|
const CLEAR_LINE = "\x1b[2K\r";
|
||||||
|
|
||||||
|
// Save Object of the global `console` in case of silent mode
|
||||||
|
type Console = typeof window.console;
|
||||||
|
// ref https://console.spec.whatwg.org/#console-namespace
|
||||||
|
// For historical web-compatibility reasons, the namespace object for
|
||||||
|
// console must have as its [[Prototype]] an empty object, created as if
|
||||||
|
// by ObjectCreate(%ObjectPrototype%), instead of %ObjectPrototype%.
|
||||||
|
const disabledConsole = Object.create({}) as Console;
|
||||||
|
Object.assign(disabledConsole, {
|
||||||
|
log: noop,
|
||||||
|
debug: noop,
|
||||||
|
info: noop,
|
||||||
|
dir: noop,
|
||||||
|
warn: noop,
|
||||||
|
error: noop,
|
||||||
|
assert: noop,
|
||||||
|
count: noop,
|
||||||
|
countReset: noop,
|
||||||
|
table: noop,
|
||||||
|
time: noop,
|
||||||
|
timeLog: noop,
|
||||||
|
timeEnd: noop,
|
||||||
|
group: noop,
|
||||||
|
groupCollapsed: noop,
|
||||||
|
groupEnd: noop,
|
||||||
|
clear: noop
|
||||||
|
});
|
||||||
|
|
||||||
|
const originalConsole = window.console;
|
||||||
|
|
||||||
|
function enableConsole(): void {
|
||||||
|
window.console = originalConsole;
|
||||||
|
}
|
||||||
|
|
||||||
|
function disableConsole(): void {
|
||||||
|
window.console = disabledConsole;
|
||||||
|
}
|
||||||
|
|
||||||
|
const encoder = new TextEncoder();
|
||||||
|
function print(txt: string, newline: boolean = true): void {
|
||||||
|
if (newline) {
|
||||||
|
txt += "\n";
|
||||||
|
}
|
||||||
|
Deno.stdout.writeSync(encoder.encode(`${txt}`));
|
||||||
|
}
|
||||||
|
|
||||||
let filterRegExp: RegExp | null;
|
let filterRegExp: RegExp | null;
|
||||||
const candidates: TestDefinition[] = [];
|
const candidates: TestDefinition[] = [];
|
||||||
|
|
||||||
let filtered = 0;
|
let filtered = 0;
|
||||||
|
|
||||||
// Must be called before any test() that needs to be filtered.
|
// Must be called before any test() that needs to be filtered.
|
||||||
|
@ -42,7 +101,7 @@ export function test(t: TestDefinition | TestFunction): void {
|
||||||
}
|
}
|
||||||
|
|
||||||
const RED_FAILED = red("FAILED");
|
const RED_FAILED = red("FAILED");
|
||||||
const GREEN_OK = green("ok");
|
const GREEN_OK = green("OK");
|
||||||
|
|
||||||
interface TestStats {
|
interface TestStats {
|
||||||
filtered: number;
|
filtered: number;
|
||||||
|
@ -53,6 +112,7 @@ interface TestStats {
|
||||||
}
|
}
|
||||||
|
|
||||||
interface TestResult {
|
interface TestResult {
|
||||||
|
timeElapsed?: number;
|
||||||
name: string;
|
name: string;
|
||||||
error?: Error;
|
error?: Error;
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
|
@ -75,15 +135,32 @@ function createTestResults(tests: TestDefinition[]): TestResults {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function formatTestTime(time: number = 0): string {
|
||||||
|
return `${time.toFixed(2)}ms`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function promptTestTime(time: number = 0, displayWarning = false): string {
|
||||||
|
// if time > 5s we display a warning
|
||||||
|
// only for test time, not the full runtime
|
||||||
|
if (displayWarning && time >= 5000) {
|
||||||
|
return bgRed(white(bold(`(${formatTestTime(time)})`)));
|
||||||
|
} else {
|
||||||
|
return gray(italic(`(${formatTestTime(time)})`));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function report(result: TestResult): void {
|
function report(result: TestResult): void {
|
||||||
if (result.ok) {
|
if (result.ok) {
|
||||||
console.log(`test ${result.name} ... ${GREEN_OK}`);
|
print(
|
||||||
} else if (result.error) {
|
`${GREEN_OK} ${result.name} ${promptTestTime(
|
||||||
console.error(
|
result.timeElapsed,
|
||||||
`test ${result.name} ... ${RED_FAILED}\n${result.error.stack}`
|
true
|
||||||
|
)}`
|
||||||
);
|
);
|
||||||
|
} else if (result.error) {
|
||||||
|
print(`${RED_FAILED} ${result.name}\n${result.error.stack}`);
|
||||||
} else {
|
} else {
|
||||||
console.log(`test ${result.name} ... unresolved`);
|
print(`test ${result.name} ... unresolved`);
|
||||||
}
|
}
|
||||||
result.printed = true;
|
result.printed = true;
|
||||||
}
|
}
|
||||||
|
@ -92,7 +169,8 @@ function printResults(
|
||||||
stats: TestStats,
|
stats: TestStats,
|
||||||
results: TestResults,
|
results: TestResults,
|
||||||
flush: boolean,
|
flush: boolean,
|
||||||
exitOnFail: boolean
|
exitOnFail: boolean,
|
||||||
|
timeElapsed: number
|
||||||
): void {
|
): void {
|
||||||
if (flush) {
|
if (flush) {
|
||||||
for (const result of results.cases.values()) {
|
for (const result of results.cases.values()) {
|
||||||
|
@ -105,11 +183,12 @@ function printResults(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Attempting to match the output of Rust's test runner.
|
// Attempting to match the output of Rust's test runner.
|
||||||
console.log(
|
print(
|
||||||
`\ntest result: ${stats.failed ? RED_FAILED : GREEN_OK}. ` +
|
`\ntest result: ${stats.failed ? RED_FAILED : GREEN_OK}. ` +
|
||||||
`${stats.passed} passed; ${stats.failed} failed; ` +
|
`${stats.passed} passed; ${stats.failed} failed; ` +
|
||||||
`${stats.ignored} ignored; ${stats.measured} measured; ` +
|
`${stats.ignored} ignored; ${stats.measured} measured; ` +
|
||||||
`${stats.filtered} filtered out\n`
|
`${stats.filtered} filtered out ` +
|
||||||
|
`${promptTestTime(timeElapsed)}\n`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -129,9 +208,12 @@ async function createTestCase(
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
const result: TestResult = results.cases.get(results.keys.get(name)!)!;
|
const result: TestResult = results.cases.get(results.keys.get(name)!)!;
|
||||||
try {
|
try {
|
||||||
|
const start = performance.now();
|
||||||
await fn();
|
await fn();
|
||||||
|
const end = performance.now();
|
||||||
stats.passed++;
|
stats.passed++;
|
||||||
result.ok = true;
|
result.ok = true;
|
||||||
|
result.timeElapsed = end - start;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
stats.failed++;
|
stats.failed++;
|
||||||
result.error = err;
|
result.error = err;
|
||||||
|
@ -170,21 +252,33 @@ async function runTestsParallel(
|
||||||
async function runTestsSerial(
|
async function runTestsSerial(
|
||||||
stats: TestStats,
|
stats: TestStats,
|
||||||
tests: TestDefinition[],
|
tests: TestDefinition[],
|
||||||
exitOnFail: boolean
|
exitOnFail: boolean,
|
||||||
|
disableLog: boolean
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
for (const { fn, name } of tests) {
|
for (const { fn, name } of tests) {
|
||||||
// See https://github.com/denoland/deno/pull/1452
|
// Displaying the currently running test if silent mode
|
||||||
// about this usage of groupCollapsed
|
if (disableLog) {
|
||||||
console.groupCollapsed(`test ${name} `);
|
print(`${yellow("RUNNING")} ${name}`, false);
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
|
let start, end;
|
||||||
|
start = performance.now();
|
||||||
await fn();
|
await fn();
|
||||||
|
end = performance.now();
|
||||||
|
if (disableLog) {
|
||||||
|
// Rewriting the current prompt line to erase `running ....`
|
||||||
|
print(CLEAR_LINE, false);
|
||||||
|
}
|
||||||
stats.passed++;
|
stats.passed++;
|
||||||
console.log("...", GREEN_OK);
|
print(
|
||||||
console.groupEnd();
|
GREEN_OK + " " + name + " " + promptTestTime(end - start, true)
|
||||||
|
);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log("...", RED_FAILED);
|
if (disableLog) {
|
||||||
console.groupEnd();
|
print(CLEAR_LINE, false);
|
||||||
console.error(err.stack);
|
}
|
||||||
|
print(`${RED_FAILED} ${name}`);
|
||||||
|
print(err.stack);
|
||||||
stats.failed++;
|
stats.failed++;
|
||||||
if (exitOnFail) {
|
if (exitOnFail) {
|
||||||
break;
|
break;
|
||||||
|
@ -199,6 +293,7 @@ export interface RunOptions {
|
||||||
exitOnFail?: boolean;
|
exitOnFail?: boolean;
|
||||||
only?: RegExp;
|
only?: RegExp;
|
||||||
skip?: RegExp;
|
skip?: RegExp;
|
||||||
|
disableLog?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -209,7 +304,8 @@ export async function runTests({
|
||||||
parallel = false,
|
parallel = false,
|
||||||
exitOnFail = false,
|
exitOnFail = false,
|
||||||
only = /[^\s]/,
|
only = /[^\s]/,
|
||||||
skip = /^\s*$/
|
skip = /^\s*$/,
|
||||||
|
disableLog = false
|
||||||
}: RunOptions = {}): Promise<void> {
|
}: RunOptions = {}): Promise<void> {
|
||||||
const tests: TestDefinition[] = candidates.filter(
|
const tests: TestDefinition[] = candidates.filter(
|
||||||
({ name }): boolean => only.test(name) && !skip.test(name)
|
({ name }): boolean => only.test(name) && !skip.test(name)
|
||||||
|
@ -222,13 +318,24 @@ export async function runTests({
|
||||||
failed: 0
|
failed: 0
|
||||||
};
|
};
|
||||||
const results: TestResults = createTestResults(tests);
|
const results: TestResults = createTestResults(tests);
|
||||||
console.log(`running ${tests.length} tests`);
|
print(`running ${tests.length} tests`);
|
||||||
|
const start = performance.now();
|
||||||
|
if (Deno.args.includes("--quiet")) {
|
||||||
|
disableLog = true;
|
||||||
|
}
|
||||||
|
if (disableLog) {
|
||||||
|
disableConsole();
|
||||||
|
}
|
||||||
if (parallel) {
|
if (parallel) {
|
||||||
await runTestsParallel(stats, results, tests, exitOnFail);
|
await runTestsParallel(stats, results, tests, exitOnFail);
|
||||||
} else {
|
} else {
|
||||||
await runTestsSerial(stats, tests, exitOnFail);
|
await runTestsSerial(stats, tests, exitOnFail, disableLog);
|
||||||
}
|
}
|
||||||
printResults(stats, results, parallel, exitOnFail);
|
const end = performance.now();
|
||||||
|
if (disableLog) {
|
||||||
|
enableConsole();
|
||||||
|
}
|
||||||
|
printResults(stats, results, parallel, exitOnFail, end - start);
|
||||||
if (stats.failed) {
|
if (stats.failed) {
|
||||||
// Use setTimeout to avoid the error being ignored due to unhandled
|
// Use setTimeout to avoid the error being ignored due to unhandled
|
||||||
// promise rejections being swallowed.
|
// promise rejections being swallowed.
|
||||||
|
|
Loading…
Reference in a new issue