1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-14 16:33:45 -05:00
denoland-deno/js/testing/testing.ts

116 lines
2.8 KiB
TypeScript
Raw Normal View History

2018-08-09 17:48:17 -04:00
/*!
Copyright 2018 Propel http://propel.site/. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
export { assert, assertEqual, equal } from "./util";
2018-08-09 17:48:17 -04:00
export type TestFunction = () => void | Promise<void>;
export interface TestDefinition {
fn: TestFunction;
name: string;
}
export const exitOnFail = true;
let filterRegExp: RegExp | null;
2018-08-09 17:48:17 -04:00
const tests: TestDefinition[] = [];
let filtered = 0;
const ignored = 0;
const measured = 0;
// Must be called before any test() that needs to be filtered.
export function setFilter(s: string): void {
filterRegExp = new RegExp(s, "i");
}
2018-08-09 17:48:17 -04:00
export function test(t: TestDefinition | TestFunction): void {
const fn: TestFunction = typeof t === "function" ? t : t.fn;
const name: string = t.name;
if (!name) {
throw new Error("Test function may not be anonymous");
}
if (filter(name)) {
tests.push({ fn, name });
} else {
filtered++;
2018-08-09 17:48:17 -04:00
}
}
function filter(name: string): boolean {
if (filterRegExp) {
return filterRegExp.test(name);
} else {
return true;
}
}
2018-10-03 21:54:26 -04:00
const RESET = "\x1b[0m";
const FG_RED = "\x1b[31m";
const FG_GREEN = "\x1b[32m";
function red_failed() {
2018-10-04 05:01:21 -04:00
return FG_RED + "FAILED" + RESET;
2018-10-03 21:54:26 -04:00
}
function green_ok() {
2018-10-04 05:01:21 -04:00
return FG_GREEN + "ok" + RESET;
2018-10-03 21:54:26 -04:00
}
2018-08-09 17:48:17 -04:00
async function runTests() {
let passed = 0;
let failed = 0;
2018-10-03 21:54:26 -04:00
console.log("running", tests.length, "tests");
2018-08-09 17:48:17 -04:00
for (let i = 0; i < tests.length; i++) {
const { fn, name } = tests[i];
2018-10-03 21:54:26 -04:00
let result = green_ok();
2018-10-05 14:11:10 -04:00
console.log("test", name);
2018-08-09 17:48:17 -04:00
try {
await fn();
passed++;
} catch (e) {
2018-10-03 21:54:26 -04:00
result = red_failed();
2018-08-09 17:48:17 -04:00
console.error((e && e.stack) || e);
failed++;
if (exitOnFail) {
break;
}
}
2018-10-05 14:11:10 -04:00
// TODO Do this on the same line as test name is printed.
console.log("...", result);
2018-08-09 17:48:17 -04:00
}
2018-10-03 21:54:26 -04:00
// Attempting to match the output of Rust's test runner.
const result = failed > 0 ? red_failed() : green_ok();
console.log(
`\ntest result: ${result}. ${passed} passed; ${failed} failed; ` +
2018-10-04 05:01:21 -04:00
`${ignored} ignored; ${measured} measured; ${filtered} filtered out\n`
);
2018-08-09 17:48:17 -04:00
if (failed === 0) {
// All good.
} else {
// Use setTimeout to avoid the error being ignored due to unhandled
// promise rejections being swallowed.
setTimeout(() => {
throw new Error(`There were ${failed} test failures.`);
}, 0);
}
}
setTimeout(runTests, 0);