Server: Bulk update videos support field
[oweals/peertube.git] / server / tests / api / check-params / accounts.ts
1 /* tslint:disable:no-unused-expression */
2
3 import 'mocha'
4
5 import { cleanupTests, flushAndRunServer, ServerInfo } from '../../../../shared/extra-utils'
6 import {
7   checkBadCountPagination,
8   checkBadSortPagination,
9   checkBadStartPagination
10 } from '../../../../shared/extra-utils/requests/check-api-params'
11 import { getAccount } from '../../../../shared/extra-utils/users/accounts'
12
13 describe('Test accounts API validators', function () {
14   const path = '/api/v1/accounts/'
15   let server: ServerInfo
16
17   // ---------------------------------------------------------------
18
19   before(async function () {
20     this.timeout(30000)
21
22     server = await flushAndRunServer(1)
23   })
24
25   describe('When listing accounts', function () {
26     it('Should fail with a bad start pagination', async function () {
27       await checkBadStartPagination(server.url, path, server.accessToken)
28     })
29
30     it('Should fail with a bad count pagination', async function () {
31       await checkBadCountPagination(server.url, path, server.accessToken)
32     })
33
34     it('Should fail with an incorrect sort', async function () {
35       await checkBadSortPagination(server.url, path, server.accessToken)
36     })
37   })
38
39   describe('When getting an account', function () {
40     it('Should return 404 with a non existing name', async function () {
41       await getAccount(server.url, 'arfaze', 404)
42     })
43   })
44
45   after(async function () {
46     await cleanupTests([ server ])
47   })
48 })