2019-01-29 02:37:25 -05:00
|
|
|
/* tslint:disable:no-unused-expression */
|
|
|
|
|
|
|
|
import * as chai from 'chai'
|
|
|
|
import 'mocha'
|
|
|
|
import {
|
|
|
|
checkDirectoryIsEmpty,
|
2019-02-07 09:08:19 -05:00
|
|
|
checkSegmentHash,
|
2019-04-25 11:14:49 -04:00
|
|
|
checkTmpIsEmpty,
|
|
|
|
cleanupTests,
|
2019-01-29 02:37:25 -05:00
|
|
|
doubleFollow,
|
|
|
|
flushAndRunMultipleServers,
|
|
|
|
getPlaylist,
|
|
|
|
getVideo,
|
|
|
|
removeVideo,
|
|
|
|
ServerInfo,
|
|
|
|
setAccessTokensToServers,
|
|
|
|
updateVideo,
|
|
|
|
uploadVideo,
|
|
|
|
waitJobs
|
2019-04-15 09:26:15 -04:00
|
|
|
} from '../../../../shared/extra-utils'
|
2019-01-29 02:37:25 -05:00
|
|
|
import { VideoDetails } from '../../../../shared/models/videos'
|
|
|
|
import { VideoStreamingPlaylistType } from '../../../../shared/models/videos/video-streaming-playlist.type'
|
|
|
|
import { join } from 'path'
|
2019-05-17 05:56:12 -04:00
|
|
|
import { DEFAULT_AUDIO_RESOLUTION } from '../../../initializers/constants'
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
const expect = chai.expect
|
|
|
|
|
2019-05-17 05:56:12 -04:00
|
|
|
async function checkHlsPlaylist (servers: ServerInfo[], videoUUID: string, resolutions = [ 240, 360, 480, 720 ]) {
|
2019-01-29 02:37:25 -05:00
|
|
|
for (const server of servers) {
|
|
|
|
const res = await getVideo(server.url, videoUUID)
|
|
|
|
const videoDetails: VideoDetails = res.body
|
|
|
|
|
|
|
|
expect(videoDetails.streamingPlaylists).to.have.lengthOf(1)
|
|
|
|
|
|
|
|
const hlsPlaylist = videoDetails.streamingPlaylists.find(p => p.type === VideoStreamingPlaylistType.HLS)
|
|
|
|
expect(hlsPlaylist).to.not.be.undefined
|
|
|
|
|
|
|
|
{
|
|
|
|
const res2 = await getPlaylist(hlsPlaylist.playlistUrl)
|
|
|
|
|
|
|
|
const masterPlaylist = res2.text
|
|
|
|
|
|
|
|
for (const resolution of resolutions) {
|
2019-05-17 05:56:12 -04:00
|
|
|
expect(masterPlaylist).to.match(new RegExp('#EXT-X-STREAM-INF:BANDWIDTH=\\d+,RESOLUTION=\\d+x' + resolution + ',FRAME-RATE=\\d+'))
|
2019-01-29 02:37:25 -05:00
|
|
|
expect(masterPlaylist).to.contain(`${resolution}.m3u8`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
for (const resolution of resolutions) {
|
2019-04-26 02:50:52 -04:00
|
|
|
const res2 = await getPlaylist(`http://localhost:${servers[0].port}/static/streaming-playlists/hls/${videoUUID}/${resolution}.m3u8`)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
const subPlaylist = res2.text
|
2019-02-07 09:08:19 -05:00
|
|
|
expect(subPlaylist).to.contain(`${videoUUID}-${resolution}-fragmented.mp4`)
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2019-04-26 02:50:52 -04:00
|
|
|
const baseUrl = 'http://localhost:' + servers[0].port + '/static/streaming-playlists/hls'
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-02-07 09:08:19 -05:00
|
|
|
for (const resolution of resolutions) {
|
|
|
|
await checkSegmentHash(baseUrl, baseUrl, videoUUID, resolution, hlsPlaylist)
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('Test HLS videos', function () {
|
|
|
|
let servers: ServerInfo[] = []
|
|
|
|
let videoUUID = ''
|
2019-05-17 05:56:12 -04:00
|
|
|
let videoAudioUUID = ''
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
2019-05-17 05:56:12 -04:00
|
|
|
const configOverride = {
|
|
|
|
transcoding: {
|
|
|
|
enabled: true,
|
|
|
|
allow_audio_files: true,
|
|
|
|
hls: {
|
|
|
|
enabled: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
servers = await flushAndRunMultipleServers(2, configOverride)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
// Get the access tokens
|
|
|
|
await setAccessTokensToServers(servers)
|
|
|
|
|
|
|
|
// Server 1 and server 2 follow each other
|
|
|
|
await doubleFollow(servers[0], servers[1])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should upload a video and transcode it to HLS', async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
2019-05-17 05:56:12 -04:00
|
|
|
const res = await uploadVideo(servers[ 0 ].url, servers[ 0 ].accessToken, { name: 'video 1', fixture: 'video_short.webm' })
|
|
|
|
videoUUID = res.body.video.uuid
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
await checkHlsPlaylist(servers, videoUUID)
|
|
|
|
})
|
|
|
|
|
2019-05-17 05:56:12 -04:00
|
|
|
it('Should upload an audio file and transcode it to HLS', async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
|
|
|
const res = await uploadVideo(servers[ 0 ].url, servers[ 0 ].accessToken, { name: 'video audio', fixture: 'sample.ogg' })
|
|
|
|
videoAudioUUID = res.body.video.uuid
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
await checkHlsPlaylist(servers, videoAudioUUID, [ DEFAULT_AUDIO_RESOLUTION ])
|
|
|
|
})
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
it('Should update the video', async function () {
|
2019-05-17 09:51:42 -04:00
|
|
|
this.timeout(10000)
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
await updateVideo(servers[0].url, servers[0].accessToken, videoUUID, { name: 'video 1 updated' })
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
await checkHlsPlaylist(servers, videoUUID)
|
|
|
|
})
|
|
|
|
|
2019-05-17 05:56:12 -04:00
|
|
|
it('Should delete videos', async function () {
|
2019-05-17 09:51:42 -04:00
|
|
|
this.timeout(10000)
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
await removeVideo(servers[0].url, servers[0].accessToken, videoUUID)
|
2019-05-17 05:56:12 -04:00
|
|
|
await removeVideo(servers[0].url, servers[0].accessToken, videoAudioUUID)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
for (const server of servers) {
|
|
|
|
await getVideo(server.url, videoUUID, 404)
|
2019-05-17 05:56:12 -04:00
|
|
|
await getVideo(server.url, videoAudioUUID, 404)
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have the playlists/segment deleted from the disk', async function () {
|
|
|
|
for (const server of servers) {
|
|
|
|
await checkDirectoryIsEmpty(server, 'videos')
|
2019-03-13 11:03:03 -04:00
|
|
|
await checkDirectoryIsEmpty(server, join('streaming-playlists', 'hls'))
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have an empty tmp directory', async function () {
|
|
|
|
for (const server of servers) {
|
|
|
|
await checkTmpIsEmpty(server)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests(servers)
|
2019-01-29 02:37:25 -05:00
|
|
|
})
|
|
|
|
})
|