792dbaf07f
* Client: Add list blacklist feature * Server: Add list blacklist feature * Client: Add videoId column * Server: Add some video infos in the REST api * Client: Add video information in the blacklist list * Fix sortable columns :) * Client: Add removeFromBlacklist feature * Server: Add removeFromBlacklist feature * Move to TypeScript * Move to TypeScript and Promises * Server: Fix blacklist list sort * Server: Fetch videos informations * Use common shared interface for client and server * Add check-params remove blacklisted video tests * Add check-params list blacklisted videos tests * Add list blacklist tests * Add remove from blacklist tests * Add video blacklist management tests * Fix rebase onto develop issues * Server: Add sort on blacklist id column * Server: Add blacklists library * Add blacklist id sort test * Add check-params tests for blacklist list pagination, count and sort * Fix coding style * Increase Remote API tests timeout * Increase Request scheduler API tests timeout * Fix typo * Increase video transcoding API tests timeout * Move tests to Typescript * Use lodash orderBy method * Fix typos * Client: Remove optional tests in blacklist model attributes * Move blacklist routes from 'blacklists' to 'blacklist' * CLient: Remove blacklist-list.component.scss * Rename 'blacklists' files to 'blacklist' * Use only BlacklistedVideo interface * Server: Use getFormattedObjects method in listBlacklist method * Client: Use new coding style * Server: Use new sort validator methods * Server: Use new checkParams methods * Client: Fix sortable columns
86 lines
2.1 KiB
TypeScript
86 lines
2.1 KiB
TypeScript
/* tslint:disable:no-unused-expression */
|
|
|
|
import 'mocha'
|
|
import * as chai from 'chai'
|
|
const expect = chai.expect
|
|
|
|
import {
|
|
ServerInfo,
|
|
flushTests,
|
|
uploadVideo,
|
|
getVideosList,
|
|
wait,
|
|
setAccessTokensToServers,
|
|
flushAndRunMultipleServers,
|
|
killallServers,
|
|
webtorrentAdd
|
|
} from '../utils'
|
|
|
|
describe('Test video transcoding', function () {
|
|
let servers: ServerInfo[] = []
|
|
|
|
before(async function () {
|
|
this.timeout(60000)
|
|
|
|
// Run servers
|
|
servers = await flushAndRunMultipleServers(2)
|
|
|
|
await setAccessTokensToServers(servers)
|
|
})
|
|
|
|
it('Should not transcode video on server 1', async function () {
|
|
this.timeout(60000)
|
|
|
|
const videoAttributes = {
|
|
name: 'my super name for pod 1',
|
|
description: 'my super description for pod 1',
|
|
fixture: 'video_short.webm'
|
|
}
|
|
await uploadVideo(servers[0].url, servers[0].accessToken, videoAttributes)
|
|
|
|
await wait(30000)
|
|
|
|
const res = await getVideosList(servers[0].url)
|
|
const video = res.body.data[0]
|
|
const magnetUri = video.files[0].magnetUri
|
|
expect(magnetUri).to.match(/\.webm/)
|
|
|
|
const torrent = await webtorrentAdd(magnetUri)
|
|
expect(torrent.files).to.be.an('array')
|
|
expect(torrent.files.length).to.equal(1)
|
|
expect(torrent.files[0].path).match(/\.webm$/)
|
|
})
|
|
|
|
it('Should transcode video on server 2', async function () {
|
|
this.timeout(60000)
|
|
|
|
const videoAttributes = {
|
|
name: 'my super name for pod 2',
|
|
description: 'my super description for pod 2',
|
|
fixture: 'video_short.webm'
|
|
}
|
|
await uploadVideo(servers[1].url, servers[1].accessToken, videoAttributes)
|
|
|
|
await wait(30000)
|
|
|
|
const res = await getVideosList(servers[1].url)
|
|
|
|
const video = res.body.data[0]
|
|
const magnetUri = video.files[0].magnetUri
|
|
expect(magnetUri).to.match(/\.mp4/)
|
|
|
|
const torrent = await webtorrentAdd(magnetUri)
|
|
expect(torrent.files).to.be.an('array')
|
|
expect(torrent.files.length).to.equal(1)
|
|
expect(torrent.files[0].path).match(/\.mp4$/)
|
|
})
|
|
|
|
after(async function () {
|
|
killallServers(servers)
|
|
|
|
// Keep the logs if the test failed
|
|
if (this['ok']) {
|
|
await flushTests()
|
|
}
|
|
})
|
|
})
|