PeerTube/shared/extra-utils/requests/check-api-params.ts

49 lines
1.1 KiB
TypeScript
Raw Normal View History

2021-07-16 10:42:24 +02:00
import { HttpStatusCode } from '@shared/models'
2017-12-28 14:29:57 +01:00
import { makeGetRequest } from './requests'
2018-07-20 14:35:18 +02:00
function checkBadStartPagination (url: string, path: string, token?: string, query = {}) {
2017-12-28 14:29:57 +01:00
return makeGetRequest({
url,
path,
2017-12-28 14:40:11 +01:00
token,
2021-07-13 09:43:59 +02:00
query: { ...query, start: 'hello' },
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.BAD_REQUEST_400
2017-12-28 14:29:57 +01:00
})
}
async function checkBadCountPagination (url: string, path: string, token?: string, query = {}) {
await makeGetRequest({
2017-12-28 14:29:57 +01:00
url,
path,
2017-12-28 14:40:11 +01:00
token,
2021-07-13 09:43:59 +02:00
query: { ...query, count: 'hello' },
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.BAD_REQUEST_400
2017-12-28 14:29:57 +01:00
})
await makeGetRequest({
url,
path,
token,
2021-07-13 09:43:59 +02:00
query: { ...query, count: 2000 },
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.BAD_REQUEST_400
})
2017-12-28 14:29:57 +01:00
}
2018-07-20 14:35:18 +02:00
function checkBadSortPagination (url: string, path: string, token?: string, query = {}) {
2017-12-28 14:29:57 +01:00
return makeGetRequest({
url,
path,
2017-12-28 14:40:11 +01:00
token,
2021-07-13 09:43:59 +02:00
query: { ...query, sort: 'hello' },
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.BAD_REQUEST_400
2017-12-28 14:29:57 +01:00
})
}
// ---------------------------------------------------------------------------
export {
checkBadStartPagination,
checkBadCountPagination,
checkBadSortPagination
}