taskbuffer/test/test.1.task.ts

109 lines
2.7 KiB
TypeScript
Raw Normal View History

2017-06-17 14:56:33 +00:00
import { expect, tap } from 'tapbundle'
import taskbuffer = require('../dist/index')
import * as q from 'smartq'
import * as smartdelay from 'smartdelay'
// setup some testData to work with
let testTask: taskbuffer.Task
let testPreTask = new taskbuffer.Task({
taskFunction: function () {
let done = q.defer()
console.log('preTask executed')
done.resolve()
return done.promise
},
preTask: testTask
})
// some more tasks to test with
let task1Counter = 0 // how often task 1 is being executed
let task1 = new taskbuffer.Task({
name: 'Task 1',
taskFunction: () => {
let done = q.defer()
console.log('Task1 started')
setTimeout(() => {
task1Counter++
console.log('Task1 executed')
done.resolve()
}, 5000)
return done.promise
}
})
let task2 = new taskbuffer.Task({
name: 'Task 1',
taskFunction: () => {
let done = q.defer()
console.log('Task2 started')
setTimeout(() => {
console.log('Task2 executed')
done.resolve()
}, 5000)
return done.promise
}
})
let task3 = new taskbuffer.Task({
name: 'Task 3',
taskFunction: () => {
let done = q.defer()
console.log('Task3 started')
setTimeout(() => {
console.log('Task3 executed')
done.resolve()
}, 5000)
return done.promise
}
})
tap.test('new Task() should return a new task', async () => {
testTask = new taskbuffer.Task({ taskFunction: async () => { console.log('executed twice') }, preTask: testPreTask })
})
2017-06-17 15:29:26 +00:00
tap.test('expect testTask to be an instance of Task', async () => {
2017-06-17 14:56:33 +00:00
expect(testTask).to.be.instanceof(taskbuffer.Task)
})
2017-06-17 15:29:26 +00:00
tap.test('expect testTask.idle is true', async () => {
2017-06-17 14:56:33 +00:00
if (!testTask.idle) {
throw new Error('testTask.idle is not true')
}
})
2017-06-17 15:29:26 +00:00
tap.test('testTask.running should be of type boolean and initially false', async () => {
2017-06-17 14:56:33 +00:00
expect(testTask.running).to.be.a('boolean')
// tslint:disable-next-line:no-unused-expression
expect(testTask.running).to.be.false
})
2017-06-17 15:29:26 +00:00
tap.test('testTask.trigger() should return Promise', async () => {
2017-06-17 14:56:33 +00:00
expect(testTask.trigger()).to.be.instanceof(Promise)
})
2017-06-17 15:29:26 +00:00
tap.test('testTask.trigger() returned Promise should be fullfilled', async () => {
2017-06-17 14:56:33 +00:00
await testTask.trigger()
})
2017-06-17 15:29:26 +00:00
tap.test('expect to run a task without pre and afterTask errorless', async () => {
2017-06-17 14:56:33 +00:00
let localTestTask = new taskbuffer.Task({ taskFunction: async () => { console.log('only once') } })
await localTestTask.trigger()
})
2017-06-17 15:29:26 +00:00
tap.test('expect task to run in buffered mode', async () => {
2017-06-17 14:56:33 +00:00
let localTestTask = new taskbuffer.Task({
taskFunction: async () => { await smartdelay.delayFor(3000) },
buffered: true,
bufferMax: 2
})
localTestTask.trigger()
localTestTask.trigger()
localTestTask.trigger()
await localTestTask.trigger()
})
tap.start()