2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
import 'mocha'
|
2020-11-04 09:31:32 -05:00
|
|
|
import * as chai from 'chai'
|
2021-07-23 05:20:00 -04:00
|
|
|
import { basename, join } from 'path'
|
|
|
|
import { removeFragmentedMP4Ext, uuidRegex } from '@shared/core-utils'
|
2019-01-29 02:37:25 -05:00
|
|
|
import {
|
|
|
|
checkDirectoryIsEmpty,
|
2020-11-04 09:31:32 -05:00
|
|
|
checkResolutionsInMasterPlaylist,
|
2019-02-07 09:08:19 -05:00
|
|
|
checkSegmentHash,
|
2019-04-25 11:14:49 -04:00
|
|
|
checkTmpIsEmpty,
|
|
|
|
cleanupTests,
|
2021-07-16 03:47:51 -04:00
|
|
|
createMultipleServers,
|
2021-07-16 08:27:30 -04:00
|
|
|
doubleFollow,
|
2020-01-31 10:56:52 -05:00
|
|
|
makeRawRequest,
|
2021-07-16 03:47:51 -04:00
|
|
|
PeerTubeServer,
|
2020-01-31 10:56:52 -05:00
|
|
|
setAccessTokensToServers,
|
|
|
|
waitJobs,
|
|
|
|
webtorrentAdd
|
2021-07-15 04:02:54 -04:00
|
|
|
} from '@shared/extra-utils'
|
2021-07-16 08:27:30 -04:00
|
|
|
import { HttpStatusCode, VideoStreamingPlaylistType } from '@shared/models'
|
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
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
async function checkHlsPlaylist (servers: PeerTubeServer[], videoUUID: string, hlsOnly: boolean, resolutions = [ 240, 360, 480, 720 ]) {
|
2019-01-29 02:37:25 -05:00
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const videoDetails = await server.videos.get({ id: videoUUID })
|
2019-11-15 09:06:03 -05:00
|
|
|
const baseUrl = `http://${videoDetails.account.host}`
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
expect(videoDetails.streamingPlaylists).to.have.lengthOf(1)
|
|
|
|
|
|
|
|
const hlsPlaylist = videoDetails.streamingPlaylists.find(p => p.type === VideoStreamingPlaylistType.HLS)
|
|
|
|
expect(hlsPlaylist).to.not.be.undefined
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
const hlsFiles = hlsPlaylist.files
|
|
|
|
expect(hlsFiles).to.have.lengthOf(resolutions.length)
|
|
|
|
|
|
|
|
if (hlsOnly) expect(videoDetails.files).to.have.lengthOf(0)
|
|
|
|
else expect(videoDetails.files).to.have.lengthOf(resolutions.length)
|
|
|
|
|
2021-07-22 08:28:03 -04:00
|
|
|
// Check JSON files
|
2019-11-15 09:06:03 -05:00
|
|
|
for (const resolution of resolutions) {
|
|
|
|
const file = hlsFiles.find(f => f.resolution.id === resolution)
|
|
|
|
expect(file).to.not.be.undefined
|
|
|
|
|
|
|
|
expect(file.magnetUri).to.have.lengthOf.above(2)
|
2021-07-22 08:28:03 -04:00
|
|
|
expect(file.torrentUrl).to.match(
|
|
|
|
new RegExp(`http://${server.host}/lazy-static/torrents/${uuidRegex}-${file.resolution.id}-hls.torrent`)
|
|
|
|
)
|
|
|
|
expect(file.fileUrl).to.match(
|
|
|
|
new RegExp(`${baseUrl}/static/streaming-playlists/hls/${videoDetails.uuid}/${uuidRegex}-${file.resolution.id}-fragmented.mp4`)
|
2020-01-31 10:56:52 -05:00
|
|
|
)
|
2019-11-15 09:06:03 -05:00
|
|
|
expect(file.resolution.label).to.equal(resolution + 'p')
|
|
|
|
|
2020-12-08 15:16:10 -05:00
|
|
|
await makeRawRequest(file.torrentUrl, HttpStatusCode.OK_200)
|
|
|
|
await makeRawRequest(file.fileUrl, HttpStatusCode.OK_200)
|
2019-11-15 09:06:03 -05:00
|
|
|
|
|
|
|
const torrent = await webtorrentAdd(file.magnetUri, true)
|
|
|
|
expect(torrent.files).to.be.an('array')
|
|
|
|
expect(torrent.files.length).to.equal(1)
|
|
|
|
expect(torrent.files[0].path).to.exist.and.to.not.equal('')
|
|
|
|
}
|
|
|
|
|
2021-07-22 08:28:03 -04:00
|
|
|
// Check master playlist
|
2019-01-29 02:37:25 -05:00
|
|
|
{
|
2021-07-09 04:21:10 -04:00
|
|
|
await checkResolutionsInMasterPlaylist({ server, playlistUrl: hlsPlaylist.playlistUrl, resolutions })
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const masterPlaylist = await server.streamingPlaylists.get({ url: hlsPlaylist.playlistUrl })
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
for (const resolution of resolutions) {
|
2019-11-26 10:25:36 -05:00
|
|
|
expect(masterPlaylist).to.contain(`${resolution}.m3u8`)
|
2019-01-29 02:37:25 -05:00
|
|
|
expect(masterPlaylist).to.contain(`${resolution}.m3u8`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-22 08:28:03 -04:00
|
|
|
// Check resolution playlists
|
2019-01-29 02:37:25 -05:00
|
|
|
{
|
|
|
|
for (const resolution of resolutions) {
|
2021-07-23 05:20:00 -04:00
|
|
|
const file = hlsFiles.find(f => f.resolution.id === resolution)
|
|
|
|
const playlistName = removeFragmentedMP4Ext(basename(file.fileUrl)) + '.m3u8'
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const subPlaylist = await server.streamingPlaylists.get({
|
2021-07-23 05:20:00 -04:00
|
|
|
url: `${baseUrl}/static/streaming-playlists/hls/${videoUUID}/${playlistName}`
|
2021-07-09 04:21:10 -04:00
|
|
|
})
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2021-07-22 08:28:03 -04:00
|
|
|
expect(subPlaylist).to.match(new RegExp(`${uuidRegex}-${resolution}-fragmented.mp4`))
|
|
|
|
expect(subPlaylist).to.contain(basename(file.fileUrl))
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2019-11-15 09:06:03 -05:00
|
|
|
const baseUrlAndPath = baseUrl + '/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) {
|
2021-07-09 04:21:10 -04:00
|
|
|
await checkSegmentHash({
|
|
|
|
server,
|
|
|
|
baseUrlPlaylist: baseUrlAndPath,
|
|
|
|
baseUrlSegment: baseUrlAndPath,
|
|
|
|
videoUUID,
|
|
|
|
resolution,
|
|
|
|
hlsPlaylist
|
|
|
|
})
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('Test HLS videos', function () {
|
2021-07-16 03:47:51 -04:00
|
|
|
let servers: PeerTubeServer[] = []
|
2019-01-29 02:37:25 -05:00
|
|
|
let videoUUID = ''
|
2019-05-17 05:56:12 -04:00
|
|
|
let videoAudioUUID = ''
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
function runTestSuite (hlsOnly: boolean) {
|
2021-07-09 10:23:01 -04:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
it('Should upload a video and transcode it to HLS', async function () {
|
|
|
|
this.timeout(120000)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { uuid } = await servers[0].videos.upload({ attributes: { name: 'video 1', fixture: 'video_short.webm' } })
|
2021-07-15 04:02:54 -04:00
|
|
|
videoUUID = uuid
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
await waitJobs(servers)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
await checkHlsPlaylist(servers, videoUUID, hlsOnly)
|
|
|
|
})
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
it('Should upload an audio file and transcode it to HLS', async function () {
|
|
|
|
this.timeout(120000)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { uuid } = await servers[0].videos.upload({ attributes: { name: 'video audio', fixture: 'sample.ogg' } })
|
2021-07-15 04:02:54 -04:00
|
|
|
videoAudioUUID = uuid
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
await waitJobs(servers)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2021-02-02 04:07:46 -05:00
|
|
|
await checkHlsPlaylist(servers, videoAudioUUID, hlsOnly, [ DEFAULT_AUDIO_RESOLUTION, 360, 240 ])
|
2019-11-15 09:06:03 -05:00
|
|
|
})
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
it('Should update the video', async function () {
|
|
|
|
this.timeout(10000)
|
2019-05-17 05:56:12 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].videos.update({ id: videoUUID, attributes: { name: 'video 1 updated' } })
|
2019-05-17 05:56:12 -04:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
await waitJobs(servers)
|
2019-05-17 05:56:12 -04:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
await checkHlsPlaylist(servers, videoUUID, hlsOnly)
|
|
|
|
})
|
2019-05-17 05:56:12 -04:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
it('Should delete videos', async function () {
|
|
|
|
this.timeout(10000)
|
2019-05-17 09:51:42 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].videos.remove({ id: videoUUID })
|
|
|
|
await servers[0].videos.remove({ id: videoAudioUUID })
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
await waitJobs(servers)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.videos.get({ id: videoUUID, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
|
|
|
|
await server.videos.get({ id: videoAudioUUID, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
|
2019-11-15 09:06:03 -05:00
|
|
|
}
|
|
|
|
})
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
it('Should have the playlists/segment deleted from the disk', async function () {
|
|
|
|
for (const server of servers) {
|
|
|
|
await checkDirectoryIsEmpty(server, 'videos')
|
|
|
|
await checkDirectoryIsEmpty(server, join('streaming-playlists', 'hls'))
|
|
|
|
}
|
|
|
|
})
|
2019-05-17 09:51:42 -04:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
it('Should have an empty tmp directory', async function () {
|
|
|
|
for (const server of servers) {
|
|
|
|
await checkTmpIsEmpty(server)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
const configOverride = {
|
|
|
|
transcoding: {
|
|
|
|
enabled: true,
|
|
|
|
allow_audio_files: true,
|
|
|
|
hls: {
|
|
|
|
enabled: true
|
|
|
|
}
|
|
|
|
}
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
2021-07-16 03:47:51 -04:00
|
|
|
servers = await createMultipleServers(2, configOverride)
|
2019-11-15 09:06:03 -05:00
|
|
|
|
|
|
|
// Get the access tokens
|
|
|
|
await setAccessTokensToServers(servers)
|
|
|
|
|
|
|
|
// Server 1 and server 2 follow each other
|
|
|
|
await doubleFollow(servers[0], servers[1])
|
2019-01-29 02:37:25 -05:00
|
|
|
})
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
describe('With WebTorrent & HLS enabled', function () {
|
|
|
|
runTestSuite(false)
|
2019-01-29 02:37:25 -05:00
|
|
|
})
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
describe('With only HLS enabled', function () {
|
|
|
|
|
|
|
|
before(async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].config.updateCustomSubConfig({
|
2021-07-07 05:51:09 -04:00
|
|
|
newConfig: {
|
|
|
|
transcoding: {
|
|
|
|
enabled: true,
|
|
|
|
allowAudioFiles: true,
|
|
|
|
resolutions: {
|
|
|
|
'240p': true,
|
|
|
|
'360p': true,
|
|
|
|
'480p': true,
|
|
|
|
'720p': true,
|
|
|
|
'1080p': true,
|
|
|
|
'1440p': true,
|
|
|
|
'2160p': true
|
|
|
|
},
|
|
|
|
hls: {
|
|
|
|
enabled: true
|
|
|
|
},
|
|
|
|
webtorrent: {
|
|
|
|
enabled: false
|
|
|
|
}
|
2019-11-15 09:06:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
runTestSuite(true)
|
2019-01-29 02:37:25 -05:00
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests(servers)
|
2019-01-29 02:37:25 -05:00
|
|
|
})
|
|
|
|
})
|