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

56 lines
1.5 KiB
TypeScript
Raw Normal View History

2018-01-03 16:38:50 +01:00
/* tslint:disable:no-unused-expression */
import 'mocha'
import { flushTests, killallServers, runServer, ServerInfo } from '../../../../shared/utils'
import {
checkBadCountPagination,
checkBadSortPagination,
checkBadStartPagination
} from '../../../../shared/utils/requests/check-api-params'
import { getAccount } from '../../../../shared/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
await flushTests()
server = await runServer(1)
})
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
})
})
after(async function () {
killallServers([ server ])
// Keep the logs if the test failed
if (this['ok']) {
await flushTests()
}
})
})