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

49 lines
1.1 KiB
TypeScript
Raw Normal View History

2017-12-28 14:29:57 +01:00
import { makeGetRequest } from './requests'
2018-11-19 17:08:18 +01:00
import { immutableAssign } from '../miscs/miscs'
2017-12-28 14:29:57 +01:00
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,
2018-07-20 14:35:18 +02:00
query: immutableAssign(query, { start: 'hello' }),
2017-12-28 14:29:57 +01:00
statusCodeExpected: 400
})
}
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,
2018-07-20 14:35:18 +02:00
query: immutableAssign(query, { count: 'hello' }),
2017-12-28 14:29:57 +01:00
statusCodeExpected: 400
})
await makeGetRequest({
url,
path,
token,
query: immutableAssign(query, { count: 2000 }),
statusCodeExpected: 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,
2018-07-20 14:35:18 +02:00
query: immutableAssign(query, { sort: 'hello' }),
2017-12-28 14:29:57 +01:00
statusCodeExpected: 400
})
}
// ---------------------------------------------------------------------------
export {
checkBadStartPagination,
checkBadCountPagination,
checkBadSortPagination
}