tapbundle/ts/tapbundle.classes.tap.ts

113 lines
2.9 KiB
TypeScript
Raw Normal View History

2017-04-23 09:10:13 +00:00
import * as plugins from './tapbundle.plugins'
2017-04-28 07:49:57 +00:00
import { TapTest, ITestFunction } from './tapbundle.classes.taptest'
2017-07-05 22:06:18 +00:00
import { TapWrap, ITapWrapFunction } from './tapbundle.classes.tapwrap'
2017-04-23 09:10:13 +00:00
export class Tap {
2017-07-05 22:06:18 +00:00
/**
* skip a test
*/
skip = {
2017-07-05 22:06:18 +00:00
test: (descriptionArg: string, functionArg: ITestFunction) => {
console.log(`skipped test: ${descriptionArg}`)
}
}
2017-07-11 13:10:05 +00:00
private _tapTests: TapTest[] = []
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
*/
2017-10-10 15:14:14 +00:00
async test (testDescription: string, testFunction: ITestFunction) {
2017-04-28 07:49:57 +00:00
let localTest = new TapTest({
2017-04-23 09:10:13 +00:00
description: testDescription,
testFunction: testFunction,
parallel: false
2017-04-28 07:49:57 +00:00
})
2017-07-11 13:10:05 +00:00
this._tapTests.push(localTest)
2017-04-28 07:49:57 +00:00
return localTest
2017-04-23 09:10:13 +00:00
}
2017-07-05 22:06:18 +00:00
/**
* wraps function
*/
2017-10-10 15:14:14 +00:00
wrap (functionArg: ITapWrapFunction) {
2017-07-05 22:06:18 +00:00
return new TapWrap(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
*/
2017-10-10 15:14:14 +00:00
testParallel (testDescription: string, testFunction: ITestFunction) {
2017-07-11 13:10:05 +00:00
this._tapTests.push(new TapTest({
2017-04-23 09:10:13 +00:00
description: testDescription,
testFunction: testFunction,
parallel: true
}))
}
/**
* starts the test evaluation
*/
2017-07-11 13:10:05 +00:00
async start(optionsArg?: {
throwOnError: boolean
}) {
2017-04-23 09:10:13 +00:00
let promiseArray: Promise<any>[] = []
// safeguard against empty test array
2017-07-11 13:10:05 +00:00
if (this._tapTests.length === 0) {
2017-04-23 09:10:13 +00:00
console.log('no tests specified. Ending here!')
return
}
2017-07-11 13:10:05 +00:00
console.log(`1..${this._tapTests.length}`)
for (let testKey = 0; testKey < this._tapTests.length; testKey++) {
let currentTest = this._tapTests[testKey]
2017-04-23 09:10:13 +00:00
let testPromise = currentTest.run(testKey)
if (currentTest.parallel) {
promiseArray.push(testPromise)
} else {
await testPromise
}
}
await Promise.all(promiseArray)
2017-07-11 13:10:05 +00:00
// when tests have been run and all promises are fullfilled
let failReasons: string[] = []
let executionNotes: string[] = []
// collect failed tests
for (let tapTest of this._tapTests) {
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`
)
}
}
// render fail Reasons
for (let failReason of failReasons) {
console.log(failReason)
}
if (optionsArg && optionsArg.throwOnError && failReasons.length > 0) {
process.exit(1)
}
2017-04-23 09:10:13 +00:00
}
/**
* handle errors
*/
2017-07-05 22:06:18 +00:00
threw (err) {
2017-04-23 09:10:13 +00:00
console.log(err)
}
}
export let tap = new Tap()