2020-01-31 16:56:52 +01:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-01-03 16:38:50 +01:00
|
|
|
|
|
|
|
import 'mocha'
|
2021-07-07 13:38:26 +02:00
|
|
|
import { HttpStatusCode } from '@shared/core-utils'
|
2018-10-29 17:48:31 +01:00
|
|
|
import {
|
|
|
|
checkBadCountPagination,
|
|
|
|
checkBadSortPagination,
|
2021-07-07 13:38:26 +02:00
|
|
|
checkBadStartPagination,
|
|
|
|
cleanupTests,
|
2021-07-16 09:47:51 +02:00
|
|
|
createSingleServer,
|
|
|
|
PeerTubeServer
|
2021-07-07 13:38:26 +02:00
|
|
|
} from '@shared/extra-utils'
|
2018-01-03 16:38:50 +01:00
|
|
|
|
2019-01-28 11:45:40 +01:00
|
|
|
describe('Test accounts API validators', function () {
|
2018-01-03 16:38:50 +01:00
|
|
|
const path = '/api/v1/accounts/'
|
2021-07-16 09:47:51 +02:00
|
|
|
let server: PeerTubeServer
|
2018-01-03 16:38:50 +01:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
2018-01-18 18:10:45 +01:00
|
|
|
this.timeout(30000)
|
2018-01-03 16:38:50 +01:00
|
|
|
|
2021-07-16 09:47:51 +02:00
|
|
|
server = await createSingleServer(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 () {
|
2021-07-07 13:38:26 +02:00
|
|
|
|
2018-05-25 09:57:16 +02:00
|
|
|
it('Should return 404 with a non existing name', async function () {
|
2021-07-16 09:04:35 +02:00
|
|
|
await server.accounts.get({ accountName: 'arfaze', expectedStatus: HttpStatusCode.NOT_FOUND_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
|
|
|
})
|
|
|
|
})
|