]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/tests/api/server/logs.ts
Move typescript utils in its own directory
[github/Chocobozzz/PeerTube.git] / server / tests / api / server / logs.ts
... / ...
CommitLineData
1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3import 'mocha'
4import * as chai from 'chai'
5import {
6 cleanupTests,
7 createSingleServer,
8 killallServers,
9 LogsCommand,
10 PeerTubeServer,
11 setAccessTokensToServers,
12 waitJobs
13} from '@shared/extra-utils'
14
15const expect = chai.expect
16
17describe('Test logs', function () {
18 let server: PeerTubeServer
19 let logsCommand: LogsCommand
20
21 before(async function () {
22 this.timeout(30000)
23
24 server = await createSingleServer(1)
25 await setAccessTokensToServers([ server ])
26
27 logsCommand = server.logs
28 })
29
30 describe('With the standard log file', function () {
31
32 it('Should get logs with a start date', async function () {
33 this.timeout(20000)
34
35 await server.videos.upload({ attributes: { name: 'video 1' } })
36 await waitJobs([ server ])
37
38 const now = new Date()
39
40 await server.videos.upload({ attributes: { name: 'video 2' } })
41 await waitJobs([ server ])
42
43 const body = await logsCommand.getLogs({ startDate: now })
44 const logsString = JSON.stringify(body)
45
46 expect(logsString.includes('video 1')).to.be.false
47 expect(logsString.includes('video 2')).to.be.true
48 })
49
50 it('Should get logs with an end date', async function () {
51 this.timeout(30000)
52
53 await server.videos.upload({ attributes: { name: 'video 3' } })
54 await waitJobs([ server ])
55
56 const now1 = new Date()
57
58 await server.videos.upload({ attributes: { name: 'video 4' } })
59 await waitJobs([ server ])
60
61 const now2 = new Date()
62
63 await server.videos.upload({ attributes: { name: 'video 5' } })
64 await waitJobs([ server ])
65
66 const body = await logsCommand.getLogs({ startDate: now1, endDate: now2 })
67 const logsString = JSON.stringify(body)
68
69 expect(logsString.includes('video 3')).to.be.false
70 expect(logsString.includes('video 4')).to.be.true
71 expect(logsString.includes('video 5')).to.be.false
72 })
73
74 it('Should filter by level', async function () {
75 this.timeout(20000)
76
77 const now = new Date()
78
79 await server.videos.upload({ attributes: { name: 'video 6' } })
80 await waitJobs([ server ])
81
82 {
83 const body = await logsCommand.getLogs({ startDate: now, level: 'info' })
84 const logsString = JSON.stringify(body)
85
86 expect(logsString.includes('video 6')).to.be.true
87 }
88
89 {
90 const body = await logsCommand.getLogs({ startDate: now, level: 'warn' })
91 const logsString = JSON.stringify(body)
92
93 expect(logsString.includes('video 6')).to.be.false
94 }
95 })
96
97 it('Should filter by tag', async function () {
98 const now = new Date()
99
100 const { uuid } = await server.videos.upload({ attributes: { name: 'video 6' } })
101 await waitJobs([ server ])
102
103 {
104 const body = await logsCommand.getLogs({ startDate: now, level: 'debug', tagsOneOf: [ 'toto' ] })
105 expect(body).to.have.lengthOf(0)
106 }
107
108 {
109 const body = await logsCommand.getLogs({ startDate: now, level: 'debug', tagsOneOf: [ uuid ] })
110 expect(body).to.not.have.lengthOf(0)
111
112 for (const line of body) {
113 expect(line.tags).to.contain(uuid)
114 }
115 }
116 })
117
118 it('Should log ping requests', async function () {
119 this.timeout(10000)
120
121 const now = new Date()
122
123 await server.servers.ping()
124
125 const body = await logsCommand.getLogs({ startDate: now, level: 'info' })
126 const logsString = JSON.stringify(body)
127
128 expect(logsString.includes('/api/v1/ping')).to.be.true
129 })
130
131 it('Should not log ping requests', async function () {
132 this.timeout(30000)
133
134 await killallServers([ server ])
135
136 await server.run({ log: { log_ping_requests: false } })
137
138 const now = new Date()
139
140 await server.servers.ping()
141
142 const body = await logsCommand.getLogs({ startDate: now, level: 'info' })
143 const logsString = JSON.stringify(body)
144
145 expect(logsString.includes('/api/v1/ping')).to.be.false
146 })
147 })
148
149 describe('With the audit log', function () {
150 it('Should get logs with a start date', async function () {
151 this.timeout(20000)
152
153 await server.videos.upload({ attributes: { name: 'video 7' } })
154 await waitJobs([ server ])
155
156 const now = new Date()
157
158 await server.videos.upload({ attributes: { name: 'video 8' } })
159 await waitJobs([ server ])
160
161 const body = await logsCommand.getAuditLogs({ startDate: now })
162 const logsString = JSON.stringify(body)
163
164 expect(logsString.includes('video 7')).to.be.false
165 expect(logsString.includes('video 8')).to.be.true
166
167 expect(body).to.have.lengthOf(1)
168
169 const item = body[0]
170
171 const message = JSON.parse(item.message)
172 expect(message.domain).to.equal('videos')
173 expect(message.action).to.equal('create')
174 })
175
176 it('Should get logs with an end date', async function () {
177 this.timeout(30000)
178
179 await server.videos.upload({ attributes: { name: 'video 9' } })
180 await waitJobs([ server ])
181
182 const now1 = new Date()
183
184 await server.videos.upload({ attributes: { name: 'video 10' } })
185 await waitJobs([ server ])
186
187 const now2 = new Date()
188
189 await server.videos.upload({ attributes: { name: 'video 11' } })
190 await waitJobs([ server ])
191
192 const body = await logsCommand.getAuditLogs({ startDate: now1, endDate: now2 })
193 const logsString = JSON.stringify(body)
194
195 expect(logsString.includes('video 9')).to.be.false
196 expect(logsString.includes('video 10')).to.be.true
197 expect(logsString.includes('video 11')).to.be.false
198 })
199 })
200
201 after(async function () {
202 await cleanupTests([ server ])
203 })
204})