PeerTube/server/tests/api/check-params/accounts.ts

49 lines
1.4 KiB
TypeScript
Raw Normal View History

2018-01-03 16:38:50 +01:00
/* tslint:disable:no-unused-expression */
import 'mocha'
2019-04-24 11:54:23 +02:00
import { cleanupTests, flushAndRunServer, ServerInfo } from '../../../../shared/extra-utils'
import {
checkBadCountPagination,
checkBadSortPagination,
checkBadStartPagination
} from '../../../../shared/extra-utils/requests/check-api-params'
import { getAccount } from '../../../../shared/extra-utils/users/accounts'
2018-01-03 16:38:50 +01:00
describe('Test accounts API validators', function () {
2018-01-03 16:38:50 +01:00
const path = '/api/v1/accounts/'
let server: ServerInfo
// ---------------------------------------------------------------
before(async function () {
2018-01-18 18:10:45 +01:00
this.timeout(30000)
2018-01-03 16:38:50 +01:00
2019-04-24 10:53:40 +02:00
server = await flushAndRunServer(1)
2018-01-03 16:38:50 +01:00
})
describe('When listing accounts', function () {
it('Should fail with a bad start pagination', async function () {
await checkBadStartPagination(server.url, path, server.accessToken)
})
it('Should fail with a bad count pagination', async function () {
await checkBadCountPagination(server.url, path, server.accessToken)
})
it('Should fail with an incorrect sort', async function () {
await checkBadSortPagination(server.url, path, server.accessToken)
})
})
describe('When getting an account', function () {
2018-05-25 09:57:16 +02:00
it('Should return 404 with a non existing name', async function () {
await getAccount(server.url, 'arfaze', 404)
2018-01-03 16:38:50 +01:00
})
})
2019-04-24 11:54:23 +02:00
after(async function () {
await cleanupTests([ server ])
2018-01-03 16:38:50 +01:00
})
})