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.
56 lines
1.7 KiB
56 lines
1.7 KiB
import nock from 'nock';
|
|
import { MILLISECOND, SECOND } from '../constants/time';
|
|
import getFetchWithTimeout from './fetch-with-timeout';
|
|
|
|
describe('getFetchWithTimeout', () => {
|
|
it('fetches a url', async () => {
|
|
nock('https://api.infura.io').get('/money').reply(200, '{"hodl": false}');
|
|
|
|
const fetchWithTimeout = getFetchWithTimeout();
|
|
const response = await (
|
|
await fetchWithTimeout('https://api.infura.io/money')
|
|
).json();
|
|
expect(response).toStrictEqual({
|
|
hodl: false,
|
|
});
|
|
});
|
|
|
|
it('throws when the request hits a custom timeout', async () => {
|
|
nock('https://api.infura.io')
|
|
.get('/moon')
|
|
.delay(SECOND * 2)
|
|
.reply(200, '{"moon": "2012-12-21T11:11:11Z"}');
|
|
|
|
const fetchWithTimeout = getFetchWithTimeout(MILLISECOND * 123);
|
|
|
|
await expect(async () => {
|
|
await fetchWithTimeout('https://api.infura.io/moon').then((r) =>
|
|
r.json(),
|
|
);
|
|
}).rejects.toThrow('The user aborted a request.');
|
|
});
|
|
|
|
it('should abort the request when the custom timeout is hit', async () => {
|
|
nock('https://api.infura.io')
|
|
.get('/moon')
|
|
.delay(SECOND * 2)
|
|
.reply(200, '{"moon": "2012-12-21T11:11:11Z"}');
|
|
|
|
const fetchWithTimeout = getFetchWithTimeout(MILLISECOND * 123);
|
|
|
|
await expect(async () => {
|
|
await fetchWithTimeout('https://api.infura.io/moon').then((r) =>
|
|
r.json(),
|
|
);
|
|
}).rejects.toThrow('The user aborted a request.');
|
|
});
|
|
|
|
it('throws on invalid timeout', async () => {
|
|
await expect(() => getFetchWithTimeout(-1)).toThrow(
|
|
'Must specify positive integer timeout.',
|
|
);
|
|
await expect(() => getFetchWithTimeout(true)).toThrow(
|
|
'Must specify positive integer timeout.',
|
|
);
|
|
});
|
|
});
|
|
|