now supports tap.wrap

This commit is contained in:
2017-07-06 00:06:18 +02:00
parent 15bbf7f10c
commit d22fc1b688
13 changed files with 121 additions and 25 deletions

View File

@ -1,11 +1,15 @@
import * as plugins from './tapbundle.plugins'
import { TapTest, ITestFunction } from './tapbundle.classes.taptest'
import { TapWrap } from './tapbundle.classes.tapwrap'
import { TapWrap, ITapWrapFunction } from './tapbundle.classes.tapwrap'
export class Tap {
/**
* skip a test
*/
skip = {
test: (...args) => {
console.log('skipped')
test: (descriptionArg: string, functionArg: ITestFunction) => {
console.log(`skipped test: ${descriptionArg}`)
}
}
@ -16,7 +20,7 @@ export class Tap {
* @param testDescription - A description of what the test does
* @param testFunction - A Function that returns a Promise and resolves or rejects
*/
async test(testDescription: string, testFunction: ITestFunction) {
async test (testDescription: string, testFunction: ITestFunction) {
let localTest = new TapTest({
description: testDescription,
testFunction: testFunction,
@ -26,12 +30,19 @@ export class Tap {
return localTest
}
/**
* wraps function
*/
wrap (functionArg: ITapWrapFunction) {
return new TapWrap(functionArg)
}
/**
* 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
*/
testParallel(testDescription: string, testFunction: ITestFunction) {
testParallel (testDescription: string, testFunction: ITestFunction) {
this._tests.push(new TapTest({
description: testDescription,
testFunction: testFunction,
@ -44,14 +55,14 @@ export class Tap {
* @param testDescription - A description of what the test does
* @param testFunction - A Function that returns a Promise and resolves or rejects
*/
testLeakage(testDescription: string, testFunction: ITestFunction) {
testLeakage (testDescription: string, testFunction: ITestFunction) {
}
/**
* starts the test evaluation
*/
async start() {
async start () {
let promiseArray: Promise<any>[] = []
// safeguard against empty test array
@ -76,7 +87,7 @@ export class Tap {
/**
* handle errors
*/
threw(err) {
threw (err) {
console.log(err)
}
}

View File

@ -8,7 +8,7 @@ export class TapTools {
*/
private _tapTest: TapTest
constructor(TapTestArg) {
constructor (TapTestArg) {
this._tapTest = TapTestArg
}

View File

@ -5,10 +5,20 @@ export interface ITapWrapFunction {
}
export class TapWrap {
asyncFunction: ITapWrapFunction
constructor(functionArg: ITapWrapFunction) {
wrapFunction: ITapWrapFunction
/**
* the constructor
*/
constructor (wrapFunctionArg: ITapWrapFunction) {
// nothing here
this.wrapFunction = wrapFunctionArg
}
/**
* run the wrapFunction
*/
async run () {
await this.wrapFunction()
}
}

View File

@ -1,7 +1,7 @@
import * as plugins from './tapbundle.plugins'
export class TapCreator {
// TODO:
}
export let tapCreator = new TapCreator()