2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-06-02 15:39:41 -04:00
|
|
|
|
|
|
|
import 'mocha'
|
|
|
|
import * as chai from 'chai'
|
2021-08-17 02:26:20 -04:00
|
|
|
import {
|
|
|
|
areObjectStorageTestsDisabled,
|
|
|
|
cleanupTests,
|
|
|
|
createMultipleServers,
|
|
|
|
doubleFollow,
|
|
|
|
expectStartWith,
|
|
|
|
makeRawRequest,
|
|
|
|
ObjectStorageCommand,
|
|
|
|
PeerTubeServer,
|
|
|
|
setAccessTokensToServers,
|
|
|
|
waitJobs
|
|
|
|
} from '@shared/extra-utils'
|
2021-11-09 05:52:41 -05:00
|
|
|
import { HttpStatusCode, VideoDetails, VideoFile, VideoInclude } from '@shared/models'
|
2018-06-02 15:39:41 -04:00
|
|
|
|
2018-06-07 03:43:18 -04:00
|
|
|
const expect = chai.expect
|
|
|
|
|
|
|
|
function assertVideoProperties (video: VideoFile, resolution: number, extname: string, size?: number) {
|
2018-06-02 15:39:41 -04:00
|
|
|
expect(video).to.have.nested.property('resolution.id', resolution)
|
|
|
|
expect(video).to.have.property('torrentUrl').that.includes(`-${resolution}.torrent`)
|
|
|
|
expect(video).to.have.property('fileUrl').that.includes(`.${extname}`)
|
2021-02-17 03:36:09 -05:00
|
|
|
expect(video).to.have.property('magnetUri').that.includes(`.${extname}`)
|
2018-06-02 15:39:41 -04:00
|
|
|
expect(video).to.have.property('size').that.is.above(0)
|
2018-06-07 03:43:18 -04:00
|
|
|
|
|
|
|
if (size) expect(video.size).to.equal(size)
|
2018-06-02 15:39:41 -04:00
|
|
|
}
|
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
async function checkFiles (video: VideoDetails, objectStorage: boolean) {
|
|
|
|
for (const file of video.files) {
|
|
|
|
if (objectStorage) expectStartWith(file.fileUrl, ObjectStorageCommand.getWebTorrentBaseUrl())
|
2018-06-02 15:39:41 -04:00
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
await makeRawRequest(file.fileUrl, HttpStatusCode.OK_200)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function runTests (objectStorage: boolean) {
|
2021-08-17 05:06:10 -04:00
|
|
|
let video1ShortId: string
|
2018-06-02 15:39:41 -04:00
|
|
|
let video2UUID: string
|
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
let servers: PeerTubeServer[] = []
|
|
|
|
|
2018-06-02 15:39:41 -04:00
|
|
|
before(async function () {
|
|
|
|
this.timeout(90000)
|
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
const config = objectStorage
|
|
|
|
? ObjectStorageCommand.getDefaultConfig()
|
|
|
|
: {}
|
|
|
|
|
2018-06-02 15:39:41 -04:00
|
|
|
// Run server 2 to have transcoding enabled
|
2021-08-17 02:26:20 -04:00
|
|
|
servers = await createMultipleServers(2, config)
|
2018-06-02 15:39:41 -04:00
|
|
|
await setAccessTokensToServers(servers)
|
|
|
|
|
|
|
|
await doubleFollow(servers[0], servers[1])
|
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
if (objectStorage) await ObjectStorageCommand.prepareDefaultBuckets()
|
|
|
|
|
2018-06-02 15:39:41 -04:00
|
|
|
// Upload two videos for our needs
|
2021-07-15 04:02:54 -04:00
|
|
|
{
|
2021-08-17 05:06:10 -04:00
|
|
|
const { shortUUID } = await servers[0].videos.upload({ attributes: { name: 'video1' } })
|
|
|
|
video1ShortId = shortUUID
|
2021-07-15 04:02:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2021-07-16 03:04:35 -04:00
|
|
|
const { uuid } = await servers[1].videos.upload({ attributes: { name: 'video2' } })
|
2021-07-15 04:02:54 -04:00
|
|
|
video2UUID = uuid
|
|
|
|
}
|
2018-06-02 15:39:41 -04:00
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2021-11-23 09:22:07 -05:00
|
|
|
|
|
|
|
for (const server of servers) {
|
|
|
|
await server.config.enableTranscoding()
|
|
|
|
}
|
2018-06-02 15:39:41 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should run a import job on video 1 with a lower resolution', async function () {
|
2021-08-17 05:06:10 -04:00
|
|
|
const command = `npm run create-import-video-file-job -- -v ${video1ShortId} -i server/tests/fixtures/video_short-480.webm`
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].cli.execWithEnv(command)
|
2018-06-02 15:39:41 -04:00
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2018-06-02 15:39:41 -04:00
|
|
|
|
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data: videos } = await server.videos.list()
|
2018-06-02 15:39:41 -04:00
|
|
|
expect(videos).to.have.lengthOf(2)
|
|
|
|
|
2021-08-17 05:06:10 -04:00
|
|
|
const video = videos.find(({ shortUUID }) => shortUUID === video1ShortId)
|
|
|
|
const videoDetails = await server.videos.get({ id: video.shortUUID })
|
2018-06-02 15:39:41 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(videoDetails.files).to.have.lengthOf(2)
|
|
|
|
const [ originalVideo, transcodedVideo ] = videoDetails.files
|
2018-06-11 13:16:00 -04:00
|
|
|
assertVideoProperties(originalVideo, 720, 'webm', 218910)
|
|
|
|
assertVideoProperties(transcodedVideo, 480, 'webm', 69217)
|
2021-08-17 02:26:20 -04:00
|
|
|
|
|
|
|
await checkFiles(videoDetails, objectStorage)
|
2018-06-02 15:39:41 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-06-11 13:16:00 -04:00
|
|
|
it('Should run a import job on video 2 with the same resolution and a different extension', async function () {
|
2021-07-05 10:37:50 -04:00
|
|
|
const command = `npm run create-import-video-file-job -- -v ${video2UUID} -i server/tests/fixtures/video_short.ogv`
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[1].cli.execWithEnv(command)
|
2018-06-02 15:39:41 -04:00
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2018-06-02 15:39:41 -04:00
|
|
|
|
2018-06-11 13:16:00 -04:00
|
|
|
for (const server of servers) {
|
2021-11-09 05:52:41 -05:00
|
|
|
const { data: videos } = await server.videos.listWithToken({ include: VideoInclude.NOT_PUBLISHED_STATE })
|
2018-06-02 15:39:41 -04:00
|
|
|
expect(videos).to.have.lengthOf(2)
|
|
|
|
|
|
|
|
const video = videos.find(({ uuid }) => uuid === video2UUID)
|
2021-07-16 03:04:35 -04:00
|
|
|
const videoDetails = await server.videos.get({ id: video.uuid })
|
2018-06-02 15:39:41 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(videoDetails.files).to.have.lengthOf(4)
|
|
|
|
const [ originalVideo, transcodedVideo420, transcodedVideo320, transcodedVideo240 ] = videoDetails.files
|
2018-06-07 03:43:18 -04:00
|
|
|
assertVideoProperties(originalVideo, 720, 'ogv', 140849)
|
2018-06-02 15:39:41 -04:00
|
|
|
assertVideoProperties(transcodedVideo420, 480, 'mp4')
|
|
|
|
assertVideoProperties(transcodedVideo320, 360, 'mp4')
|
|
|
|
assertVideoProperties(transcodedVideo240, 240, 'mp4')
|
2021-08-17 02:26:20 -04:00
|
|
|
|
|
|
|
await checkFiles(videoDetails, objectStorage)
|
2018-06-02 15:39:41 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-06-11 13:16:00 -04:00
|
|
|
it('Should run a import job on video 2 with the same resolution and the same extension', async function () {
|
2021-08-17 05:06:10 -04:00
|
|
|
const command = `npm run create-import-video-file-job -- -v ${video1ShortId} -i server/tests/fixtures/video_short2.webm`
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].cli.execWithEnv(command)
|
2018-06-11 13:16:00 -04:00
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2018-06-11 13:16:00 -04:00
|
|
|
|
|
|
|
for (const server of servers) {
|
2021-11-09 05:52:41 -05:00
|
|
|
const { data: videos } = await server.videos.listWithToken({ include: VideoInclude.NOT_PUBLISHED_STATE })
|
2018-06-11 13:16:00 -04:00
|
|
|
expect(videos).to.have.lengthOf(2)
|
|
|
|
|
2021-08-17 05:06:10 -04:00
|
|
|
const video = videos.find(({ shortUUID }) => shortUUID === video1ShortId)
|
2021-07-16 03:04:35 -04:00
|
|
|
const videoDetails = await server.videos.get({ id: video.uuid })
|
2018-06-11 13:16:00 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(videoDetails.files).to.have.lengthOf(2)
|
|
|
|
const [ video720, video480 ] = videoDetails.files
|
2018-06-11 13:16:00 -04:00
|
|
|
assertVideoProperties(video720, 720, 'webm', 942961)
|
|
|
|
assertVideoProperties(video480, 480, 'webm', 69217)
|
2021-08-17 02:26:20 -04:00
|
|
|
|
|
|
|
await checkFiles(videoDetails, objectStorage)
|
2018-06-11 13:16:00 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-11-23 09:22:07 -05:00
|
|
|
it('Should not have run transcoding after an import job', async function () {
|
|
|
|
const { data } = await servers[0].jobs.list({ jobType: 'video-transcoding' })
|
|
|
|
expect(data).to.have.lengthOf(0)
|
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests(servers)
|
2018-06-02 15:39:41 -04:00
|
|
|
})
|
2021-08-17 02:26:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
describe('Test create import video jobs', function () {
|
|
|
|
|
|
|
|
describe('On filesystem', function () {
|
|
|
|
runTests(false)
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('On object storage', function () {
|
|
|
|
if (areObjectStorageTestsDisabled()) return
|
|
|
|
|
|
|
|
runTests(true)
|
|
|
|
})
|
2018-06-02 15:39:41 -04:00
|
|
|
})
|