overleaf/libraries/o-error/test/support/index.js

54 lines
1.4 KiB
JavaScript
Raw Normal View History

2020-04-28 19:38:34 +00:00
const { expect } = require('chai')
2018-03-07 16:42:39 +00:00
2020-04-28 19:38:34 +00:00
const OError = require('../..')
2020-04-17 07:44:50 +00:00
exports.expectError = function OErrorExpectError(e, expected) {
expect(
e.name,
"error should set the name property to the error's name"
).to.equal(expected.name)
expect(
e instanceof expected.klass,
'error should be an instance of the error type'
).to.be.true
expect(
e instanceof Error,
'error should be an instance of the built-in Error type'
).to.be.true
expect(
require('util').types.isNativeError(e),
'error should be recognised by util.types.isNativeError'
).to.be.true
expect(e.stack, 'error should have a stack trace').to.be.truthy
expect(
e.toString(),
'toString should return the default error message formatting'
).to.equal(expected.message)
expect(
e.stack.split('\n')[0],
'stack should start with the default error message formatting'
).to.match(new RegExp(`^${expected.name}:`))
expect(
e.stack.split('\n')[1],
'first stack frame should be the function where the error was thrown'
).to.match(expected.firstFrameRx)
}
2020-04-28 19:40:20 +00:00
exports.expectFullStackWithoutStackFramesToEqual = function (error, expected) {
const fullStack = OError.getFullStack(error)
const fullStackWithoutFrames = fullStack
.split('\n')
.filter((line) => !/^\s+at\s/.test(line))
expect(
fullStackWithoutFrames,
'full stack without frames should equal'
).to.deep.equal(expected)
2020-04-28 19:40:20 +00:00
}