PeerTube/server/tests/cli/create-transcoding-job.ts

221 lines
6.7 KiB
TypeScript
Raw Normal View History

2020-01-31 16:56:52 +01:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import 'mocha'
import * as chai from 'chai'
import {
2019-04-24 15:10:37 +02:00
cleanupTests,
doubleFollow,
flushAndRunMultipleServers,
getVideo,
getVideosList,
ServerInfo,
2020-01-31 16:56:52 +01:00
setAccessTokensToServers,
uploadVideo
} from '../../../shared/extra-utils'
import { waitJobs } from '../../../shared/extra-utils/server/jobs'
2021-07-05 16:37:50 +02:00
import { VideoDetails } from '../../../shared/models/videos'
const expect = chai.expect
describe('Test create transcoding jobs', function () {
let servers: ServerInfo[] = []
2020-01-31 16:56:52 +01:00
const videosUUID: string[] = []
2019-11-22 10:45:03 +01:00
const config = {
transcoding: {
enabled: false,
resolutions: {
'240p': true,
'360p': true,
'480p': true,
'720p': true,
'1080p': true,
'1440p': true,
2019-11-22 10:45:03 +01:00
'2160p': true
},
hls: {
enabled: false
}
}
}
before(async function () {
this.timeout(60000)
// Run server 2 to have transcoding enabled
servers = await flushAndRunMultipleServers(2)
await setAccessTokensToServers(servers)
2021-07-07 11:51:09 +02:00
await servers[0].configCommand.updateCustomSubConfig({ newConfig: config })
2019-11-22 10:45:03 +01:00
await doubleFollow(servers[0], servers[1])
2019-11-22 10:45:03 +01:00
for (let i = 1; i <= 5; i++) {
2020-01-31 16:56:52 +01:00
const res = await uploadVideo(servers[0].url, servers[0].accessToken, { name: 'video' + i })
2019-11-22 10:45:03 +01:00
videosUUID.push(res.body.video.uuid)
}
await waitJobs(servers)
})
it('Should have two video files on each server', async function () {
this.timeout(30000)
for (const server of servers) {
const res = await getVideosList(server.url)
const videos = res.body.data
2019-11-22 10:45:03 +01:00
expect(videos).to.have.lengthOf(videosUUID.length)
for (const video of videos) {
const res2 = await getVideo(server.url, video.uuid)
const videoDetail: VideoDetails = res2.body
expect(videoDetail.files).to.have.lengthOf(1)
2019-11-22 10:45:03 +01:00
expect(videoDetail.streamingPlaylists).to.have.lengthOf(0)
}
}
})
it('Should run a transcoding job on video 2', async function () {
this.timeout(60000)
2021-07-05 16:37:50 +02:00
await servers[0].cliCommand.execWithEnv(`npm run create-transcoding-job -- -v ${videosUUID[1]}`)
await waitJobs(servers)
for (const server of servers) {
const res = await getVideosList(server.url)
const videos = res.body.data
2020-01-31 16:56:52 +01:00
let infoHashes: { [id: number]: string }
2018-05-30 11:11:51 +02:00
for (const video of videos) {
const res2 = await getVideo(server.url, video.uuid)
const videoDetail: VideoDetails = res2.body
2019-11-22 10:45:03 +01:00
if (video.uuid === videosUUID[1]) {
expect(videoDetail.files).to.have.lengthOf(4)
2019-11-22 10:45:03 +01:00
expect(videoDetail.streamingPlaylists).to.have.lengthOf(0)
2018-05-30 11:11:51 +02:00
if (!infoHashes) {
infoHashes = {}
for (const file of videoDetail.files) {
infoHashes[file.resolution.id.toString()] = file.magnetUri
}
} else {
for (const resolution of Object.keys(infoHashes)) {
const file = videoDetail.files.find(f => f.resolution.id.toString() === resolution)
expect(file.magnetUri).to.equal(infoHashes[resolution])
}
}
} else {
expect(videoDetail.files).to.have.lengthOf(1)
2019-11-22 10:45:03 +01:00
expect(videoDetail.streamingPlaylists).to.have.lengthOf(0)
}
}
}
})
it('Should run a transcoding job on video 1 with resolution', async function () {
this.timeout(60000)
2021-07-05 16:37:50 +02:00
await servers[0].cliCommand.execWithEnv(`npm run create-transcoding-job -- -v ${videosUUID[0]} -r 480`)
await waitJobs(servers)
for (const server of servers) {
const res = await getVideosList(server.url)
const videos = res.body.data
2019-11-22 10:45:03 +01:00
expect(videos).to.have.lengthOf(videosUUID.length)
2019-11-22 10:45:03 +01:00
const res2 = await getVideo(server.url, videosUUID[0])
const videoDetail: VideoDetails = res2.body
expect(videoDetail.files).to.have.lengthOf(2)
expect(videoDetail.files[0].resolution.id).to.equal(720)
expect(videoDetail.files[1].resolution.id).to.equal(480)
2019-11-22 10:45:03 +01:00
expect(videoDetail.streamingPlaylists).to.have.lengthOf(0)
}
})
it('Should generate an HLS resolution', async function () {
this.timeout(120000)
2021-07-05 16:37:50 +02:00
await servers[0].cliCommand.execWithEnv(`npm run create-transcoding-job -- -v ${videosUUID[2]} --generate-hls -r 480`)
2019-11-22 10:45:03 +01:00
await waitJobs(servers)
for (const server of servers) {
const res = await getVideo(server.url, videosUUID[2])
const videoDetail: VideoDetails = res.body
expect(videoDetail.files).to.have.lengthOf(1)
expect(videoDetail.streamingPlaylists).to.have.lengthOf(1)
const files = videoDetail.streamingPlaylists[0].files
expect(files).to.have.lengthOf(1)
expect(files[0].resolution.id).to.equal(480)
}
})
it('Should not duplicate an HLS resolution', async function () {
this.timeout(120000)
2021-07-05 16:37:50 +02:00
await servers[0].cliCommand.execWithEnv(`npm run create-transcoding-job -- -v ${videosUUID[2]} --generate-hls -r 480`)
2019-11-22 10:45:03 +01:00
await waitJobs(servers)
for (const server of servers) {
const res = await getVideo(server.url, videosUUID[2])
const videoDetail: VideoDetails = res.body
const files = videoDetail.streamingPlaylists[0].files
expect(files).to.have.lengthOf(1)
expect(files[0].resolution.id).to.equal(480)
}
})
it('Should generate all HLS resolutions', async function () {
this.timeout(120000)
2021-07-05 16:37:50 +02:00
await servers[0].cliCommand.execWithEnv(`npm run create-transcoding-job -- -v ${videosUUID[3]} --generate-hls`)
2019-11-22 10:45:03 +01:00
await waitJobs(servers)
for (const server of servers) {
const res = await getVideo(server.url, videosUUID[3])
const videoDetail: VideoDetails = res.body
expect(videoDetail.files).to.have.lengthOf(1)
expect(videoDetail.streamingPlaylists).to.have.lengthOf(1)
const files = videoDetail.streamingPlaylists[0].files
expect(files).to.have.lengthOf(4)
}
})
it('Should optimize the video file and generate HLS videos if enabled in config', async function () {
this.timeout(120000)
config.transcoding.hls.enabled = true
2021-07-07 11:51:09 +02:00
await servers[0].configCommand.updateCustomSubConfig({ newConfig: config })
2019-11-22 10:45:03 +01:00
2021-07-05 16:37:50 +02:00
await servers[0].cliCommand.execWithEnv(`npm run create-transcoding-job -- -v ${videosUUID[4]}`)
2019-11-22 10:45:03 +01:00
await waitJobs(servers)
for (const server of servers) {
const res = await getVideo(server.url, videosUUID[4])
const videoDetail: VideoDetails = res.body
expect(videoDetail.files).to.have.lengthOf(4)
expect(videoDetail.streamingPlaylists).to.have.lengthOf(1)
expect(videoDetail.streamingPlaylists[0].files).to.have.lengthOf(4)
}
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests(servers)
})
})