]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/check-params/logs.ts
Try to fix travis
[github/Chocobozzz/PeerTube.git] / server / tests / api / check-params / logs.ts
CommitLineData
fd8710b8
C
1/* tslint:disable:no-unused-expression */
2
3import 'mocha'
4
5import {
6 createUser,
7 flushTests,
8 killallServers,
210feb6c 9 flushAndRunServer,
fd8710b8
C
10 ServerInfo,
11 setAccessTokensToServers,
12 userLogin
94565d52
C
13} from '../../../../shared/extra-utils'
14import { makeGetRequest } from '../../../../shared/extra-utils/requests/requests'
fd8710b8
C
15
16describe('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
210feb6c 26 server = await flushAndRunServer(1)
fd8710b8
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 })
fd8710b8
C
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
210feb6c 107 after(function () {
fd8710b8 108 killallServers([ server ])
fd8710b8
C
109 })
110})