p-timeout/test.js

58 lines
1.7 KiB
JavaScript
Raw Normal View History

2016-10-21 06:42:17 +00:00
import test from 'ava';
import delay from 'delay';
import PCancelable from 'p-cancelable';
import pTimeout from '.';
2016-10-21 06:42:17 +00:00
const fixture = Symbol('fixture');
2019-03-12 08:21:47 +00:00
const fixtureError = new Error('fixture');
2016-10-21 06:42:17 +00:00
test('resolves before timeout', async t => {
t.is(await pTimeout(delay(50).then(() => fixture), 200), fixture);
2016-10-21 06:42:17 +00:00
});
2019-03-12 08:21:47 +00:00
test('throws when milliseconds is not number', async t => {
await t.throwsAsync(pTimeout(delay(50), '200'), TypeError);
2017-11-19 09:27:16 +00:00
});
2019-03-12 08:21:47 +00:00
test('throws when milliseconds is negative number', async t => {
await t.throwsAsync(pTimeout(delay(50), -1), TypeError);
2017-11-19 09:27:16 +00:00
});
test('handles milliseconds being `Infinity`', async t => {
t.is(
await pTimeout(delay(50, {value: fixture}), Infinity),
fixture
);
});
2016-10-21 06:42:17 +00:00
test('rejects after timeout', async t => {
await t.throwsAsync(pTimeout(delay(200), 50), pTimeout.TimeoutError);
2016-10-21 06:42:17 +00:00
});
test('rejects before timeout if specified promise rejects', async t => {
2019-03-12 08:21:47 +00:00
await t.throwsAsync(pTimeout(delay(50).then(() => Promise.reject(fixtureError)), 200), fixtureError.message);
2016-10-21 06:42:17 +00:00
});
test('fallback argument', async t => {
await t.throwsAsync(pTimeout(delay(200), 50, 'rainbow'), 'rainbow');
await t.throwsAsync(pTimeout(delay(200), 50, new RangeError('cake')), RangeError);
2019-03-12 08:21:47 +00:00
await t.throwsAsync(pTimeout(delay(200), 50, () => Promise.reject(fixtureError)), fixtureError.message);
await t.throwsAsync(pTimeout(delay(200), 50, () => {
2017-11-28 20:05:54 +00:00
throw new RangeError('cake');
}), RangeError);
2016-10-21 06:42:17 +00:00
});
test('calls `.cancel()` on promise when it exists', async t => {
const promise = new PCancelable(async (resolve, reject, onCancel) => {
onCancel(() => {
t.pass();
});
await delay(200);
resolve();
});
await t.throwsAsync(pTimeout(promise, 50), pTimeout.TimeoutError);
t.true(promise.isCanceled);
});