tapbundle/ts/tapbundle.classes.tap.ts

166 lines
4.7 KiB
TypeScript
Raw Normal View History

2022-03-14 10:22:17 +00:00
import * as plugins from './tapbundle.plugins.js';
2017-04-23 09:10:13 +00:00
2023-06-22 11:32:43 +00:00
import { type IPreTaskFunction, PreTask } from './tapbundle.classes.pretask.js';
import { TapTest, type ITestFunction } from './tapbundle.classes.taptest.js';
export class Tap<T> {
2017-07-05 22:06:18 +00:00
/**
2018-09-02 21:54:59 +00:00
* skips a test
* tests marked with tap.skip.test() are never executed
2017-07-05 22:06:18 +00:00
*/
public skip = {
2021-01-26 03:19:49 +00:00
test: (descriptionArg: string, functionArg: ITestFunction<T>) => {
console.log(`skipped test: ${descriptionArg}`);
2018-09-02 21:54:59 +00:00
},
2021-01-26 03:19:49 +00:00
testParallel: (descriptionArg: string, functionArg: ITestFunction<T>) => {
2018-09-02 21:54:59 +00:00
console.log(`skipped test: ${descriptionArg}`);
2020-07-08 00:17:25 +00:00
},
};
2018-09-02 21:54:59 +00:00
/**
* only executes tests marked as ONLY
*/
public only = {
2021-01-26 03:15:50 +00:00
test: (descriptionArg: string, testFunctionArg: ITestFunction<T>) => {
2018-09-02 21:54:59 +00:00
this.test(descriptionArg, testFunctionArg, 'only');
2020-07-08 00:17:25 +00:00
},
2019-04-10 10:56:17 +00:00
};
2018-09-02 21:54:59 +00:00
private _tapPreTasks: PreTask[] = [];
2021-01-26 03:15:50 +00:00
private _tapTests: TapTest<any>[] = [];
private _tapTestsOnly: TapTest<any>[] = [];
2017-04-23 09:10:13 +00:00
2017-04-23 12:35:16 +00:00
/**
* Normal test function, will run one by one
* @param testDescription - A description of what the test does
* @param testFunction - A Function that returns a Promise and resolves or rejects
*/
2021-01-26 02:35:02 +00:00
public test(
2019-04-10 10:56:17 +00:00
testDescription: string,
2021-01-26 03:15:50 +00:00
testFunction: ITestFunction<T>,
2019-04-10 10:56:17 +00:00
modeArg: 'normal' | 'only' | 'skip' = 'normal'
2021-01-26 03:19:49 +00:00
): TapTest<T> {
2021-01-26 03:15:50 +00:00
const localTest = new TapTest<T>({
2017-04-23 09:10:13 +00:00
description: testDescription,
testFunction,
2020-07-08 00:17:25 +00:00
parallel: false,
});
2019-04-10 10:56:17 +00:00
if (modeArg === 'normal') {
2018-09-02 21:54:59 +00:00
this._tapTests.push(localTest);
} else if (modeArg === 'only') {
this._tapTestsOnly.push(localTest);
}
return localTest;
2017-04-23 09:10:13 +00:00
}
2020-07-08 00:17:25 +00:00
public preTask(descriptionArg: string, functionArg: IPreTaskFunction) {
2020-03-15 16:36:25 +00:00
this._tapPreTasks.push(new PreTask(descriptionArg, functionArg));
}
2017-04-23 12:35:16 +00:00
/**
* A parallel test that will not be waited for before the next starts.
* @param testDescription - A description of what the test does
* @param testFunction - A Function that returns a Promise and resolves or rejects
*/
2021-01-26 03:19:49 +00:00
public testParallel(testDescription: string, testFunction: ITestFunction<T>) {
this._tapTests.push(
new TapTest({
description: testDescription,
testFunction,
2020-07-08 00:17:25 +00:00
parallel: true,
})
);
2017-04-23 09:10:13 +00:00
}
/**
* starts the test evaluation
*/
public async start(optionsArg?: { throwOnError: boolean }) {
2020-07-08 00:11:16 +00:00
// lets set the tapbundle promise
const smartenvInstance = new plugins.smartenv.Smartenv();
2020-07-08 00:17:25 +00:00
smartenvInstance.isBrowser
2021-12-10 16:34:06 +00:00
? ((globalThis as any).tapbundleDeferred = plugins.smartpromise.defer())
2020-07-08 00:17:25 +00:00
: null;
2020-07-08 00:11:16 +00:00
// lets continue with running the tests
const promiseArray: Array<Promise<any>> = [];
2017-04-23 09:10:13 +00:00
// safeguard against empty test array
2017-07-11 13:10:05 +00:00
if (this._tapTests.length === 0) {
console.log('no tests specified. Ending here!');
// TODO: throw proper error
return;
2017-04-23 09:10:13 +00:00
}
2018-09-02 21:54:59 +00:00
// determine which tests to run
let concerningTests: TapTest[];
2019-04-10 10:56:17 +00:00
if (this._tapTestsOnly.length > 0) {
2018-09-02 21:54:59 +00:00
concerningTests = this._tapTestsOnly;
} else {
concerningTests = this._tapTests;
}
// lets run the pretasks
for (const preTask of this._tapPreTasks) {
await preTask.run();
}
2018-09-02 21:54:59 +00:00
console.log(`1..${concerningTests.length}`);
for (let testKey = 0; testKey < concerningTests.length; testKey++) {
const currentTest = concerningTests[testKey];
const testPromise = currentTest.run(testKey);
2017-04-23 09:10:13 +00:00
if (currentTest.parallel) {
promiseArray.push(testPromise);
2017-04-23 09:10:13 +00:00
} else {
await testPromise;
2017-04-23 09:10:13 +00:00
}
}
await Promise.all(promiseArray);
2017-07-11 13:10:05 +00:00
// when tests have been run and all promises are fullfilled
const failReasons: string[] = [];
const executionNotes: string[] = [];
2017-07-11 13:10:05 +00:00
// collect failed tests
for (const tapTest of concerningTests) {
2017-07-11 13:10:05 +00:00
if (tapTest.status !== 'success') {
failReasons.push(
`Test ${tapTest.testKey + 1} failed with status ${tapTest.status}:\n` +
`|| ${tapTest.description}\n` +
`|| for more information please take a look the logs above`
);
2017-07-11 13:10:05 +00:00
}
}
// render fail Reasons
for (const failReason of failReasons) {
console.log(failReason);
2017-07-11 13:10:05 +00:00
}
if (optionsArg && optionsArg.throwOnError && failReasons.length > 0) {
2020-07-08 00:46:43 +00:00
if (!smartenvInstance.isBrowser) process.exit(1);
}
if (smartenvInstance.isBrowser) {
2021-12-10 16:34:06 +00:00
(globalThis as any).tapbundleDeferred.resolve();
2017-07-11 13:10:05 +00:00
}
2017-04-23 09:10:13 +00:00
}
2024-03-19 18:39:54 +00:00
public async stopForcefully(codeArg = 0, directArg = false) {
console.log(`tap stopping forcefully! Code: ${codeArg} / Direct: ${directArg}`);
if (directArg) {
process.exit(codeArg);
} else {
setTimeout(() => {
process.exit(codeArg);
}, 10)
}
}
2017-04-23 09:10:13 +00:00
/**
* handle errors
*/
2021-12-10 16:34:06 +00:00
public threw(err: Error) {
console.log(err);
2017-04-23 09:10:13 +00:00
}
}
export let tap = new Tap();