2020-04-01 15:35:33 +00:00
|
|
|
import e from '../lib/eltro.mjs'
|
2020-03-31 17:27:36 +00:00
|
|
|
import assert from '../lib/assert.mjs'
|
|
|
|
import { printError } from '../lib/cli.mjs'
|
|
|
|
|
|
|
|
let testsWereRun = false
|
|
|
|
|
|
|
|
function CreateT() {
|
2020-04-01 15:35:33 +00:00
|
|
|
const t = new e.Eltro()
|
2020-03-31 17:27:36 +00:00
|
|
|
t.reporter = ''
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
2020-04-01 15:35:33 +00:00
|
|
|
e.test('Eltro describe should add prefix to the group tests', async function() {
|
2020-03-31 17:27:36 +00:00
|
|
|
testsWereRun = true
|
|
|
|
const assertPrefix = 'something'
|
|
|
|
const assertName = 'blabla'
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.setFilename('test')
|
|
|
|
t.describe(assertPrefix, function() {
|
|
|
|
t.test(assertName, function() {})
|
|
|
|
})
|
|
|
|
|
|
|
|
assert.strictEqual(t.groupsFlat.length, 1)
|
|
|
|
assert.strictEqual(t.groupsFlat[0].tests.length, 1)
|
|
|
|
assert.strictEqual(t.groupsFlat[0].tests[0].name, assertPrefix + ' ' + assertName)
|
|
|
|
})
|
|
|
|
|
2020-04-01 15:35:33 +00:00
|
|
|
e.test('Eltro describe should add prefix to individual tests', async function() {
|
2020-03-31 17:27:36 +00:00
|
|
|
testsWereRun = true
|
|
|
|
const assertPrefix = 'something'
|
|
|
|
const assertName = 'blabla'
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.describe(assertPrefix, function() {
|
|
|
|
t.test(assertName, function() {})
|
|
|
|
})
|
|
|
|
|
|
|
|
assert.strictEqual(t.tests.length, 1)
|
|
|
|
assert.strictEqual(t.tests[0].name, assertPrefix + ' ' + assertName)
|
|
|
|
})
|
|
|
|
|
2020-04-01 15:35:33 +00:00
|
|
|
e.test('Eltro describe should support multiple describe', async function() {
|
2020-03-31 17:27:36 +00:00
|
|
|
testsWereRun = true
|
|
|
|
const assertPrefix = 'something'
|
|
|
|
const assertPrefix2 = 'else'
|
|
|
|
const assertName = 'blabla'
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.describe(assertPrefix, function() {
|
|
|
|
t.describe(assertPrefix2, function() {
|
|
|
|
t.test(assertName, function() {})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
assert.strictEqual(t.tests.length, 1)
|
|
|
|
assert.strictEqual(t.tests[0].name, assertPrefix + ' ' + assertPrefix2 + ' ' + assertName)
|
|
|
|
})
|
|
|
|
|
2020-04-01 15:35:33 +00:00
|
|
|
e.test('Eltro should run test', async function() {
|
2020-03-31 17:27:36 +00:00
|
|
|
testsWereRun = true
|
|
|
|
let assertIsTrue = false
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.test('', function() {
|
|
|
|
assertIsTrue = true
|
|
|
|
})
|
|
|
|
await t.run()
|
|
|
|
assert.strictEqual(t.failedTests.length, 0)
|
|
|
|
assert.strictEqual(assertIsTrue, true)
|
|
|
|
})
|
|
|
|
|
2020-04-01 15:35:33 +00:00
|
|
|
e.test('Eltro should run promised test', async function() {
|
2020-03-31 17:27:36 +00:00
|
|
|
testsWereRun = true
|
|
|
|
let assertIsTrue = false
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.test('', function() {
|
|
|
|
return new Promise(function(res) {
|
|
|
|
assertIsTrue = true
|
|
|
|
res()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
await t.run()
|
|
|
|
assert.strictEqual(t.failedTests.length, 0)
|
|
|
|
assert.strictEqual(assertIsTrue, true)
|
|
|
|
})
|
|
|
|
|
2020-04-01 15:35:33 +00:00
|
|
|
e.test('Eltro should support callback', async function() {
|
2020-03-31 17:27:36 +00:00
|
|
|
testsWereRun = true
|
|
|
|
let assertIsTrue = false
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.test('', function(cb) {
|
|
|
|
setTimeout(function() {
|
|
|
|
assertIsTrue = true
|
|
|
|
cb()
|
|
|
|
}, 50)
|
|
|
|
})
|
|
|
|
await t.run()
|
|
|
|
assert.strictEqual(t.failedTests.length, 0)
|
|
|
|
assert.strictEqual(assertIsTrue, true)
|
|
|
|
})
|
|
|
|
|
2020-04-01 15:35:33 +00:00
|
|
|
e.test('Eltro should support directly thrown errors', async function() {
|
2020-03-31 17:27:36 +00:00
|
|
|
testsWereRun = true
|
|
|
|
const assertError = new Error()
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.test('', function() {
|
|
|
|
throw assertError
|
|
|
|
})
|
|
|
|
await t.run()
|
|
|
|
assert.strictEqual(t.failedTests.length, 1)
|
|
|
|
assert.strictEqual(t.failedTests[0].error, assertError)
|
|
|
|
})
|
|
|
|
|
2020-04-01 15:35:33 +00:00
|
|
|
e.test('Eltro should support promise rejected errors', async function() {
|
2020-03-31 17:27:36 +00:00
|
|
|
testsWereRun = true
|
|
|
|
const assertError = new Error()
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.test('', function() {
|
|
|
|
return new Promise(function(res, rej) {
|
|
|
|
rej(assertError)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
await t.run()
|
|
|
|
assert.strictEqual(t.failedTests.length, 1)
|
|
|
|
assert.strictEqual(t.failedTests[0].error, assertError)
|
|
|
|
})
|
|
|
|
|
2020-04-01 15:35:33 +00:00
|
|
|
e.test('Eltro should support callback rejected errors', async function() {
|
2020-03-31 17:27:36 +00:00
|
|
|
testsWereRun = true
|
|
|
|
const assertError = new Error()
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.test('', function(cb) {
|
|
|
|
cb(assertError)
|
|
|
|
})
|
|
|
|
await t.run()
|
|
|
|
assert.strictEqual(t.failedTests.length, 1)
|
|
|
|
assert.strictEqual(t.failedTests[0].error, assertError)
|
|
|
|
})
|
|
|
|
|
2020-04-01 15:35:33 +00:00
|
|
|
e.test('Eltro should support timing out tests', async function() {
|
2020-03-31 17:27:36 +00:00
|
|
|
testsWereRun = true
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.test('', function(cb) { }).timeout(50)
|
|
|
|
await t.run()
|
|
|
|
assert.strictEqual(t.failedTests.length, 1)
|
|
|
|
assert.ok(t.failedTests[0].error)
|
|
|
|
assert.match(t.failedTests[0].error.message, /50ms/)
|
|
|
|
})
|
|
|
|
|
2020-04-01 15:35:33 +00:00
|
|
|
e.test('Eltro should support timed out tests on late tests', async function() {
|
2020-03-31 17:27:36 +00:00
|
|
|
testsWereRun = true
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.test('', function(cb) {
|
|
|
|
setTimeout(function() {
|
|
|
|
cb()
|
|
|
|
}, 100)
|
|
|
|
}).timeout(50)
|
|
|
|
await t.run()
|
|
|
|
assert.strictEqual(t.failedTests.length, 1)
|
|
|
|
assert.ok(t.failedTests[0].error)
|
|
|
|
assert.match(t.failedTests[0].error.message, /50ms/)
|
|
|
|
})
|
|
|
|
|
2020-04-01 15:35:33 +00:00
|
|
|
e.test('Eltro should support skipped tests', async function() {
|
2020-03-31 17:27:36 +00:00
|
|
|
testsWereRun = true
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.test('', function() {
|
|
|
|
throw new Error('Should not be called')
|
|
|
|
}).skip()
|
|
|
|
await t.run()
|
|
|
|
assert.strictEqual(t.failedTests.length, 0)
|
|
|
|
})
|
|
|
|
|
2020-04-01 16:42:13 +00:00
|
|
|
e.test('Eltro should support only tests', async function() {
|
|
|
|
testsWereRun = true
|
|
|
|
let assertIsTrue = false
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.test('a', function() { throw new Error('Should not be called') })
|
|
|
|
t.test('b', function() { throw new Error('Should not be called') })
|
|
|
|
t.test('c', function() { assertIsTrue = true }).only()
|
|
|
|
await t.run()
|
|
|
|
assert.strictEqual(t.failedTests.length, 0)
|
|
|
|
assert.strictEqual(assertIsTrue, true)
|
|
|
|
})
|
|
|
|
|
|
|
|
e.test('Eltro should support timed out tests in front', async function() {
|
|
|
|
testsWereRun = true
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.timeout(25).test('', function(cb) { setTimeout(cb, 50) })
|
|
|
|
t.test('', function(cb) { setTimeout(cb, 50) })
|
|
|
|
await t.run()
|
|
|
|
assert.strictEqual(t.failedTests.length, 1)
|
|
|
|
assert.ok(t.failedTests[0].error)
|
|
|
|
assert.match(t.failedTests[0].error.message, /25ms/)
|
|
|
|
})
|
|
|
|
|
|
|
|
e.test('Eltro should support skipped tests in front of the test', async function() {
|
|
|
|
testsWereRun = true
|
|
|
|
let assertIsTrue = false
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.skip().test('', function() { throw new Error('Should not be called') })
|
|
|
|
t.test('', function() { assertIsTrue = true })
|
|
|
|
await t.run()
|
|
|
|
assert.strictEqual(t.failedTests.length, 0)
|
|
|
|
assert.strictEqual(assertIsTrue, true)
|
|
|
|
})
|
|
|
|
|
|
|
|
e.test('Eltro should support only tests in front of the test', async function() {
|
|
|
|
testsWereRun = true
|
|
|
|
let assertIsTrue = false
|
|
|
|
const t = CreateT()
|
|
|
|
t.begin()
|
|
|
|
t.test('a', function() { throw new Error('Should not be called') })
|
|
|
|
t.only().test('b', function() { assertIsTrue = true })
|
|
|
|
t.test('c', function() { throw new Error('Should not be called') })
|
|
|
|
await t.run()
|
|
|
|
assert.strictEqual(t.failedTests.length, 0)
|
|
|
|
assert.strictEqual(assertIsTrue, true)
|
|
|
|
})
|
|
|
|
|
2020-03-31 17:27:36 +00:00
|
|
|
// Extra testing to make sure tests were run at all
|
|
|
|
process.on('exit', function(e) {
|
|
|
|
try {
|
|
|
|
assert.strictEqual(testsWereRun, true)
|
|
|
|
} catch(err) {
|
|
|
|
printError(err)
|
|
|
|
process.exit(1)
|
|
|
|
}
|
|
|
|
process.exit(e)
|
|
|
|
})
|