]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/check-params/debug.ts
replace numbers with typed http status codes (#3409)
[github/Chocobozzz/PeerTube.git] / server / tests / api / check-params / debug.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
5d79474c
C
2
3import 'mocha'
4
5import {
a1587156 6 cleanupTests,
5d79474c 7 createUser,
210feb6c 8 flushAndRunServer,
5d79474c
C
9 ServerInfo,
10 setAccessTokensToServers,
a1587156 11 userLogin
94565d52
C
12} from '../../../../shared/extra-utils'
13import { makeGetRequest } from '../../../../shared/extra-utils/requests/requests'
2d53be02 14import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
5d79474c
C
15
16describe('Test debug API validators', function () {
17 const path = '/api/v1/server/debug'
18 let server: ServerInfo
19 let userAccessToken = ''
20
21 // ---------------------------------------------------------------
22
23 before(async function () {
24 this.timeout(120000)
25
210feb6c 26 server = await flushAndRunServer(1)
5d79474c
C
27
28 await setAccessTokensToServers([ server ])
29
30 const user = {
31 username: 'user1',
32 password: 'my super password'
33 }
1eddc9a7 34 await createUser({ url: server.url, accessToken: server.accessToken, username: user.username, password: user.password })
5d79474c
C
35 userAccessToken = await userLogin(server, user)
36 })
37
38 describe('When getting debug endpoint', function () {
39
40 it('Should fail with a non authenticated user', async function () {
41 await makeGetRequest({
42 url: server.url,
43 path,
2d53be02 44 statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401
5d79474c
C
45 })
46 })
47
48 it('Should fail with a non admin user', async function () {
49 await makeGetRequest({
50 url: server.url,
51 path,
52 token: userAccessToken,
2d53be02 53 statusCodeExpected: HttpStatusCode.FORBIDDEN_403
5d79474c
C
54 })
55 })
56
57 it('Should succeed with the correct params', async function () {
58 await makeGetRequest({
59 url: server.url,
60 path,
61 token: server.accessToken,
62 query: { startDate: new Date().toISOString() },
2d53be02 63 statusCodeExpected: HttpStatusCode.OK_200
5d79474c
C
64 })
65 })
66 })
67
7c3b7976
C
68 after(async function () {
69 await cleanupTests([ server ])
5d79474c
C
70 })
71})