]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/videos/video-imports.ts
Fix s3 mock cleanup
[github/Chocobozzz/PeerTube.git] / server / tests / api / videos / video-imports.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
590fb506 2
62549e6c 3import { expect } from 'chai'
1740952b 4import { pathExists, readdir, remove } from 'fs-extra'
62549e6c 5import { join } from 'path'
c55e3d72
C
6import { FIXTURE_URLS, testCaptionFile, testImage } from '@server/tests/shared'
7import { areHttpImportTestsDisabled } from '@shared/core-utils'
5e2afe42 8import { CustomConfig, HttpStatusCode, Video, VideoImportState, VideoPrivacy, VideoResolution, VideoState } from '@shared/models'
590fb506 9import {
7c3b7976 10 cleanupTests,
254d3579 11 createMultipleServers,
62549e6c 12 createSingleServer,
59bbcced 13 doubleFollow,
2a491182 14 getServerImportConfig,
254d3579 15 PeerTubeServer,
b488ba1e 16 setAccessTokensToServers,
62549e6c 17 setDefaultVideoChannel,
6910f20f 18 waitJobs
bf54587a 19} from '@shared/server-commands'
5e2afe42 20import { DeepPartial } from '@shared/typescript-utils'
590fb506 21
62549e6c
C
22async function checkVideosServer1 (server: PeerTubeServer, idHttp: string, idMagnet: string, idTorrent: string) {
23 const videoHttp = await server.videos.get({ id: idHttp })
24
25 expect(videoHttp.name).to.equal('small video - youtube')
b926a23c
C
26 expect(videoHttp.category.label).to.equal('News & Politics')
27 expect(videoHttp.licence.label).to.equal('Attribution')
62549e6c
C
28 expect(videoHttp.language.label).to.equal('Unknown')
29 expect(videoHttp.nsfw).to.be.false
30 expect(videoHttp.description).to.equal('this is a super description')
31 expect(videoHttp.tags).to.deep.equal([ 'tag1', 'tag2' ])
32 expect(videoHttp.files).to.have.lengthOf(1)
33
34 const originallyPublishedAt = new Date(videoHttp.originallyPublishedAt)
35 expect(originallyPublishedAt.getDate()).to.equal(14)
36 expect(originallyPublishedAt.getMonth()).to.equal(0)
37 expect(originallyPublishedAt.getFullYear()).to.equal(2019)
38
39 const videoMagnet = await server.videos.get({ id: idMagnet })
40 const videoTorrent = await server.videos.get({ id: idTorrent })
41
42 for (const video of [ videoMagnet, videoTorrent ]) {
32fde390 43 expect(video.category.label).to.equal('Unknown')
62549e6c
C
44 expect(video.licence.label).to.equal('Unknown')
45 expect(video.language.label).to.equal('Unknown')
46 expect(video.nsfw).to.be.false
47 expect(video.description).to.equal('this is a super torrent description')
48 expect(video.tags).to.deep.equal([ 'tag_torrent1', 'tag_torrent2' ])
49 expect(video.files).to.have.lengthOf(1)
50 }
51
52 expect(videoTorrent.name).to.contain('你好 世界 720p.mp4')
53 expect(videoMagnet.name).to.contain('super peertube2 video')
54
55 const bodyCaptions = await server.captions.list({ videoId: idHttp })
56 expect(bodyCaptions.total).to.equal(2)
57}
58
59async function checkVideoServer2 (server: PeerTubeServer, id: number | string) {
60 const video = await server.videos.get({ id })
61
62 expect(video.name).to.equal('my super name')
63 expect(video.category.label).to.equal('Entertainment')
64 expect(video.licence.label).to.equal('Public Domain Dedication')
65 expect(video.language.label).to.equal('English')
66 expect(video.nsfw).to.be.false
67 expect(video.description).to.equal('my super description')
68 expect(video.tags).to.deep.equal([ 'supertag1', 'supertag2' ])
69
d41f4a6d
C
70 await testImage(server.url, 'thumbnail', video.thumbnailPath)
71
62549e6c
C
72 expect(video.files).to.have.lengthOf(1)
73
74 const bodyCaptions = await server.captions.list({ videoId: id })
75 expect(bodyCaptions.total).to.equal(2)
76}
590fb506
C
77
78describe('Test video imports', function () {
590fb506 79
b488ba1e
C
80 if (areHttpImportTestsDisabled()) return
81
62549e6c 82 function runSuite (mode: 'youtube-dl' | 'yt-dlp') {
590fb506 83
62549e6c
C
84 describe('Import ' + mode, function () {
85 let servers: PeerTubeServer[] = []
652c6416 86
62549e6c 87 before(async function () {
2a491182
F
88 this.timeout(60_000)
89
90 servers = await createMultipleServers(2, getServerImportConfig(mode))
590fb506 91
62549e6c
C
92 await setAccessTokensToServers(servers)
93 await setDefaultVideoChannel(servers)
652c6416 94
5e2afe42
C
95 for (const server of servers) {
96 await server.config.updateExistingSubConfig({
97 newConfig: {
98 transcoding: {
99 alwaysTranscodeOriginalResolution: false
100 }
101 }
102 })
103 }
104
62549e6c
C
105 await doubleFollow(servers[0], servers[1])
106 })
590fb506 107
62549e6c
C
108 it('Should import videos on server 1', async function () {
109 this.timeout(60_000)
590fb506 110
62549e6c
C
111 const baseAttributes = {
112 channelId: servers[0].store.channel.id,
113 privacy: VideoPrivacy.PUBLIC
114 }
590fb506 115
62549e6c
C
116 {
117 const attributes = { ...baseAttributes, targetUrl: FIXTURE_URLS.youtube }
118 const { video } = await servers[0].imports.importVideo({ attributes })
119 expect(video.name).to.equal('small video - youtube')
590fb506 120
62549e6c
C
121 {
122 expect(video.thumbnailPath).to.match(new RegExp(`^/static/thumbnails/.+.jpg$`))
123 expect(video.previewPath).to.match(new RegExp(`^/lazy-static/previews/.+.jpg$`))
590fb506 124
62549e6c
C
125 const suffix = mode === 'yt-dlp'
126 ? '_yt_dlp'
127 : ''
590fb506 128
62549e6c
C
129 await testImage(servers[0].url, 'video_import_thumbnail' + suffix, video.thumbnailPath)
130 await testImage(servers[0].url, 'video_import_preview' + suffix, video.previewPath)
131 }
590fb506 132
62549e6c
C
133 const bodyCaptions = await servers[0].captions.list({ videoId: video.id })
134 const videoCaptions = bodyCaptions.data
135 expect(videoCaptions).to.have.lengthOf(2)
590fb506 136
62549e6c
C
137 {
138 const enCaption = videoCaptions.find(caption => caption.language.id === 'en')
139 expect(enCaption).to.exist
140 expect(enCaption.language.label).to.equal('English')
141 expect(enCaption.captionPath).to.match(new RegExp(`^/lazy-static/video-captions/.+-en.vtt$`))
3e17515e 142
0cc253c9
C
143 const regex = `WEBVTT[ \n]+Kind: captions[ \n]+` +
144 `(Language: en[ \n]+)?` +
6b3aa068
C
145 `00:00:01.600 --> 00:00:04.200( position:\\d+% line:\\d+%)?[ \n]+English \\(US\\)[ \n]+` +
146 `00:00:05.900 --> 00:00:07.999( position:\\d+% line:\\d+%)?[ \n]+This is a subtitle in American English[ \n]+` +
147 `00:00:10.000 --> 00:00:14.000( position:\\d+% line:\\d+%)?[ \n]+Adding subtitles is very easy to do`
62549e6c
C
148 await testCaptionFile(servers[0].url, enCaption.captionPath, new RegExp(regex))
149 }
53c06121 150
62549e6c
C
151 {
152 const frCaption = videoCaptions.find(caption => caption.language.id === 'fr')
153 expect(frCaption).to.exist
154 expect(frCaption.language.label).to.equal('French')
155 expect(frCaption.captionPath).to.match(new RegExp(`^/lazy-static/video-captions/.+-fr.vtt`))
53c06121 156
0cc253c9
C
157 const regex = `WEBVTT[ \n]+Kind: captions[ \n]+` +
158 `(Language: fr[ \n]+)?` +
6b3aa068
C
159 `00:00:01.600 --> 00:00:04.200( position:\\d+% line:\\d+%)?[ \n]+Français \\(FR\\)[ \n]+` +
160 `00:00:05.900 --> 00:00:07.999( position:\\d+% line:\\d+%)?[ \n]+C'est un sous-titre français[ \n]+` +
161 `00:00:10.000 --> 00:00:14.000( position:\\d+% line:\\d+%)?[ \n]+Ajouter un sous-titre est vraiment facile`
ba6e9e8f 162
62549e6c
C
163 await testCaptionFile(servers[0].url, frCaption.captionPath, new RegExp(regex))
164 }
165 }
ba6e9e8f 166
62549e6c
C
167 {
168 const attributes = {
169 ...baseAttributes,
170 magnetUri: FIXTURE_URLS.magnet,
171 description: 'this is a super torrent description',
172 tags: [ 'tag_torrent1', 'tag_torrent2' ]
173 }
174 const { video } = await servers[0].imports.importVideo({ attributes })
175 expect(video.name).to.equal('super peertube2 video')
176 }
ba6e9e8f 177
62549e6c
C
178 {
179 const attributes = {
180 ...baseAttributes,
181 torrentfile: 'video-720p.torrent' as any,
182 description: 'this is a super torrent description',
183 tags: [ 'tag_torrent1', 'tag_torrent2' ]
184 }
185 const { video } = await servers[0].imports.importVideo({ attributes })
186 expect(video.name).to.equal('你好 世界 720p.mp4')
187 }
188 })
ba6e9e8f 189
62549e6c
C
190 it('Should list the videos to import in my videos on server 1', async function () {
191 const { total, data } = await servers[0].videos.listMyVideos({ sort: 'createdAt' })
ba6e9e8f 192
62549e6c 193 expect(total).to.equal(3)
ba6e9e8f 194
62549e6c
C
195 expect(data).to.have.lengthOf(3)
196 expect(data[0].name).to.equal('small video - youtube')
197 expect(data[1].name).to.equal('super peertube2 video')
198 expect(data[2].name).to.equal('你好 世界 720p.mp4')
199 })
ba6e9e8f 200
62549e6c
C
201 it('Should list the videos to import in my imports on server 1', async function () {
202 const { total, data: videoImports } = await servers[0].imports.getMyVideoImports({ sort: '-createdAt' })
203 expect(total).to.equal(3)
ba6e9e8f 204
62549e6c 205 expect(videoImports).to.have.lengthOf(3)
ba6e9e8f 206
62549e6c
C
207 expect(videoImports[2].targetUrl).to.equal(FIXTURE_URLS.youtube)
208 expect(videoImports[2].magnetUri).to.be.null
209 expect(videoImports[2].torrentName).to.be.null
210 expect(videoImports[2].video.name).to.equal('small video - youtube')
3e17515e 211
62549e6c
C
212 expect(videoImports[1].targetUrl).to.be.null
213 expect(videoImports[1].magnetUri).to.equal(FIXTURE_URLS.magnet)
214 expect(videoImports[1].torrentName).to.be.null
215 expect(videoImports[1].video.name).to.equal('super peertube2 video')
3e17515e 216
62549e6c
C
217 expect(videoImports[0].targetUrl).to.be.null
218 expect(videoImports[0].magnetUri).to.be.null
219 expect(videoImports[0].torrentName).to.equal('video-720p.torrent')
220 expect(videoImports[0].video.name).to.equal('你好 世界 720p.mp4')
221 })
590fb506 222
d511df28
C
223 it('Should filter my imports on target URL', async function () {
224 const { total, data: videoImports } = await servers[0].imports.getMyVideoImports({ targetUrl: FIXTURE_URLS.youtube })
225 expect(total).to.equal(1)
226 expect(videoImports).to.have.lengthOf(1)
227
228 expect(videoImports[0].targetUrl).to.equal(FIXTURE_URLS.youtube)
229 })
230
a3b472a1
C
231 it('Should search in my imports', async function () {
232 const { total, data: videoImports } = await servers[0].imports.getMyVideoImports({ search: 'peertube2' })
233 expect(total).to.equal(1)
234 expect(videoImports).to.have.lengthOf(1)
235
236 expect(videoImports[0].magnetUri).to.equal(FIXTURE_URLS.magnet)
237 expect(videoImports[0].video.name).to.equal('super peertube2 video')
238 })
239
62549e6c
C
240 it('Should have the video listed on the two instances', async function () {
241 this.timeout(120_000)
590fb506 242
62549e6c 243 await waitJobs(servers)
590fb506 244
62549e6c
C
245 for (const server of servers) {
246 const { total, data } = await server.videos.list()
247 expect(total).to.equal(3)
248 expect(data).to.have.lengthOf(3)
590fb506 249
62549e6c
C
250 const [ videoHttp, videoMagnet, videoTorrent ] = data
251 await checkVideosServer1(server, videoHttp.uuid, videoMagnet.uuid, videoTorrent.uuid)
252 }
253 })
254
255 it('Should import a video on server 2 with some fields', async function () {
256 this.timeout(60_000)
257
d41f4a6d
C
258 const { video } = await servers[1].imports.importVideo({
259 attributes: {
260 targetUrl: FIXTURE_URLS.youtube,
261 channelId: servers[1].store.channel.id,
262 privacy: VideoPrivacy.PUBLIC,
263 category: 10,
264 licence: 7,
265 language: 'en',
266 name: 'my super name',
267 description: 'my super description',
268 tags: [ 'supertag1', 'supertag2' ],
269 thumbnailfile: 'thumbnail.jpg'
270 }
271 })
62549e6c
C
272 expect(video.name).to.equal('my super name')
273 })
3e17515e 274
62549e6c
C
275 it('Should have the videos listed on the two instances', async function () {
276 this.timeout(120_000)
3e17515e 277
62549e6c 278 await waitJobs(servers)
590fb506 279
62549e6c
C
280 for (const server of servers) {
281 const { total, data } = await server.videos.list()
282 expect(total).to.equal(4)
283 expect(data).to.have.lengthOf(4)
590fb506 284
62549e6c 285 await checkVideoServer2(server, data[0].uuid)
590fb506 286
62549e6c
C
287 const [ , videoHttp, videoMagnet, videoTorrent ] = data
288 await checkVideosServer1(server, videoHttp.uuid, videoMagnet.uuid, videoTorrent.uuid)
289 }
290 })
590fb506 291
62549e6c
C
292 it('Should import a video that will be transcoded', async function () {
293 this.timeout(240_000)
590fb506 294
62549e6c
C
295 const attributes = {
296 name: 'transcoded video',
297 magnetUri: FIXTURE_URLS.magnet,
298 channelId: servers[1].store.channel.id,
299 privacy: VideoPrivacy.PUBLIC
300 }
301 const { video } = await servers[1].imports.importVideo({ attributes })
302 const videoUUID = video.uuid
590fb506 303
62549e6c 304 await waitJobs(servers)
590fb506 305
62549e6c
C
306 for (const server of servers) {
307 const video = await server.videos.get({ id: videoUUID })
590fb506 308
62549e6c
C
309 expect(video.name).to.equal('transcoded video')
310 expect(video.files).to.have.lengthOf(4)
311 }
312 })
313
314 it('Should import no HDR version on a HDR video', async function () {
315 this.timeout(300_000)
316
5e2afe42 317 const config: DeepPartial<CustomConfig> = {
62549e6c
C
318 transcoding: {
319 enabled: true,
320 resolutions: {
5e2afe42 321 '0p': false,
8dd754c7 322 '144p': true,
62549e6c
C
323 '240p': true,
324 '360p': false,
325 '480p': false,
326 '720p': false,
327 '1080p': false, // the resulting resolution shouldn't be higher than this, and not vp9.2/av01
328 '1440p': false,
329 '2160p': false
330 },
331 webtorrent: { enabled: true },
332 hls: { enabled: false }
62549e6c
C
333 }
334 }
5e2afe42 335 await servers[0].config.updateExistingSubConfig({ newConfig: config })
590fb506 336
62549e6c
C
337 const attributes = {
338 name: 'hdr video',
339 targetUrl: FIXTURE_URLS.youtubeHDR,
340 channelId: servers[0].store.channel.id,
341 privacy: VideoPrivacy.PUBLIC
342 }
343 const { video: videoImported } = await servers[0].imports.importVideo({ attributes })
344 const videoUUID = videoImported.uuid
345
346 await waitJobs(servers)
347
348 // test resolution
349 const video = await servers[0].videos.get({ id: videoUUID })
350 expect(video.name).to.equal('hdr video')
351 const maxResolution = Math.max.apply(Math, video.files.map(function (o) { return o.resolution.id }))
352 expect(maxResolution, 'expected max resolution not met').to.equals(VideoResolution.H_240P)
353 })
354
5e2afe42
C
355 it('Should not import resolution higher than enabled transcoding resolution', async function () {
356 this.timeout(300_000)
357
358 const config: DeepPartial<CustomConfig> = {
359 transcoding: {
360 enabled: true,
361 resolutions: {
362 '0p': false,
363 '144p': true,
364 '240p': false,
365 '360p': false,
366 '480p': false,
367 '720p': false,
368 '1080p': false,
369 '1440p': false,
370 '2160p': false
371 },
372 alwaysTranscodeOriginalResolution: false
373 }
374 }
375 await servers[0].config.updateExistingSubConfig({ newConfig: config })
376
377 const attributes = {
378 name: 'small resolution video',
379 targetUrl: FIXTURE_URLS.youtube,
380 channelId: servers[0].store.channel.id,
381 privacy: VideoPrivacy.PUBLIC
382 }
383 const { video: videoImported } = await servers[0].imports.importVideo({ attributes })
384 const videoUUID = videoImported.uuid
385
386 await waitJobs(servers)
387
388 // test resolution
389 const video = await servers[0].videos.get({ id: videoUUID })
390 expect(video.name).to.equal('small resolution video')
391 expect(video.files).to.have.lengthOf(1)
392 expect(video.files[0].resolution.id).to.equal(144)
393 })
394
395 it('Should import resolution higher than enabled transcoding resolution', async function () {
396 this.timeout(300_000)
397
398 const config: DeepPartial<CustomConfig> = {
399 transcoding: {
400 alwaysTranscodeOriginalResolution: true
401 }
402 }
403 await servers[0].config.updateExistingSubConfig({ newConfig: config })
404
405 const attributes = {
406 name: 'bigger resolution video',
407 targetUrl: FIXTURE_URLS.youtube,
408 channelId: servers[0].store.channel.id,
409 privacy: VideoPrivacy.PUBLIC
410 }
411 const { video: videoImported } = await servers[0].imports.importVideo({ attributes })
412 const videoUUID = videoImported.uuid
413
414 await waitJobs(servers)
415
416 // test resolution
417 const video = await servers[0].videos.get({ id: videoUUID })
418 expect(video.name).to.equal('bigger resolution video')
419
420 expect(video.files).to.have.lengthOf(2)
421 expect(video.files.find(f => f.resolution.id === 240)).to.exist
422 expect(video.files.find(f => f.resolution.id === 144)).to.exist
423 })
424
62549e6c
C
425 it('Should import a peertube video', async function () {
426 this.timeout(120_000)
427
5480933b
C
428 const toTest = [ FIXTURE_URLS.peertube_long ]
429
62549e6c 430 // TODO: include peertube_short when https://github.com/ytdl-org/youtube-dl/pull/29475 is merged
5480933b
C
431 if (mode === 'yt-dlp') {
432 toTest.push(FIXTURE_URLS.peertube_short)
433 }
434
435 for (const targetUrl of toTest) {
62549e6c
C
436 await servers[0].config.disableTranscoding()
437
438 const attributes = {
439 targetUrl,
440 channelId: servers[0].store.channel.id,
441 privacy: VideoPrivacy.PUBLIC
442 }
443 const { video } = await servers[0].imports.importVideo({ attributes })
444 const videoUUID = video.uuid
590fb506 445
62549e6c 446 await waitJobs(servers)
590fb506 447
62549e6c
C
448 for (const server of servers) {
449 const video = await server.videos.get({ id: videoUUID })
3e17515e 450
62549e6c
C
451 expect(video.name).to.equal('E2E tests')
452 }
453 }
454 })
3e17515e 455
62549e6c
C
456 after(async function () {
457 await cleanupTests(servers)
458 })
459 })
460 }
3e17515e 461
b926a23c
C
462 // FIXME: youtube-dl seems broken
463 // runSuite('youtube-dl')
3e17515e 464
62549e6c 465 runSuite('yt-dlp')
3e17515e 466
419b520c
C
467 describe('Delete/cancel an import', function () {
468 let server: PeerTubeServer
469
470 let finishedImportId: number
471 let finishedVideo: Video
472 let pendingImportId: number
473
474 async function importVideo (name: string) {
475 const attributes = { name, channelId: server.store.channel.id, targetUrl: FIXTURE_URLS.goodVideo }
476 const res = await server.imports.importVideo({ attributes })
477
478 return res.id
479 }
480
481 before(async function () {
482 this.timeout(120_000)
483
484 server = await createSingleServer(1)
485
486 await setAccessTokensToServers([ server ])
487 await setDefaultVideoChannel([ server ])
488
489 finishedImportId = await importVideo('finished')
490 await waitJobs([ server ])
491
492 await server.jobs.pauseJobQueue()
493 pendingImportId = await importVideo('pending')
494
495 const { data } = await server.imports.getMyVideoImports()
496 expect(data).to.have.lengthOf(2)
497
498 finishedVideo = data.find(i => i.id === finishedImportId).video
499 })
500
501 it('Should delete a video import', async function () {
502 await server.imports.delete({ importId: finishedImportId })
503
504 const { data } = await server.imports.getMyVideoImports()
505 expect(data).to.have.lengthOf(1)
506 expect(data[0].id).to.equal(pendingImportId)
507 expect(data[0].state.id).to.equal(VideoImportState.PENDING)
508 })
509
510 it('Should not have deleted the associated video', async function () {
511 const video = await server.videos.get({ id: finishedVideo.id, token: server.accessToken, expectedStatus: HttpStatusCode.OK_200 })
512 expect(video.name).to.equal('finished')
513 expect(video.state.id).to.equal(VideoState.PUBLISHED)
514 })
515
516 it('Should cancel a video import', async function () {
517 await server.imports.cancel({ importId: pendingImportId })
518
519 const { data } = await server.imports.getMyVideoImports()
520 expect(data).to.have.lengthOf(1)
521 expect(data[0].id).to.equal(pendingImportId)
522 expect(data[0].state.id).to.equal(VideoImportState.CANCELLED)
523 })
524
525 it('Should not have processed the cancelled video import', async function () {
526 this.timeout(60_000)
527
528 await server.jobs.resumeJobQueue()
529
530 await waitJobs([ server ])
531
532 const { data } = await server.imports.getMyVideoImports()
533 expect(data).to.have.lengthOf(1)
534 expect(data[0].id).to.equal(pendingImportId)
535 expect(data[0].state.id).to.equal(VideoImportState.CANCELLED)
536 expect(data[0].video.state.id).to.equal(VideoState.TO_IMPORT)
537 })
538
539 it('Should delete the cancelled video import', async function () {
540 await server.imports.delete({ importId: pendingImportId })
541 const { data } = await server.imports.getMyVideoImports()
542 expect(data).to.have.lengthOf(0)
543 })
d511df28
C
544
545 after(async function () {
546 await cleanupTests([ server ])
547 })
419b520c
C
548 })
549
62549e6c
C
550 describe('Auto update', function () {
551 let server: PeerTubeServer
3e17515e 552
62549e6c
C
553 function quickPeerTubeImport () {
554 const attributes = {
555 targetUrl: FIXTURE_URLS.peertube_long,
556 channelId: server.store.channel.id,
557 privacy: VideoPrivacy.PUBLIC
558 }
559
560 return server.imports.importVideo({ attributes })
590fb506 561 }
590fb506 562
62549e6c
C
563 async function testBinaryUpdate (releaseUrl: string, releaseName: string) {
564 await remove(join(server.servers.buildDirectory('bin'), releaseName))
565
566 await server.kill()
567 await server.run({
568 import: {
569 videos: {
570 http: {
571 youtube_dl_release: {
572 url: releaseUrl,
573 name: releaseName
574 }
575 }
454c20fa
RK
576 }
577 }
62549e6c
C
578 })
579
580 await quickPeerTubeImport()
454c20fa 581
1740952b
C
582 const base = server.servers.buildDirectory('bin')
583 const content = await readdir(base)
584 const binaryPath = join(base, releaseName)
585
586 expect(await pathExists(binaryPath), `${binaryPath} does not exist in ${base} (${content.join(', ')})`).to.be.true
454c20fa 587 }
454c20fa 588
62549e6c
C
589 before(async function () {
590 this.timeout(30_000)
454c20fa 591
62549e6c
C
592 // Run servers
593 server = await createSingleServer(1)
454c20fa 594
62549e6c
C
595 await setAccessTokensToServers([ server ])
596 await setDefaultVideoChannel([ server ])
597 })
e3c9ea72 598
62549e6c
C
599 it('Should update youtube-dl from github URL', async function () {
600 this.timeout(120_000)
e3c9ea72 601
62549e6c
C
602 await testBinaryUpdate('https://api.github.com/repos/ytdl-org/youtube-dl/releases', 'youtube-dl')
603 })
e3c9ea72 604
62549e6c
C
605 it('Should update youtube-dl from raw URL', async function () {
606 this.timeout(120_000)
e3c9ea72 607
62549e6c
C
608 await testBinaryUpdate('https://yt-dl.org/downloads/latest/youtube-dl', 'youtube-dl')
609 })
e3c9ea72 610
62549e6c
C
611 it('Should update youtube-dl from youtube-dl fork', async function () {
612 this.timeout(120_000)
e3c9ea72 613
62549e6c
C
614 await testBinaryUpdate('https://api.github.com/repos/yt-dlp/yt-dlp/releases', 'yt-dlp')
615 })
60409162
C
616
617 after(async function () {
618 await cleanupTests([ server ])
619 })
590fb506
C
620 })
621})