2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/no-floating-promises */
|
2017-12-29 04:46:27 -05:00
|
|
|
|
|
|
|
import { expect } from 'chai'
|
2021-07-15 04:02:54 -04:00
|
|
|
import { pathExists, readdir } from 'fs-extra'
|
2021-06-08 03:33:03 -04:00
|
|
|
import { join } from 'path'
|
|
|
|
import { getLowercaseExtension } from '@server/helpers/core-utils'
|
2021-02-25 07:56:07 -05:00
|
|
|
import { HttpStatusCode } from '@shared/core-utils'
|
2021-07-15 04:02:54 -04:00
|
|
|
import { VIDEO_CATEGORIES, VIDEO_LANGUAGES, VIDEO_LICENCES, VIDEO_PRIVACIES } from '../../../server/initializers/constants'
|
|
|
|
import { dateIsValid, testImage, webtorrentAdd } from '../miscs'
|
|
|
|
import { makeRawRequest } from '../requests/requests'
|
|
|
|
import { waitJobs } from '../server'
|
2020-06-16 09:52:05 -04:00
|
|
|
import { ServerInfo } from '../server/servers'
|
2021-07-15 04:02:54 -04:00
|
|
|
import { VideoEdit } from './videos-command'
|
2020-11-04 08:16:57 -05:00
|
|
|
|
2018-10-03 10:43:57 -04:00
|
|
|
async function checkVideoFilesWereRemoved (
|
|
|
|
videoUUID: string,
|
2021-07-13 03:43:59 -04:00
|
|
|
server: ServerInfo,
|
2019-01-29 02:37:25 -05:00
|
|
|
directories = [
|
|
|
|
'redundancy',
|
|
|
|
'videos',
|
|
|
|
'thumbnails',
|
|
|
|
'torrents',
|
|
|
|
'previews',
|
|
|
|
'captions',
|
|
|
|
join('playlists', 'hls'),
|
|
|
|
join('redundancy', 'hls')
|
|
|
|
]
|
2018-10-03 10:43:57 -04:00
|
|
|
) {
|
|
|
|
for (const directory of directories) {
|
2021-07-13 03:43:59 -04:00
|
|
|
const directoryPath = server.serversCommand.buildDirectory(directory)
|
2018-01-18 04:53:54 -05:00
|
|
|
|
2019-03-05 04:58:44 -05:00
|
|
|
const directoryExists = await pathExists(directoryPath)
|
|
|
|
if (directoryExists === false) continue
|
2018-01-18 04:53:54 -05:00
|
|
|
|
2018-08-27 10:23:34 -04:00
|
|
|
const files = await readdir(directoryPath)
|
2018-01-18 04:53:54 -05:00
|
|
|
for (const file of files) {
|
2021-02-01 05:18:50 -05:00
|
|
|
expect(file, `File ${file} should not exist in ${directoryPath}`).to.not.contain(videoUUID)
|
2018-01-18 04:53:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
function checkUploadVideoParam (
|
2021-07-15 04:02:54 -04:00
|
|
|
server: ServerInfo,
|
2021-05-10 05:13:41 -04:00
|
|
|
token: string,
|
2021-07-15 04:02:54 -04:00
|
|
|
attributes: Partial<VideoEdit>,
|
|
|
|
expectedStatus = HttpStatusCode.OK_200,
|
2021-05-10 05:13:41 -04:00
|
|
|
mode: 'legacy' | 'resumable' = 'legacy'
|
|
|
|
) {
|
|
|
|
return mode === 'legacy'
|
2021-07-15 04:02:54 -04:00
|
|
|
? server.videosCommand.buildLegacyUpload({ token, attributes, expectedStatus })
|
|
|
|
: server.videosCommand.buildResumeUpload({ token, attributes, expectedStatus })
|
2017-09-07 09:27:35 -04:00
|
|
|
}
|
|
|
|
|
2017-12-29 04:46:27 -05:00
|
|
|
async function completeVideoCheck (
|
2021-07-15 04:02:54 -04:00
|
|
|
server: ServerInfo,
|
2017-12-29 04:46:27 -05:00
|
|
|
video: any,
|
|
|
|
attributes: {
|
|
|
|
name: string
|
|
|
|
category: number
|
|
|
|
licence: number
|
2018-04-23 08:39:52 -04:00
|
|
|
language: string
|
2017-12-29 04:46:27 -05:00
|
|
|
nsfw: boolean
|
2018-01-03 04:12:36 -05:00
|
|
|
commentsEnabled: boolean
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled: boolean
|
2017-12-29 04:46:27 -05:00
|
|
|
description: string
|
2018-05-28 12:50:44 -04:00
|
|
|
publishedAt?: string
|
2018-02-15 08:46:26 -05:00
|
|
|
support: string
|
2020-01-31 10:56:52 -05:00
|
|
|
originallyPublishedAt?: string
|
2018-03-12 06:06:15 -04:00
|
|
|
account: {
|
|
|
|
name: string
|
|
|
|
host: string
|
|
|
|
}
|
2018-08-22 05:51:39 -04:00
|
|
|
isLocal: boolean
|
|
|
|
tags: string[]
|
|
|
|
privacy: number
|
|
|
|
likes?: number
|
|
|
|
dislikes?: number
|
|
|
|
duration: number
|
2017-12-29 04:46:27 -05:00
|
|
|
channel: {
|
2018-08-22 05:51:39 -04:00
|
|
|
displayName: string
|
|
|
|
name: string
|
2017-12-29 05:51:55 -05:00
|
|
|
description
|
2017-12-29 04:46:27 -05:00
|
|
|
isLocal: boolean
|
|
|
|
}
|
2018-08-22 05:51:39 -04:00
|
|
|
fixture: string
|
2017-12-29 04:46:27 -05:00
|
|
|
files: {
|
|
|
|
resolution: number
|
|
|
|
size: number
|
2020-01-31 10:56:52 -05:00
|
|
|
}[]
|
2018-02-13 12:17:05 -05:00
|
|
|
thumbnailfile?: string
|
|
|
|
previewfile?: string
|
2017-12-29 04:46:27 -05:00
|
|
|
}
|
|
|
|
) {
|
2017-12-29 05:51:55 -05:00
|
|
|
if (!attributes.likes) attributes.likes = 0
|
|
|
|
if (!attributes.dislikes) attributes.dislikes = 0
|
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const host = new URL(server.url).host
|
2021-02-16 10:25:53 -05:00
|
|
|
const originHost = attributes.account.host
|
|
|
|
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(video.name).to.equal(attributes.name)
|
2018-03-19 06:04:40 -04:00
|
|
|
expect(video.category.id).to.equal(attributes.category)
|
2018-04-23 08:39:52 -04:00
|
|
|
expect(video.category.label).to.equal(attributes.category !== null ? VIDEO_CATEGORIES[attributes.category] : 'Misc')
|
2018-03-19 06:04:40 -04:00
|
|
|
expect(video.licence.id).to.equal(attributes.licence)
|
2018-04-23 08:39:52 -04:00
|
|
|
expect(video.licence.label).to.equal(attributes.licence !== null ? VIDEO_LICENCES[attributes.licence] : 'Unknown')
|
2018-03-19 06:04:40 -04:00
|
|
|
expect(video.language.id).to.equal(attributes.language)
|
2018-04-23 08:39:52 -04:00
|
|
|
expect(video.language.label).to.equal(attributes.language !== null ? VIDEO_LANGUAGES[attributes.language] : 'Unknown')
|
2018-04-19 08:52:10 -04:00
|
|
|
expect(video.privacy.id).to.deep.equal(attributes.privacy)
|
|
|
|
expect(video.privacy.label).to.deep.equal(VIDEO_PRIVACIES[attributes.privacy])
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(video.nsfw).to.equal(attributes.nsfw)
|
|
|
|
expect(video.description).to.equal(attributes.description)
|
2018-04-25 08:32:19 -04:00
|
|
|
expect(video.account.id).to.be.a('number')
|
2018-03-12 06:06:15 -04:00
|
|
|
expect(video.account.host).to.equal(attributes.account.host)
|
|
|
|
expect(video.account.name).to.equal(attributes.account.name)
|
2018-08-22 05:51:39 -04:00
|
|
|
expect(video.channel.displayName).to.equal(attributes.channel.displayName)
|
|
|
|
expect(video.channel.name).to.equal(attributes.channel.name)
|
2017-12-29 05:51:55 -05:00
|
|
|
expect(video.likes).to.equal(attributes.likes)
|
|
|
|
expect(video.dislikes).to.equal(attributes.dislikes)
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(video.isLocal).to.equal(attributes.isLocal)
|
2017-12-29 05:51:55 -05:00
|
|
|
expect(video.duration).to.equal(attributes.duration)
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(dateIsValid(video.createdAt)).to.be.true
|
2018-04-04 04:21:36 -04:00
|
|
|
expect(dateIsValid(video.publishedAt)).to.be.true
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(dateIsValid(video.updatedAt)).to.be.true
|
|
|
|
|
2018-05-28 12:50:44 -04:00
|
|
|
if (attributes.publishedAt) {
|
|
|
|
expect(video.publishedAt).to.equal(attributes.publishedAt)
|
|
|
|
}
|
|
|
|
|
2019-02-11 08:41:55 -05:00
|
|
|
if (attributes.originallyPublishedAt) {
|
|
|
|
expect(video.originallyPublishedAt).to.equal(attributes.originallyPublishedAt)
|
|
|
|
} else {
|
|
|
|
expect(video.originallyPublishedAt).to.be.null
|
|
|
|
}
|
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const videoDetails = await server.videosCommand.get({ id: video.uuid })
|
2017-12-29 04:46:27 -05:00
|
|
|
|
|
|
|
expect(videoDetails.files).to.have.lengthOf(attributes.files.length)
|
|
|
|
expect(videoDetails.tags).to.deep.equal(attributes.tags)
|
2018-03-12 06:29:46 -04:00
|
|
|
expect(videoDetails.account.name).to.equal(attributes.account.name)
|
|
|
|
expect(videoDetails.account.host).to.equal(attributes.account.host)
|
2018-08-22 05:51:39 -04:00
|
|
|
expect(video.channel.displayName).to.equal(attributes.channel.displayName)
|
|
|
|
expect(video.channel.name).to.equal(attributes.channel.name)
|
2018-05-11 09:10:13 -04:00
|
|
|
expect(videoDetails.channel.host).to.equal(attributes.account.host)
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(videoDetails.channel.isLocal).to.equal(attributes.channel.isLocal)
|
2018-05-11 09:10:13 -04:00
|
|
|
expect(dateIsValid(videoDetails.channel.createdAt.toString())).to.be.true
|
|
|
|
expect(dateIsValid(videoDetails.channel.updatedAt.toString())).to.be.true
|
|
|
|
expect(videoDetails.commentsEnabled).to.equal(attributes.commentsEnabled)
|
2018-10-08 08:45:22 -04:00
|
|
|
expect(videoDetails.downloadEnabled).to.equal(attributes.downloadEnabled)
|
2017-12-29 04:46:27 -05:00
|
|
|
|
|
|
|
for (const attributeFile of attributes.files) {
|
2018-03-19 07:36:41 -04:00
|
|
|
const file = videoDetails.files.find(f => f.resolution.id === attributeFile.resolution)
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(file).not.to.be.undefined
|
|
|
|
|
2021-06-08 03:33:03 -04:00
|
|
|
let extension = getLowercaseExtension(attributes.fixture)
|
2019-04-26 02:50:52 -04:00
|
|
|
// Transcoding enabled: extension will always be .mp4
|
|
|
|
if (attributes.files.length > 1) extension = '.mp4'
|
2017-12-29 05:51:55 -05:00
|
|
|
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(file.magnetUri).to.have.lengthOf.above(2)
|
2021-02-16 10:25:53 -05:00
|
|
|
|
|
|
|
expect(file.torrentDownloadUrl).to.equal(`http://${host}/download/torrents/${videoDetails.uuid}-${file.resolution.id}.torrent`)
|
|
|
|
expect(file.torrentUrl).to.equal(`http://${host}/lazy-static/torrents/${videoDetails.uuid}-${file.resolution.id}.torrent`)
|
|
|
|
|
|
|
|
expect(file.fileUrl).to.equal(`http://${originHost}/static/webseed/${videoDetails.uuid}-${file.resolution.id}${extension}`)
|
|
|
|
expect(file.fileDownloadUrl).to.equal(`http://${originHost}/download/videos/${videoDetails.uuid}-${file.resolution.id}${extension}`)
|
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
makeRawRequest(file.torrentUrl, 200),
|
|
|
|
makeRawRequest(file.torrentDownloadUrl, 200),
|
|
|
|
makeRawRequest(file.metadataUrl, 200),
|
|
|
|
// Backward compatibility
|
|
|
|
makeRawRequest(`http://${originHost}/static/torrents/${videoDetails.uuid}-${file.resolution.id}.torrent`, 200)
|
|
|
|
])
|
|
|
|
|
2018-03-19 06:04:40 -04:00
|
|
|
expect(file.resolution.id).to.equal(attributeFile.resolution)
|
|
|
|
expect(file.resolution.label).to.equal(attributeFile.resolution + 'p')
|
2017-12-29 05:51:55 -05:00
|
|
|
|
|
|
|
const minSize = attributeFile.size - ((10 * attributeFile.size) / 100)
|
|
|
|
const maxSize = attributeFile.size + ((10 * attributeFile.size) / 100)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(
|
|
|
|
file.size,
|
|
|
|
'File size for resolution ' + file.resolution.label + ' outside confidence interval (' + minSize + '> size <' + maxSize + ')'
|
|
|
|
).to.be.above(minSize).and.below(maxSize)
|
2017-12-29 04:46:27 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
const torrent = await webtorrentAdd(file.magnetUri, true)
|
2017-12-29 04:46:27 -05:00
|
|
|
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('')
|
|
|
|
}
|
2020-01-23 08:23:19 -05:00
|
|
|
|
2021-06-02 04:41:46 -04:00
|
|
|
expect(videoDetails.thumbnailPath).to.exist
|
2021-07-15 04:02:54 -04:00
|
|
|
await testImage(server.url, attributes.thumbnailfile || attributes.fixture, videoDetails.thumbnailPath)
|
2020-01-23 08:23:19 -05:00
|
|
|
|
|
|
|
if (attributes.previewfile) {
|
2021-06-02 04:41:46 -04:00
|
|
|
expect(videoDetails.previewPath).to.exist
|
2021-07-15 04:02:54 -04:00
|
|
|
await testImage(server.url, attributes.previewfile, videoDetails.previewPath)
|
2020-01-23 08:23:19 -05:00
|
|
|
}
|
2017-12-29 04:46:27 -05:00
|
|
|
}
|
|
|
|
|
2020-06-16 09:52:05 -04:00
|
|
|
// serverNumber starts from 1
|
2021-07-15 04:02:54 -04:00
|
|
|
async function uploadRandomVideoOnServers (
|
|
|
|
servers: ServerInfo[],
|
|
|
|
serverNumber: number,
|
|
|
|
additionalParams?: VideoEdit & { prefixName?: string }
|
|
|
|
) {
|
2020-06-16 09:52:05 -04:00
|
|
|
const server = servers.find(s => s.serverNumber === serverNumber)
|
2021-07-15 04:02:54 -04:00
|
|
|
const res = await server.videosCommand.randomUpload({ wait: false, ...additionalParams })
|
2020-06-16 09:52:05 -04:00
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
2017-09-04 15:21:47 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2021-05-10 05:13:41 -04:00
|
|
|
checkUploadVideoParam,
|
2018-01-18 04:53:54 -05:00
|
|
|
completeVideoCheck,
|
2021-07-15 04:02:54 -04:00
|
|
|
uploadRandomVideoOnServers,
|
|
|
|
checkVideoFilesWereRemoved
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|