2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2019-02-21 11:19:16 -05:00
|
|
|
|
|
|
|
import 'mocha'
|
|
|
|
import { expect } from 'chai'
|
2021-03-08 08:24:11 -05:00
|
|
|
import { pathExists, remove } from 'fs-extra'
|
|
|
|
import { join } from 'path'
|
2021-12-17 05:58:15 -05:00
|
|
|
import { root, wait } from '@shared/core-utils'
|
2021-03-08 08:24:11 -05:00
|
|
|
import { doRequest, doRequestAndSaveToFile } from '../../helpers/requests'
|
2021-12-17 05:58:15 -05:00
|
|
|
import { FIXTURE_URLS, Mock429 } from '../shared'
|
2019-02-21 11:19:16 -05:00
|
|
|
|
|
|
|
describe('Request helpers', function () {
|
|
|
|
const destPath1 = join(root(), 'test-output-1.txt')
|
|
|
|
const destPath2 = join(root(), 'test-output-2.txt')
|
|
|
|
|
|
|
|
it('Should throw an error when the bytes limit is exceeded for request', async function () {
|
|
|
|
try {
|
2021-08-17 02:26:20 -04:00
|
|
|
await doRequest(FIXTURE_URLS.file4K, { bodyKBLimit: 3 })
|
2019-02-21 11:19:16 -05:00
|
|
|
} catch {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new Error('No error thrown by do request')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should throw an error when the bytes limit is exceeded for request and save file', async function () {
|
|
|
|
try {
|
2021-08-17 02:26:20 -04:00
|
|
|
await doRequestAndSaveToFile(FIXTURE_URLS.file4K, destPath1, { bodyKBLimit: 3 })
|
2019-02-21 11:19:16 -05:00
|
|
|
} catch {
|
|
|
|
|
|
|
|
await wait(500)
|
|
|
|
expect(await pathExists(destPath1)).to.be.false
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new Error('No error thrown by do request and save to file')
|
|
|
|
})
|
|
|
|
|
2021-11-16 05:17:52 -05:00
|
|
|
it('Should correctly retry on 429 error', async function () {
|
|
|
|
this.timeout(25000)
|
|
|
|
|
|
|
|
const mock = new Mock429()
|
|
|
|
const port = await mock.initialize()
|
|
|
|
|
|
|
|
const before = new Date().getTime()
|
|
|
|
await doRequest('http://localhost:' + port)
|
|
|
|
|
|
|
|
expect(new Date().getTime() - before).to.be.greaterThan(2000)
|
|
|
|
|
|
|
|
await mock.terminate()
|
|
|
|
})
|
|
|
|
|
2019-02-21 11:19:16 -05:00
|
|
|
it('Should succeed if the file is below the limit', async function () {
|
2021-08-17 02:26:20 -04:00
|
|
|
await doRequest(FIXTURE_URLS.file4K, { bodyKBLimit: 5 })
|
|
|
|
await doRequestAndSaveToFile(FIXTURE_URLS.file4K, destPath2, { bodyKBLimit: 5 })
|
2019-02-21 11:19:16 -05:00
|
|
|
|
|
|
|
expect(await pathExists(destPath2)).to.be.true
|
|
|
|
})
|
|
|
|
|
|
|
|
after(async function () {
|
|
|
|
await remove(destPath1)
|
|
|
|
await remove(destPath2)
|
|
|
|
})
|
|
|
|
})
|