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

45 lines
1.4 KiB
TypeScript
Raw Normal View History

2020-01-31 09:56:52 -06:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2018-01-03 09:38:50 -06:00
import 'mocha'
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '@server/tests/shared'
2021-07-16 07:27:30 -05:00
import { HttpStatusCode } from '@shared/models'
import { cleanupTests, createSingleServer, PeerTubeServer } from '@shared/server-commands'
2018-01-03 09:38:50 -06:00
describe('Test accounts API validators', function () {
2018-01-03 09:38:50 -06:00
const path = '/api/v1/accounts/'
2021-07-16 02:47:51 -05:00
let server: PeerTubeServer
2018-01-03 09:38:50 -06:00
// ---------------------------------------------------------------
before(async function () {
2018-01-18 11:10:45 -06:00
this.timeout(30000)
2018-01-03 09:38:50 -06:00
2021-07-16 02:47:51 -05:00
server = await createSingleServer(1)
2018-01-03 09:38:50 -06: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 06:38:26 -05:00
2018-05-25 02:57:16 -05:00
it('Should return 404 with a non existing name', async function () {
2021-07-16 02:04:35 -05:00
await server.accounts.get({ accountName: 'arfaze', expectedStatus: HttpStatusCode.NOT_FOUND_404 })
2018-01-03 09:38:50 -06:00
})
})
2019-04-24 04:54:23 -05:00
after(async function () {
await cleanupTests([ server ])
2018-01-03 09:38:50 -06:00
})
})