mirror of https://github.com/lukechilds/ow.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
3.6 KiB
83 lines
3.6 KiB
import test from 'ava';
|
|
import m from '..';
|
|
|
|
class CustomError extends Error {
|
|
constructor(message: string) {
|
|
super(message);
|
|
this.name = 'CustomError';
|
|
}
|
|
}
|
|
|
|
test('error', t => {
|
|
t.notThrows(() => m(new Error('foo'), m.error));
|
|
t.throws(() => m('12' as any, m.error), 'Expected argument to be of type `error` but received type `string`');
|
|
});
|
|
|
|
test('error.name', t => {
|
|
t.notThrows(() => m(new Error('foo'), m.error.name('Error')));
|
|
t.notThrows(() => m(new CustomError('foo'), m.error.name('CustomError')));
|
|
t.throws(() => m(new CustomError('foo'), m.error.name('Error')), 'Expected error to have name `Error`, got `CustomError`');
|
|
});
|
|
|
|
test('error.message', t => {
|
|
t.notThrows(() => m(new Error('foo'), m.error.message('foo')));
|
|
t.notThrows(() => m(new CustomError('bar'), m.error.message('bar')));
|
|
t.throws(() => m(new CustomError('foo'), m.error.message('bar')), 'Expected error message to be `bar`, got `foo`');
|
|
});
|
|
|
|
test('error.messageIncludes', t => {
|
|
t.notThrows(() => m(new Error('foo bar'), m.error.messageIncludes('foo')));
|
|
t.notThrows(() => m(new Error('foo bar'), m.error.messageIncludes('o')));
|
|
t.notThrows(() => m(new CustomError('foo bar'), m.error.messageIncludes('bar')));
|
|
t.throws(() => m(new CustomError('foo bar'), m.error.messageIncludes('unicorn')), 'Expected error message to include `unicorn`, got `foo bar`');
|
|
});
|
|
|
|
test('error.hasKeys', t => {
|
|
const err: any = new Error('foo');
|
|
err.unicorn = '🦄';
|
|
err.rainbow = '🌈';
|
|
|
|
t.notThrows(() => m(err, m.error.hasKeys('unicorn')));
|
|
t.notThrows(() => m(err, m.error.hasKeys('unicorn', 'rainbow')));
|
|
t.throws(() => m(err, m.error.hasKeys('foo')), 'Expected error message to have keys `foo`');
|
|
t.throws(() => m(err, m.error.hasKeys('unicorn', 'foo')), 'Expected error message to have keys `unicorn`, `foo`');
|
|
});
|
|
|
|
test('error.instanceOf', t => {
|
|
t.notThrows(() => m(new CustomError('foo'), m.error.instanceOf(CustomError)));
|
|
t.notThrows(() => m(new CustomError('foo'), m.error.instanceOf(Error)));
|
|
t.notThrows(() => m(new TypeError('foo'), m.error.instanceOf(Error)));
|
|
t.notThrows(() => m(new Error('foo'), m.error.instanceOf(Error)));
|
|
t.throws(() => m(new Error('foo'), m.error.instanceOf(CustomError)), 'Expected `Error` to be of type `CustomError`');
|
|
t.throws(() => m(new TypeError('foo'), m.error.instanceOf(EvalError)), 'Expected `TypeError` to be of type `EvalError`');
|
|
});
|
|
|
|
test('error.typeError', t => {
|
|
t.notThrows(() => m(new TypeError('foo'), m.error.typeError));
|
|
t.throws(() => m(new Error('foo'), m.error.typeError), 'Expected `Error` to be of type `TypeError`');
|
|
});
|
|
|
|
test('error.evalError', t => {
|
|
t.notThrows(() => m(new EvalError('foo'), m.error.evalError));
|
|
t.throws(() => m(new Error('foo'), m.error.evalError), 'Expected `Error` to be of type `EvalError`');
|
|
});
|
|
|
|
test('error.rangeError', t => {
|
|
t.notThrows(() => m(new RangeError('foo'), m.error.rangeError));
|
|
t.throws(() => m(new EvalError('foo'), m.error.rangeError), 'Expected `EvalError` to be of type `RangeError`');
|
|
});
|
|
|
|
test('error.referenceError', t => {
|
|
t.notThrows(() => m(new ReferenceError('foo'), m.error.referenceError));
|
|
t.throws(() => m(new Error('foo'), m.error.referenceError), 'Expected `Error` to be of type `ReferenceError`');
|
|
});
|
|
|
|
test('error.syntaxError', t => {
|
|
t.notThrows(() => m(new SyntaxError('foo'), m.error.syntaxError));
|
|
t.throws(() => m(new Error('foo'), m.error.syntaxError), 'Expected `Error` to be of type `SyntaxError`');
|
|
});
|
|
|
|
test('error.uriError', t => {
|
|
t.notThrows(() => m(new URIError('foo'), m.error.uriError));
|
|
t.throws(() => m(new Error('foo'), m.error.uriError), 'Expected `Error` to be of type `URIError`');
|
|
});
|
|
|