diff options
Diffstat (limited to 'server/tests/cli/create-transcoding-job.ts')
-rw-r--r-- | server/tests/cli/create-transcoding-job.ts | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/server/tests/cli/create-transcoding-job.ts b/server/tests/cli/create-transcoding-job.ts new file mode 100644 index 000000000..c2214d285 --- /dev/null +++ b/server/tests/cli/create-transcoding-job.ts | |||
@@ -0,0 +1,96 @@ | |||
1 | /* tslint:disable:no-unused-expression */ | ||
2 | |||
3 | import 'mocha' | ||
4 | import * as chai from 'chai' | ||
5 | import { VideoDetails } from '../../../shared/models/videos' | ||
6 | const expect = chai.expect | ||
7 | |||
8 | import { | ||
9 | execCLI, | ||
10 | flushTests, | ||
11 | getEnvCli, | ||
12 | getVideosList, | ||
13 | killallServers, | ||
14 | parseTorrentVideo, | ||
15 | runServer, | ||
16 | ServerInfo, | ||
17 | setAccessTokensToServers, | ||
18 | uploadVideo, | ||
19 | wait, | ||
20 | getVideo, flushAndRunMultipleServers, doubleFollow | ||
21 | } from '../utils' | ||
22 | |||
23 | describe('Test create transcoding jobs', function () { | ||
24 | let servers: ServerInfo[] = [] | ||
25 | let video2UUID: string | ||
26 | |||
27 | before(async function () { | ||
28 | this.timeout(60000) | ||
29 | |||
30 | await flushTests() | ||
31 | |||
32 | // Run server 2 to have transcoding enabled | ||
33 | servers = await flushAndRunMultipleServers(2) | ||
34 | await setAccessTokensToServers(servers) | ||
35 | |||
36 | await doubleFollow(servers[0], servers[1]) | ||
37 | |||
38 | // Upload two videos for our needs | ||
39 | await uploadVideo(servers[0].url, servers[0].accessToken, { name: 'video1' }) | ||
40 | const res = await uploadVideo(servers[0].url, servers[0].accessToken, { name: 'video2' }) | ||
41 | video2UUID = res.body.video.uuid | ||
42 | |||
43 | await wait(3000) | ||
44 | }) | ||
45 | |||
46 | it('Should have two video files on each server', async function () { | ||
47 | this.timeout(30000) | ||
48 | |||
49 | for (const server of servers) { | ||
50 | const res = await getVideosList(server.url) | ||
51 | const videos = res.body.data | ||
52 | expect(videos).to.have.lengthOf(2) | ||
53 | |||
54 | for (const video of videos) { | ||
55 | const res2 = await getVideo(server.url, video.uuid) | ||
56 | const videoDetail: VideoDetails = res2.body | ||
57 | expect(videoDetail.files).to.have.lengthOf(1) | ||
58 | } | ||
59 | } | ||
60 | }) | ||
61 | |||
62 | it('Should run a transcoding job on video 2', async function () { | ||
63 | this.timeout(60000) | ||
64 | |||
65 | const env = getEnvCli(servers[0]) | ||
66 | await execCLI(`${env} npm run create-transcoding-job -- -v ${video2UUID}`) | ||
67 | |||
68 | await wait(30000) | ||
69 | |||
70 | for (const server of servers) { | ||
71 | const res = await getVideosList(server.url) | ||
72 | const videos = res.body.data | ||
73 | expect(videos).to.have.lengthOf(2) | ||
74 | |||
75 | for (const video of videos) { | ||
76 | const res2 = await getVideo(server.url, video.uuid) | ||
77 | const videoDetail: VideoDetails = res2.body | ||
78 | |||
79 | if (video.uuid === video2UUID) { | ||
80 | expect(videoDetail.files).to.have.lengthOf(4) | ||
81 | } else { | ||
82 | expect(videoDetail.files).to.have.lengthOf(1) | ||
83 | } | ||
84 | } | ||
85 | } | ||
86 | }) | ||
87 | |||
88 | after(async function () { | ||
89 | killallServers(servers) | ||
90 | |||
91 | // Keep the logs if the test failed | ||
92 | if (this['ok']) { | ||
93 | await flushTests() | ||
94 | } | ||
95 | }) | ||
96 | }) | ||