]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/server/config.ts
Merge branch 'release/4.1.0' into develop
[github/Chocobozzz/PeerTube.git] / server / tests / api / server / config.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import 'mocha'
4 import * as chai from 'chai'
5 import { parallelTests } from '@shared/core-utils'
6 import { CustomConfig, HttpStatusCode } from '@shared/models'
7 import {
8 cleanupTests,
9 createSingleServer,
10 killallServers,
11 makeGetRequest,
12 PeerTubeServer,
13 setAccessTokensToServers
14 } from '@shared/server-commands'
15
16 const expect = chai.expect
17
18 function checkInitialConfig (server: PeerTubeServer, data: CustomConfig) {
19 expect(data.instance.name).to.equal('PeerTube')
20 expect(data.instance.shortDescription).to.equal(
21 'PeerTube, an ActivityPub-federated video streaming platform using P2P directly in your web browser.'
22 )
23 expect(data.instance.description).to.equal('Welcome to this PeerTube instance!')
24
25 expect(data.instance.terms).to.equal('No terms for now.')
26 expect(data.instance.creationReason).to.be.empty
27 expect(data.instance.codeOfConduct).to.be.empty
28 expect(data.instance.moderationInformation).to.be.empty
29 expect(data.instance.administrator).to.be.empty
30 expect(data.instance.maintenanceLifetime).to.be.empty
31 expect(data.instance.businessModel).to.be.empty
32 expect(data.instance.hardwareInformation).to.be.empty
33
34 expect(data.instance.languages).to.have.lengthOf(0)
35 expect(data.instance.categories).to.have.lengthOf(0)
36
37 expect(data.instance.defaultClientRoute).to.equal('/videos/trending')
38 expect(data.instance.isNSFW).to.be.false
39 expect(data.instance.defaultNSFWPolicy).to.equal('display')
40 expect(data.instance.customizations.css).to.be.empty
41 expect(data.instance.customizations.javascript).to.be.empty
42
43 expect(data.services.twitter.username).to.equal('@Chocobozzz')
44 expect(data.services.twitter.whitelisted).to.be.false
45
46 expect(data.client.videos.miniature.preferAuthorDisplayName).to.be.false
47 expect(data.client.menu.login.redirectOnSingleExternalAuth).to.be.false
48
49 expect(data.cache.previews.size).to.equal(1)
50 expect(data.cache.captions.size).to.equal(1)
51 expect(data.cache.torrents.size).to.equal(1)
52
53 expect(data.signup.enabled).to.be.true
54 expect(data.signup.limit).to.equal(4)
55 expect(data.signup.minimumAge).to.equal(16)
56 expect(data.signup.requiresEmailVerification).to.be.false
57
58 expect(data.admin.email).to.equal('admin' + server.internalServerNumber + '@example.com')
59 expect(data.contactForm.enabled).to.be.true
60
61 expect(data.user.videoQuota).to.equal(5242880)
62 expect(data.user.videoQuotaDaily).to.equal(-1)
63
64 expect(data.videoChannels.maxPerUser).to.equal(20)
65
66 expect(data.transcoding.enabled).to.be.false
67 expect(data.transcoding.allowAdditionalExtensions).to.be.false
68 expect(data.transcoding.allowAudioFiles).to.be.false
69 expect(data.transcoding.threads).to.equal(2)
70 expect(data.transcoding.concurrency).to.equal(2)
71 expect(data.transcoding.profile).to.equal('default')
72 expect(data.transcoding.resolutions['144p']).to.be.false
73 expect(data.transcoding.resolutions['240p']).to.be.true
74 expect(data.transcoding.resolutions['360p']).to.be.true
75 expect(data.transcoding.resolutions['480p']).to.be.true
76 expect(data.transcoding.resolutions['720p']).to.be.true
77 expect(data.transcoding.resolutions['1080p']).to.be.true
78 expect(data.transcoding.resolutions['1440p']).to.be.true
79 expect(data.transcoding.resolutions['2160p']).to.be.true
80 expect(data.transcoding.webtorrent.enabled).to.be.true
81 expect(data.transcoding.hls.enabled).to.be.true
82
83 expect(data.live.enabled).to.be.false
84 expect(data.live.allowReplay).to.be.false
85 expect(data.live.maxDuration).to.equal(-1)
86 expect(data.live.maxInstanceLives).to.equal(20)
87 expect(data.live.maxUserLives).to.equal(3)
88 expect(data.live.transcoding.enabled).to.be.false
89 expect(data.live.transcoding.threads).to.equal(2)
90 expect(data.live.transcoding.profile).to.equal('default')
91 expect(data.live.transcoding.resolutions['144p']).to.be.false
92 expect(data.live.transcoding.resolutions['240p']).to.be.false
93 expect(data.live.transcoding.resolutions['360p']).to.be.false
94 expect(data.live.transcoding.resolutions['480p']).to.be.false
95 expect(data.live.transcoding.resolutions['720p']).to.be.false
96 expect(data.live.transcoding.resolutions['1080p']).to.be.false
97 expect(data.live.transcoding.resolutions['1440p']).to.be.false
98 expect(data.live.transcoding.resolutions['2160p']).to.be.false
99
100 expect(data.videoEditor.enabled).to.be.false
101
102 expect(data.import.videos.concurrency).to.equal(2)
103 expect(data.import.videos.http.enabled).to.be.true
104 expect(data.import.videos.torrent.enabled).to.be.true
105 expect(data.autoBlacklist.videos.ofUsers.enabled).to.be.false
106
107 expect(data.followers.instance.enabled).to.be.true
108 expect(data.followers.instance.manualApproval).to.be.false
109
110 expect(data.followings.instance.autoFollowBack.enabled).to.be.false
111 expect(data.followings.instance.autoFollowIndex.enabled).to.be.false
112 expect(data.followings.instance.autoFollowIndex.indexUrl).to.equal('')
113
114 expect(data.broadcastMessage.enabled).to.be.false
115 expect(data.broadcastMessage.level).to.equal('info')
116 expect(data.broadcastMessage.message).to.equal('')
117 expect(data.broadcastMessage.dismissable).to.be.false
118 }
119
120 function checkUpdatedConfig (data: CustomConfig) {
121 expect(data.instance.name).to.equal('PeerTube updated')
122 expect(data.instance.shortDescription).to.equal('my short description')
123 expect(data.instance.description).to.equal('my super description')
124
125 expect(data.instance.terms).to.equal('my super terms')
126 expect(data.instance.creationReason).to.equal('my super creation reason')
127 expect(data.instance.codeOfConduct).to.equal('my super coc')
128 expect(data.instance.moderationInformation).to.equal('my super moderation information')
129 expect(data.instance.administrator).to.equal('Kuja')
130 expect(data.instance.maintenanceLifetime).to.equal('forever')
131 expect(data.instance.businessModel).to.equal('my super business model')
132 expect(data.instance.hardwareInformation).to.equal('2vCore 3GB RAM')
133
134 expect(data.instance.languages).to.deep.equal([ 'en', 'es' ])
135 expect(data.instance.categories).to.deep.equal([ 1, 2 ])
136
137 expect(data.instance.defaultClientRoute).to.equal('/videos/recently-added')
138 expect(data.instance.isNSFW).to.be.true
139 expect(data.instance.defaultNSFWPolicy).to.equal('blur')
140 expect(data.instance.customizations.javascript).to.equal('alert("coucou")')
141 expect(data.instance.customizations.css).to.equal('body { background-color: red; }')
142
143 expect(data.services.twitter.username).to.equal('@Kuja')
144 expect(data.services.twitter.whitelisted).to.be.true
145
146 expect(data.client.videos.miniature.preferAuthorDisplayName).to.be.true
147 expect(data.client.menu.login.redirectOnSingleExternalAuth).to.be.true
148
149 expect(data.cache.previews.size).to.equal(2)
150 expect(data.cache.captions.size).to.equal(3)
151 expect(data.cache.torrents.size).to.equal(4)
152
153 expect(data.signup.enabled).to.be.false
154 expect(data.signup.limit).to.equal(5)
155 expect(data.signup.requiresEmailVerification).to.be.false
156 expect(data.signup.minimumAge).to.equal(10)
157
158 // We override admin email in parallel tests, so skip this exception
159 if (parallelTests() === false) {
160 expect(data.admin.email).to.equal('superadmin1@example.com')
161 }
162
163 expect(data.contactForm.enabled).to.be.false
164
165 expect(data.user.videoQuota).to.equal(5242881)
166 expect(data.user.videoQuotaDaily).to.equal(318742)
167
168 expect(data.videoChannels.maxPerUser).to.equal(24)
169
170 expect(data.transcoding.enabled).to.be.true
171 expect(data.transcoding.threads).to.equal(1)
172 expect(data.transcoding.concurrency).to.equal(3)
173 expect(data.transcoding.allowAdditionalExtensions).to.be.true
174 expect(data.transcoding.allowAudioFiles).to.be.true
175 expect(data.transcoding.profile).to.equal('vod_profile')
176 expect(data.transcoding.resolutions['144p']).to.be.false
177 expect(data.transcoding.resolutions['240p']).to.be.false
178 expect(data.transcoding.resolutions['360p']).to.be.true
179 expect(data.transcoding.resolutions['480p']).to.be.true
180 expect(data.transcoding.resolutions['720p']).to.be.false
181 expect(data.transcoding.resolutions['1080p']).to.be.false
182 expect(data.transcoding.resolutions['2160p']).to.be.false
183 expect(data.transcoding.hls.enabled).to.be.false
184 expect(data.transcoding.webtorrent.enabled).to.be.true
185
186 expect(data.live.enabled).to.be.true
187 expect(data.live.allowReplay).to.be.true
188 expect(data.live.maxDuration).to.equal(5000)
189 expect(data.live.maxInstanceLives).to.equal(-1)
190 expect(data.live.maxUserLives).to.equal(10)
191 expect(data.live.transcoding.enabled).to.be.true
192 expect(data.live.transcoding.threads).to.equal(4)
193 expect(data.live.transcoding.profile).to.equal('live_profile')
194 expect(data.live.transcoding.resolutions['144p']).to.be.true
195 expect(data.live.transcoding.resolutions['240p']).to.be.true
196 expect(data.live.transcoding.resolutions['360p']).to.be.true
197 expect(data.live.transcoding.resolutions['480p']).to.be.true
198 expect(data.live.transcoding.resolutions['720p']).to.be.true
199 expect(data.live.transcoding.resolutions['1080p']).to.be.true
200 expect(data.live.transcoding.resolutions['2160p']).to.be.true
201
202 expect(data.videoEditor.enabled).to.be.true
203
204 expect(data.import.videos.concurrency).to.equal(4)
205 expect(data.import.videos.http.enabled).to.be.false
206 expect(data.import.videos.torrent.enabled).to.be.false
207 expect(data.autoBlacklist.videos.ofUsers.enabled).to.be.true
208
209 expect(data.followers.instance.enabled).to.be.false
210 expect(data.followers.instance.manualApproval).to.be.true
211
212 expect(data.followings.instance.autoFollowBack.enabled).to.be.true
213 expect(data.followings.instance.autoFollowIndex.enabled).to.be.true
214 expect(data.followings.instance.autoFollowIndex.indexUrl).to.equal('https://updated.example.com')
215
216 expect(data.broadcastMessage.enabled).to.be.true
217 expect(data.broadcastMessage.level).to.equal('error')
218 expect(data.broadcastMessage.message).to.equal('super bad message')
219 expect(data.broadcastMessage.dismissable).to.be.true
220 }
221
222 const newCustomConfig: CustomConfig = {
223 instance: {
224 name: 'PeerTube updated',
225 shortDescription: 'my short description',
226 description: 'my super description',
227 terms: 'my super terms',
228 codeOfConduct: 'my super coc',
229
230 creationReason: 'my super creation reason',
231 moderationInformation: 'my super moderation information',
232 administrator: 'Kuja',
233 maintenanceLifetime: 'forever',
234 businessModel: 'my super business model',
235 hardwareInformation: '2vCore 3GB RAM',
236
237 languages: [ 'en', 'es' ],
238 categories: [ 1, 2 ],
239
240 isNSFW: true,
241 defaultNSFWPolicy: 'blur' as 'blur',
242
243 defaultClientRoute: '/videos/recently-added',
244
245 customizations: {
246 javascript: 'alert("coucou")',
247 css: 'body { background-color: red; }'
248 }
249 },
250 theme: {
251 default: 'default'
252 },
253 services: {
254 twitter: {
255 username: '@Kuja',
256 whitelisted: true
257 }
258 },
259 client: {
260 videos: {
261 miniature: {
262 preferAuthorDisplayName: true
263 }
264 },
265 menu: {
266 login: {
267 redirectOnSingleExternalAuth: true
268 }
269 }
270 },
271 cache: {
272 previews: {
273 size: 2
274 },
275 captions: {
276 size: 3
277 },
278 torrents: {
279 size: 4
280 }
281 },
282 signup: {
283 enabled: false,
284 limit: 5,
285 requiresEmailVerification: false,
286 minimumAge: 10
287 },
288 admin: {
289 email: 'superadmin1@example.com'
290 },
291 contactForm: {
292 enabled: false
293 },
294 user: {
295 videoQuota: 5242881,
296 videoQuotaDaily: 318742
297 },
298 videoChannels: {
299 maxPerUser: 24
300 },
301 transcoding: {
302 enabled: true,
303 allowAdditionalExtensions: true,
304 allowAudioFiles: true,
305 threads: 1,
306 concurrency: 3,
307 profile: 'vod_profile',
308 resolutions: {
309 '0p': false,
310 '144p': false,
311 '240p': false,
312 '360p': true,
313 '480p': true,
314 '720p': false,
315 '1080p': false,
316 '1440p': false,
317 '2160p': false
318 },
319 webtorrent: {
320 enabled: true
321 },
322 hls: {
323 enabled: false
324 }
325 },
326 live: {
327 enabled: true,
328 allowReplay: true,
329 maxDuration: 5000,
330 maxInstanceLives: -1,
331 maxUserLives: 10,
332 transcoding: {
333 enabled: true,
334 threads: 4,
335 profile: 'live_profile',
336 resolutions: {
337 '144p': true,
338 '240p': true,
339 '360p': true,
340 '480p': true,
341 '720p': true,
342 '1080p': true,
343 '1440p': true,
344 '2160p': true
345 }
346 }
347 },
348 videoEditor: {
349 enabled: true
350 },
351 import: {
352 videos: {
353 concurrency: 4,
354 http: {
355 enabled: false
356 },
357 torrent: {
358 enabled: false
359 }
360 }
361 },
362 trending: {
363 videos: {
364 algorithms: {
365 enabled: [ 'best', 'hot', 'most-viewed', 'most-liked' ],
366 default: 'hot'
367 }
368 }
369 },
370 autoBlacklist: {
371 videos: {
372 ofUsers: {
373 enabled: true
374 }
375 }
376 },
377 followers: {
378 instance: {
379 enabled: false,
380 manualApproval: true
381 }
382 },
383 followings: {
384 instance: {
385 autoFollowBack: {
386 enabled: true
387 },
388 autoFollowIndex: {
389 enabled: true,
390 indexUrl: 'https://updated.example.com'
391 }
392 }
393 },
394 broadcastMessage: {
395 enabled: true,
396 level: 'error',
397 message: 'super bad message',
398 dismissable: true
399 },
400 search: {
401 remoteUri: {
402 anonymous: true,
403 users: true
404 },
405 searchIndex: {
406 enabled: true,
407 url: 'https://search.joinpeertube.org',
408 disableLocalSearch: true,
409 isDefaultSearch: true
410 }
411 }
412 }
413
414 describe('Test static config', function () {
415 let server: PeerTubeServer = null
416
417 before(async function () {
418 this.timeout(30000)
419
420 server = await createSingleServer(1, { webadmin: { configuration: { edition: { allowed: false } } } })
421 await setAccessTokensToServers([ server ])
422 })
423
424 it('Should tell the client that edits are not allowed', async function () {
425 const data = await server.config.getConfig()
426
427 expect(data.webadmin.configuration.edition.allowed).to.be.false
428 })
429
430 it('Should error when client tries to update', async function () {
431 await server.config.updateCustomConfig({ newCustomConfig, expectedStatus: 405 })
432 })
433
434 after(async function () {
435 await cleanupTests([ server ])
436 })
437 })
438
439 describe('Test config', function () {
440 let server: PeerTubeServer = null
441
442 before(async function () {
443 this.timeout(30000)
444
445 server = await createSingleServer(1)
446 await setAccessTokensToServers([ server ])
447 })
448
449 it('Should have a correct config on a server with registration enabled', async function () {
450 const data = await server.config.getConfig()
451
452 expect(data.signup.allowed).to.be.true
453 })
454
455 it('Should have a correct config on a server with registration enabled and a users limit', async function () {
456 this.timeout(5000)
457
458 await Promise.all([
459 server.users.register({ username: 'user1' }),
460 server.users.register({ username: 'user2' }),
461 server.users.register({ username: 'user3' })
462 ])
463
464 const data = await server.config.getConfig()
465
466 expect(data.signup.allowed).to.be.false
467 })
468
469 it('Should have the correct video allowed extensions', async function () {
470 const data = await server.config.getConfig()
471
472 expect(data.video.file.extensions).to.have.lengthOf(3)
473 expect(data.video.file.extensions).to.contain('.mp4')
474 expect(data.video.file.extensions).to.contain('.webm')
475 expect(data.video.file.extensions).to.contain('.ogv')
476
477 await server.videos.upload({ attributes: { fixture: 'video_short.mkv' }, expectedStatus: HttpStatusCode.UNSUPPORTED_MEDIA_TYPE_415 })
478 await server.videos.upload({ attributes: { fixture: 'sample.ogg' }, expectedStatus: HttpStatusCode.UNSUPPORTED_MEDIA_TYPE_415 })
479
480 expect(data.contactForm.enabled).to.be.true
481 })
482
483 it('Should get the customized configuration', async function () {
484 const data = await server.config.getCustomConfig()
485
486 checkInitialConfig(server, data)
487 })
488
489 it('Should update the customized configuration', async function () {
490 await server.config.updateCustomConfig({ newCustomConfig })
491
492 const data = await server.config.getCustomConfig()
493 checkUpdatedConfig(data)
494 })
495
496 it('Should have the correct updated video allowed extensions', async function () {
497 this.timeout(10000)
498
499 const data = await server.config.getConfig()
500
501 expect(data.video.file.extensions).to.have.length.above(4)
502 expect(data.video.file.extensions).to.contain('.mp4')
503 expect(data.video.file.extensions).to.contain('.webm')
504 expect(data.video.file.extensions).to.contain('.ogv')
505 expect(data.video.file.extensions).to.contain('.flv')
506 expect(data.video.file.extensions).to.contain('.wmv')
507 expect(data.video.file.extensions).to.contain('.mkv')
508 expect(data.video.file.extensions).to.contain('.mp3')
509 expect(data.video.file.extensions).to.contain('.ogg')
510 expect(data.video.file.extensions).to.contain('.flac')
511
512 await server.videos.upload({ attributes: { fixture: 'video_short.mkv' }, expectedStatus: HttpStatusCode.OK_200 })
513 await server.videos.upload({ attributes: { fixture: 'sample.ogg' }, expectedStatus: HttpStatusCode.OK_200 })
514 })
515
516 it('Should have the configuration updated after a restart', async function () {
517 this.timeout(30000)
518
519 await killallServers([ server ])
520
521 await server.run()
522
523 const data = await server.config.getCustomConfig()
524
525 checkUpdatedConfig(data)
526 })
527
528 it('Should fetch the about information', async function () {
529 const data = await server.config.getAbout()
530
531 expect(data.instance.name).to.equal('PeerTube updated')
532 expect(data.instance.shortDescription).to.equal('my short description')
533 expect(data.instance.description).to.equal('my super description')
534 expect(data.instance.terms).to.equal('my super terms')
535 expect(data.instance.codeOfConduct).to.equal('my super coc')
536
537 expect(data.instance.creationReason).to.equal('my super creation reason')
538 expect(data.instance.moderationInformation).to.equal('my super moderation information')
539 expect(data.instance.administrator).to.equal('Kuja')
540 expect(data.instance.maintenanceLifetime).to.equal('forever')
541 expect(data.instance.businessModel).to.equal('my super business model')
542 expect(data.instance.hardwareInformation).to.equal('2vCore 3GB RAM')
543
544 expect(data.instance.languages).to.deep.equal([ 'en', 'es' ])
545 expect(data.instance.categories).to.deep.equal([ 1, 2 ])
546 })
547
548 it('Should remove the custom configuration', async function () {
549 this.timeout(10000)
550
551 await server.config.deleteCustomConfig()
552
553 const data = await server.config.getCustomConfig()
554 checkInitialConfig(server, data)
555 })
556
557 it('Should enable frameguard', async function () {
558 this.timeout(25000)
559
560 {
561 const res = await makeGetRequest({
562 url: server.url,
563 path: '/api/v1/config',
564 expectedStatus: 200
565 })
566
567 expect(res.headers['x-frame-options']).to.exist
568 }
569
570 await killallServers([ server ])
571
572 const config = {
573 security: {
574 frameguard: { enabled: false }
575 }
576 }
577 await server.run(config)
578
579 {
580 const res = await makeGetRequest({
581 url: server.url,
582 path: '/api/v1/config',
583 expectedStatus: 200
584 })
585
586 expect(res.headers['x-frame-options']).to.not.exist
587 }
588 })
589
590 after(async function () {
591 await cleanupTests([ server ])
592 })
593 })