]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/check-params/logs.ts
Cleanup tests
[github/Chocobozzz/PeerTube.git] / server / tests / api / check-params / logs.ts
1 /* tslint:disable:no-unused-expression */
2
3 import 'mocha'
4
5 import {
6 createUser,
7 flushTests,
8 killallServers,
9 flushAndRunServer,
10 ServerInfo,
11 setAccessTokensToServers,
12 userLogin
13 } from '../../../../shared/extra-utils'
14 import { makeGetRequest } from '../../../../shared/extra-utils/requests/requests'
15
16 describe('Test logs API validators', function () {
17 const path = '/api/v1/server/logs'
18 let server: ServerInfo
19 let userAccessToken = ''
20
21 // ---------------------------------------------------------------
22
23 before(async function () {
24 this.timeout(120000)
25
26 server = await flushAndRunServer(1)
27
28 await setAccessTokensToServers([ server ])
29
30 const user = {
31 username: 'user1',
32 password: 'my super password'
33 }
34 await createUser({ url: server.url, accessToken: server.accessToken, username: user.username, password: user.password })
35 userAccessToken = await userLogin(server, user)
36 })
37
38 describe('When getting logs', function () {
39
40 it('Should fail with a non authenticated user', async function () {
41 await makeGetRequest({
42 url: server.url,
43 path,
44 statusCodeExpected: 401
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,
53 statusCodeExpected: 403
54 })
55 })
56
57 it('Should fail with a missing startDate query', async function () {
58 await makeGetRequest({
59 url: server.url,
60 path,
61 token: server.accessToken,
62 statusCodeExpected: 400
63 })
64 })
65
66 it('Should fail with a bad startDate query', async function () {
67 await makeGetRequest({
68 url: server.url,
69 path,
70 token: server.accessToken,
71 query: { startDate: 'toto' },
72 statusCodeExpected: 400
73 })
74 })
75
76 it('Should fail with a bad endDate query', async function () {
77 await makeGetRequest({
78 url: server.url,
79 path,
80 token: server.accessToken,
81 query: { startDate: new Date().toISOString(), endDate: 'toto' },
82 statusCodeExpected: 400
83 })
84 })
85
86 it('Should fail with a bad level parameter', async function () {
87 await makeGetRequest({
88 url: server.url,
89 path,
90 token: server.accessToken,
91 query: { startDate: new Date().toISOString(), level: 'toto' },
92 statusCodeExpected: 400
93 })
94 })
95
96 it('Should succeed with the correct params', async function () {
97 await makeGetRequest({
98 url: server.url,
99 path,
100 token: server.accessToken,
101 query: { startDate: new Date().toISOString() },
102 statusCodeExpected: 200
103 })
104 })
105 })
106
107 after(function () {
108 killallServers([ server ])
109 })
110 })