Skip to content

Commit

Permalink
Testing: Pretty output + Silent mode (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
zekth authored and ry committed Jun 19, 2019
1 parent b04fda3 commit d44a47a
Showing 1 changed file with 132 additions and 25 deletions.
157 changes: 132 additions & 25 deletions testing/mod.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,76 @@
// 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 interface TestDefinition {
fn: TestFunction;
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;
const candidates: TestDefinition[] = [];

let filtered = 0;

// Must be called before any test() that needs to be filtered.
Expand Down Expand Up @@ -42,7 +101,7 @@ export function test(t: TestDefinition | TestFunction): void {
}

const RED_FAILED = red("FAILED");
const GREEN_OK = green("ok");
const GREEN_OK = green("OK");

interface TestStats {
filtered: number;
Expand All @@ -53,6 +112,7 @@ interface TestStats {
}

interface TestResult {
timeElapsed?: number;
name: string;
error?: Error;
ok: boolean;
Expand All @@ -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 {
if (result.ok) {
console.log(`test ${result.name} ... ${GREEN_OK}`);
} else if (result.error) {
console.error(
`test ${result.name} ... ${RED_FAILED}\n${result.error.stack}`
print(
`${GREEN_OK} ${result.name} ${promptTestTime(
result.timeElapsed,
true
)}`
);
} else if (result.error) {
print(`${RED_FAILED} ${result.name}\n${result.error.stack}`);
} else {
console.log(`test ${result.name} ... unresolved`);
print(`test ${result.name} ... unresolved`);
}
result.printed = true;
}
Expand All @@ -92,7 +169,8 @@ function printResults(
stats: TestStats,
results: TestResults,
flush: boolean,
exitOnFail: boolean
exitOnFail: boolean,
timeElapsed: number
): void {
if (flush) {
for (const result of results.cases.values()) {
Expand All @@ -105,11 +183,12 @@ function printResults(
}
}
// Attempting to match the output of Rust's test runner.
console.log(
print(
`\ntest result: ${stats.failed ? RED_FAILED : GREEN_OK}. ` +
`${stats.passed} passed; ${stats.failed} failed; ` +
`${stats.ignored} ignored; ${stats.measured} measured; ` +
`${stats.filtered} filtered out\n`
`${stats.filtered} filtered out ` +
`${promptTestTime(timeElapsed)}\n`
);
}

Expand All @@ -129,9 +208,12 @@ async function createTestCase(
): Promise<void> {
const result: TestResult = results.cases.get(results.keys.get(name)!)!;
try {
const start = performance.now();
await fn();
const end = performance.now();
stats.passed++;
result.ok = true;
result.timeElapsed = end - start;
} catch (err) {
stats.failed++;
result.error = err;
Expand Down Expand Up @@ -170,21 +252,33 @@ async function runTestsParallel(
async function runTestsSerial(
stats: TestStats,
tests: TestDefinition[],
exitOnFail: boolean
exitOnFail: boolean,
disableLog: boolean
): Promise<void> {
for (const { fn, name } of tests) {
// See https://github.com/denoland/deno/pull/1452
// about this usage of groupCollapsed
console.groupCollapsed(`test ${name} `);
// Displaying the currently running test if silent mode
if (disableLog) {
print(`${yellow("RUNNING")} ${name}`, false);
}
try {
let start, end;
start = performance.now();
await fn();
end = performance.now();
if (disableLog) {
// Rewriting the current prompt line to erase `running ....`
print(CLEAR_LINE, false);
}
stats.passed++;
console.log("...", GREEN_OK);
console.groupEnd();
print(
GREEN_OK + " " + name + " " + promptTestTime(end - start, true)
);
} catch (err) {
console.log("...", RED_FAILED);
console.groupEnd();
console.error(err.stack);
if (disableLog) {
print(CLEAR_LINE, false);
}
print(`${RED_FAILED} ${name}`);
print(err.stack);
stats.failed++;
if (exitOnFail) {
break;
Expand All @@ -199,6 +293,7 @@ export interface RunOptions {
exitOnFail?: boolean;
only?: RegExp;
skip?: RegExp;
disableLog?: boolean;
}

/**
Expand All @@ -209,7 +304,8 @@ export async function runTests({
parallel = false,
exitOnFail = false,
only = /[^\s]/,
skip = /^\s*$/
skip = /^\s*$/,
disableLog = false
}: RunOptions = {}): Promise<void> {
const tests: TestDefinition[] = candidates.filter(
({ name }): boolean => only.test(name) && !skip.test(name)
Expand All @@ -222,13 +318,24 @@ export async function runTests({
failed: 0
};
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) {
await runTestsParallel(stats, results, tests, exitOnFail);
} else {
await runTestsSerial(stats, tests, exitOnFail);
await runTestsSerial(stats, tests, exitOnFail, disableLog);
}
const end = performance.now();
if (disableLog) {
enableConsole();
}
printResults(stats, results, parallel, exitOnFail);
printResults(stats, results, parallel, exitOnFail, end - start);
if (stats.failed) {
// Use setTimeout to avoid the error being ignored due to unhandled
// promise rejections being swallowed.
Expand Down

0 comments on commit d44a47a

Please sign in to comment.