]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/check-params/accounts.ts
Introduce blacklist command
[github/Chocobozzz/PeerTube.git] / server / tests / api / check-params / accounts.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
265ba139
C
2
3import 'mocha'
9fff08cf 4import { HttpStatusCode } from '@shared/core-utils'
9639bd17 5import {
6 checkBadCountPagination,
7 checkBadSortPagination,
9fff08cf
C
8 checkBadStartPagination,
9 cleanupTests,
10 flushAndRunServer,
11 ServerInfo
12} from '@shared/extra-utils'
265ba139 13
926cd3df 14describe('Test accounts API validators', function () {
265ba139
C
15 const path = '/api/v1/accounts/'
16 let server: ServerInfo
17
18 // ---------------------------------------------------------------
19
20 before(async function () {
e212f887 21 this.timeout(30000)
265ba139 22
210feb6c 23 server = await flushAndRunServer(1)
265ba139
C
24 })
25
26 describe('When listing accounts', function () {
27 it('Should fail with a bad start pagination', async function () {
28 await checkBadStartPagination(server.url, path, server.accessToken)
29 })
30
31 it('Should fail with a bad count pagination', async function () {
32 await checkBadCountPagination(server.url, path, server.accessToken)
33 })
34
35 it('Should fail with an incorrect sort', async function () {
36 await checkBadSortPagination(server.url, path, server.accessToken)
37 })
38 })
39
40 describe('When getting an account', function () {
9fff08cf 41
ad9e39fb 42 it('Should return 404 with a non existing name', async function () {
9fff08cf 43 await server.accountsCommand.get({ accountName: 'arfaze', expectedStatus: HttpStatusCode.NOT_FOUND_404 })
265ba139
C
44 })
45 })
46
86ebdf8c
C
47 after(async function () {
48 await cleanupTests([ server ])
265ba139
C
49 })
50})