PeerTube/server/tests/helpers/request.ts

49 lines
1.5 KiB
TypeScript
Raw Normal View History

2020-01-31 16:56:52 +01:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2019-02-21 17:19:16 +01:00
import 'mocha'
import { expect } from 'chai'
2021-03-08 14:24:11 +01:00
import { pathExists, remove } from 'fs-extra'
import { join } from 'path'
import { get4KFileUrl, root, wait } from '../../../shared/extra-utils'
import { doRequest, doRequestAndSaveToFile } from '../../helpers/requests'
2019-02-21 17:19:16 +01: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-03-08 14:24:11 +01:00
await doRequest(get4KFileUrl(), { bodyKBLimit: 3 })
2019-02-21 17:19:16 +01: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-03-08 14:24:11 +01:00
await doRequestAndSaveToFile(get4KFileUrl(), destPath1, { bodyKBLimit: 3 })
2019-02-21 17:19:16 +01: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')
})
it('Should succeed if the file is below the limit', async function () {
2021-03-08 14:24:11 +01:00
await doRequest(get4KFileUrl(), { bodyKBLimit: 5 })
await doRequestAndSaveToFile(get4KFileUrl(), destPath2, { bodyKBLimit: 5 })
2019-02-21 17:19:16 +01:00
expect(await pathExists(destPath2)).to.be.true
})
after(async function () {
await remove(destPath1)
await remove(destPath2)
})
})