2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2017-12-27 14:03:37 -05:00
|
|
|
import 'mocha'
|
2021-05-11 05:27:40 -04:00
|
|
|
import * as chai from 'chai'
|
2021-08-27 08:32:44 -04:00
|
|
|
import request from 'supertest'
|
2017-09-04 15:21:47 -04:00
|
|
|
import {
|
2018-12-11 03:16:41 -05:00
|
|
|
checkTmpIsEmpty,
|
2019-04-25 11:14:49 -04:00
|
|
|
checkVideoFilesWereRemoved,
|
2021-12-17 05:58:15 -05:00
|
|
|
completeVideoCheck,
|
|
|
|
dateIsValid,
|
|
|
|
saveVideoInServers,
|
|
|
|
testImage
|
|
|
|
} from '@server/tests/shared'
|
|
|
|
import { buildAbsoluteFixturePath, wait } from '@shared/core-utils'
|
|
|
|
import { HttpStatusCode, VideoCommentThreadTree, VideoPrivacy } from '@shared/models'
|
|
|
|
import {
|
2019-04-25 11:14:49 -04:00
|
|
|
cleanupTests,
|
2021-07-16 08:27:30 -04:00
|
|
|
createMultipleServers,
|
2018-03-12 06:06:15 -04:00
|
|
|
doubleFollow,
|
2022-03-01 02:32:49 -05:00
|
|
|
makeGetRequest,
|
2021-07-16 03:47:51 -04:00
|
|
|
PeerTubeServer,
|
2018-03-12 06:06:15 -04:00
|
|
|
setAccessTokensToServers,
|
2022-02-28 02:34:43 -05:00
|
|
|
setDefaultAccountAvatar,
|
|
|
|
setDefaultChannelAvatar,
|
2021-07-09 08:15:11 -04:00
|
|
|
waitJobs,
|
2018-03-12 06:06:15 -04:00
|
|
|
webtorrentAdd
|
2021-12-17 03:29:23 -05:00
|
|
|
} from '@shared/server-commands'
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
const expect = chai.expect
|
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
describe('Test multiple servers', function () {
|
2021-07-16 03:47:51 -04:00
|
|
|
let servers: PeerTubeServer[] = []
|
2017-09-04 15:21:47 -04:00
|
|
|
const toRemove = []
|
|
|
|
let videoUUID = ''
|
2017-10-24 13:41:30 -04:00
|
|
|
let videoChannelId: number
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
servers = await createMultipleServers(3)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
// Get the access tokens
|
|
|
|
await setAccessTokensToServers(servers)
|
|
|
|
|
2018-04-24 11:05:32 -04:00
|
|
|
{
|
|
|
|
const videoChannel = {
|
2018-08-17 09:45:42 -04:00
|
|
|
name: 'super_channel_name',
|
2018-04-26 10:11:38 -04:00
|
|
|
displayName: 'my channel',
|
2018-04-24 11:05:32 -04:00
|
|
|
description: 'super channel'
|
|
|
|
}
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].channels.create({ attributes: videoChannel })
|
2022-02-28 02:34:43 -05:00
|
|
|
await setDefaultChannelAvatar(servers[0], videoChannel.name)
|
|
|
|
await setDefaultAccountAvatar(servers)
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await servers[0].channels.list({ start: 0, count: 1 })
|
2021-07-09 05:21:30 -04:00
|
|
|
videoChannelId = data[0].id
|
2017-10-24 13:41:30 -04:00
|
|
|
}
|
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
// Server 1 and server 2 follow each other
|
|
|
|
await doubleFollow(servers[0], servers[1])
|
|
|
|
// Server 1 and server 3 follow each other
|
|
|
|
await doubleFollow(servers[0], servers[2])
|
|
|
|
// Server 2 and server 3 follow each other
|
|
|
|
await doubleFollow(servers[1], servers[2])
|
2017-09-04 15:21:47 -04:00
|
|
|
})
|
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
it('Should not have videos for all servers', async function () {
|
2017-09-04 15:21:47 -04:00
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await server.videos.list()
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(data).to.be.an('array')
|
|
|
|
expect(data.length).to.equal(0)
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
describe('Should upload the video and propagate on each server', function () {
|
|
|
|
it('Should upload the video on server 1 and propagate on each server', async function () {
|
2017-11-24 08:39:14 -05:00
|
|
|
this.timeout(25000)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const attributes = {
|
2017-11-17 09:20:42 -05:00
|
|
|
name: 'my super name for server 1',
|
2017-09-04 15:21:47 -04:00
|
|
|
category: 5,
|
|
|
|
licence: 4,
|
2018-04-23 08:39:52 -04:00
|
|
|
language: 'ja',
|
2017-09-04 15:21:47 -04:00
|
|
|
nsfw: true,
|
2017-11-17 09:20:42 -05:00
|
|
|
description: 'my super description for server 1',
|
2018-02-15 08:46:26 -05:00
|
|
|
support: 'my super support text for server 1',
|
2019-02-11 08:41:55 -05:00
|
|
|
originallyPublishedAt: '2019-02-10T13:38:14.449Z',
|
2017-09-04 15:21:47 -04:00
|
|
|
tags: [ 'tag1p1', 'tag2p1' ],
|
2017-10-24 13:41:30 -04:00
|
|
|
channelId: videoChannelId,
|
2017-09-04 15:21:47 -04:00
|
|
|
fixture: 'video_short1.webm'
|
|
|
|
}
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].videos.upload({ attributes })
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
// All servers should have this video
|
2018-05-28 12:50:44 -04:00
|
|
|
let publishedAt: string = null
|
2017-09-04 15:21:47 -04:00
|
|
|
for (const server of servers) {
|
2019-04-26 02:50:52 -04:00
|
|
|
const isLocal = server.port === servers[0].port
|
2017-12-29 05:51:55 -05:00
|
|
|
const checkAttributes = {
|
|
|
|
name: 'my super name for server 1',
|
|
|
|
category: 5,
|
|
|
|
licence: 4,
|
2018-04-23 08:39:52 -04:00
|
|
|
language: 'ja',
|
2017-12-29 05:51:55 -05:00
|
|
|
nsfw: true,
|
|
|
|
description: 'my super description for server 1',
|
2018-02-15 08:46:26 -05:00
|
|
|
support: 'my super support text for server 1',
|
2019-02-11 08:41:55 -05:00
|
|
|
originallyPublishedAt: '2019-02-10T13:38:14.449Z',
|
2018-03-12 06:06:15 -04:00
|
|
|
account: {
|
|
|
|
name: 'root',
|
2019-04-25 11:14:49 -04:00
|
|
|
host: 'localhost:' + servers[0].port
|
2018-03-12 06:06:15 -04:00
|
|
|
},
|
2017-12-29 05:51:55 -05:00
|
|
|
isLocal,
|
2018-05-28 12:50:44 -04:00
|
|
|
publishedAt,
|
2017-12-29 05:51:55 -05:00
|
|
|
duration: 10,
|
|
|
|
tags: [ 'tag1p1', 'tag2p1' ],
|
|
|
|
privacy: VideoPrivacy.PUBLIC,
|
2018-01-03 04:12:36 -05:00
|
|
|
commentsEnabled: true,
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled: true,
|
2017-12-29 05:51:55 -05:00
|
|
|
channel: {
|
2018-08-22 05:51:39 -04:00
|
|
|
displayName: 'my channel',
|
|
|
|
name: 'super_channel_name',
|
2017-12-29 05:51:55 -05:00
|
|
|
description: 'super channel',
|
|
|
|
isLocal
|
|
|
|
},
|
2017-12-29 08:32:51 -05:00
|
|
|
fixture: 'video_short1.webm',
|
2017-12-29 05:51:55 -05:00
|
|
|
files: [
|
|
|
|
{
|
|
|
|
resolution: 720,
|
|
|
|
size: 572456
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await server.videos.list()
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(data).to.be.an('array')
|
|
|
|
expect(data.length).to.equal(1)
|
|
|
|
const video = data[0]
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
await completeVideoCheck(server, video, checkAttributes)
|
|
|
|
publishedAt = video.publishedAt as string
|
2022-03-01 02:32:49 -05:00
|
|
|
|
|
|
|
expect(video.channel.avatars).to.have.lengthOf(2)
|
|
|
|
expect(video.account.avatars).to.have.lengthOf(2)
|
|
|
|
|
|
|
|
for (const image of [ ...video.channel.avatars, ...video.account.avatars ]) {
|
|
|
|
expect(image.createdAt).to.exist
|
|
|
|
expect(image.updatedAt).to.exist
|
|
|
|
expect(image.width).to.be.above(20).and.below(1000)
|
|
|
|
expect(image.path).to.exist
|
|
|
|
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: image.path,
|
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
it('Should upload the video on server 2 and propagate on each server', async function () {
|
2020-11-16 05:55:17 -05:00
|
|
|
this.timeout(100000)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2017-10-24 13:41:30 -04:00
|
|
|
const user = {
|
|
|
|
username: 'user1',
|
|
|
|
password: 'super_password'
|
|
|
|
}
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[1].users.create({ username: user.username, password: user.password })
|
|
|
|
const userAccessToken = await servers[1].login.getAccessToken(user)
|
2017-10-24 13:41:30 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const attributes = {
|
2017-11-17 09:20:42 -05:00
|
|
|
name: 'my super name for server 2',
|
2017-09-04 15:21:47 -04:00
|
|
|
category: 4,
|
|
|
|
licence: 3,
|
2018-04-23 08:39:52 -04:00
|
|
|
language: 'de',
|
2017-09-04 15:21:47 -04:00
|
|
|
nsfw: true,
|
2017-11-17 09:20:42 -05:00
|
|
|
description: 'my super description for server 2',
|
2018-02-15 08:46:26 -05:00
|
|
|
support: 'my super support text for server 2',
|
2017-09-04 15:21:47 -04:00
|
|
|
tags: [ 'tag1p2', 'tag2p2', 'tag3p2' ],
|
2018-02-13 12:17:05 -05:00
|
|
|
fixture: 'video_short2.webm',
|
|
|
|
thumbnailfile: 'thumbnail.jpg',
|
|
|
|
previewfile: 'preview.jpg'
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[1].videos.upload({ token: userAccessToken, attributes, mode: 'resumable' })
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2017-11-17 09:42:12 -05:00
|
|
|
// Transcoding
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
// All servers should have this video
|
2017-09-04 15:21:47 -04:00
|
|
|
for (const server of servers) {
|
2019-04-25 11:14:49 -04:00
|
|
|
const isLocal = server.url === 'http://localhost:' + servers[1].port
|
2017-12-29 05:51:55 -05:00
|
|
|
const checkAttributes = {
|
|
|
|
name: 'my super name for server 2',
|
|
|
|
category: 4,
|
|
|
|
licence: 3,
|
2018-04-23 08:39:52 -04:00
|
|
|
language: 'de',
|
2017-12-29 05:51:55 -05:00
|
|
|
nsfw: true,
|
|
|
|
description: 'my super description for server 2',
|
2018-02-15 08:46:26 -05:00
|
|
|
support: 'my super support text for server 2',
|
2018-03-12 06:06:15 -04:00
|
|
|
account: {
|
|
|
|
name: 'user1',
|
2019-04-25 11:14:49 -04:00
|
|
|
host: 'localhost:' + servers[1].port
|
2018-03-12 06:06:15 -04:00
|
|
|
},
|
2017-12-29 05:51:55 -05:00
|
|
|
isLocal,
|
2018-01-03 04:12:36 -05:00
|
|
|
commentsEnabled: true,
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled: true,
|
2017-12-29 05:51:55 -05:00
|
|
|
duration: 5,
|
|
|
|
tags: [ 'tag1p2', 'tag2p2', 'tag3p2' ],
|
|
|
|
privacy: VideoPrivacy.PUBLIC,
|
|
|
|
channel: {
|
2018-08-22 05:51:39 -04:00
|
|
|
displayName: 'Main user1 channel',
|
|
|
|
name: 'user1_channel',
|
2017-12-29 05:51:55 -05:00
|
|
|
description: 'super channel',
|
|
|
|
isLocal
|
|
|
|
},
|
|
|
|
fixture: 'video_short2.webm',
|
|
|
|
files: [
|
|
|
|
{
|
|
|
|
resolution: 240,
|
2020-11-24 10:24:50 -05:00
|
|
|
size: 270000
|
2017-12-29 05:51:55 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
resolution: 360,
|
2020-11-24 10:24:50 -05:00
|
|
|
size: 359000
|
2017-12-29 05:51:55 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
resolution: 480,
|
2020-11-24 10:24:50 -05:00
|
|
|
size: 465000
|
2017-12-29 05:51:55 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
resolution: 720,
|
2022-02-28 02:34:43 -05:00
|
|
|
size: 750000
|
2017-12-29 05:51:55 -05:00
|
|
|
}
|
2018-02-13 12:17:05 -05:00
|
|
|
],
|
|
|
|
thumbnailfile: 'thumbnail',
|
|
|
|
previewfile: 'preview'
|
2017-12-29 05:51:55 -05:00
|
|
|
}
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await server.videos.list()
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(data).to.be.an('array')
|
|
|
|
expect(data.length).to.equal(2)
|
|
|
|
const video = data[1]
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
await completeVideoCheck(server, video, checkAttributes)
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
it('Should upload two videos on server 3 and propagate on each server', async function () {
|
2017-09-04 15:21:47 -04:00
|
|
|
this.timeout(45000)
|
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
{
|
|
|
|
const attributes = {
|
|
|
|
name: 'my super name for server 3',
|
|
|
|
category: 6,
|
|
|
|
licence: 5,
|
|
|
|
language: 'de',
|
|
|
|
nsfw: true,
|
|
|
|
description: 'my super description for server 3',
|
|
|
|
support: 'my super support text for server 3',
|
|
|
|
tags: [ 'tag1p3' ],
|
|
|
|
fixture: 'video_short3.webm'
|
|
|
|
}
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[2].videos.upload({ attributes })
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
2021-07-15 04:02:54 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
const attributes = {
|
|
|
|
name: 'my super name for server 3-2',
|
|
|
|
category: 7,
|
|
|
|
licence: 6,
|
|
|
|
language: 'ko',
|
|
|
|
nsfw: false,
|
|
|
|
description: 'my super description for server 3-2',
|
|
|
|
support: 'my super support text for server 3-2',
|
|
|
|
tags: [ 'tag2p3', 'tag3p3', 'tag4p3' ],
|
|
|
|
fixture: 'video_short.webm'
|
|
|
|
}
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[2].videos.upload({ attributes })
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
// All servers should have this video
|
2017-09-04 15:21:47 -04:00
|
|
|
for (const server of servers) {
|
2019-04-25 11:14:49 -04:00
|
|
|
const isLocal = server.url === 'http://localhost:' + servers[2].port
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await server.videos.list()
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(data).to.be.an('array')
|
|
|
|
expect(data.length).to.equal(4)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
// We not sure about the order of the two last uploads
|
|
|
|
let video1 = null
|
|
|
|
let video2 = null
|
2021-07-15 04:02:54 -04:00
|
|
|
if (data[2].name === 'my super name for server 3') {
|
|
|
|
video1 = data[2]
|
|
|
|
video2 = data[3]
|
2017-09-04 15:21:47 -04:00
|
|
|
} else {
|
2021-07-15 04:02:54 -04:00
|
|
|
video1 = data[3]
|
|
|
|
video2 = data[2]
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
2017-12-29 05:51:55 -05:00
|
|
|
const checkAttributesVideo1 = {
|
|
|
|
name: 'my super name for server 3',
|
|
|
|
category: 6,
|
|
|
|
licence: 5,
|
2018-04-23 08:39:52 -04:00
|
|
|
language: 'de',
|
2017-12-29 05:51:55 -05:00
|
|
|
nsfw: true,
|
|
|
|
description: 'my super description for server 3',
|
2018-02-15 08:46:26 -05:00
|
|
|
support: 'my super support text for server 3',
|
2018-03-12 06:06:15 -04:00
|
|
|
account: {
|
|
|
|
name: 'root',
|
2019-04-25 11:14:49 -04:00
|
|
|
host: 'localhost:' + servers[2].port
|
2018-03-12 06:06:15 -04:00
|
|
|
},
|
2017-12-29 05:51:55 -05:00
|
|
|
isLocal,
|
|
|
|
duration: 5,
|
2018-01-03 04:12:36 -05:00
|
|
|
commentsEnabled: true,
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled: true,
|
2017-12-29 05:51:55 -05:00
|
|
|
tags: [ 'tag1p3' ],
|
|
|
|
privacy: VideoPrivacy.PUBLIC,
|
|
|
|
channel: {
|
2018-08-22 05:51:39 -04:00
|
|
|
displayName: 'Main root channel',
|
|
|
|
name: 'root_channel',
|
2017-12-29 05:51:55 -05:00
|
|
|
description: '',
|
|
|
|
isLocal
|
|
|
|
},
|
|
|
|
fixture: 'video_short3.webm',
|
|
|
|
files: [
|
|
|
|
{
|
|
|
|
resolution: 720,
|
|
|
|
size: 292677
|
|
|
|
}
|
|
|
|
]
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
2021-07-15 04:02:54 -04:00
|
|
|
await completeVideoCheck(server, video1, checkAttributesVideo1)
|
2017-12-29 05:51:55 -05:00
|
|
|
|
|
|
|
const checkAttributesVideo2 = {
|
|
|
|
name: 'my super name for server 3-2',
|
|
|
|
category: 7,
|
|
|
|
licence: 6,
|
2018-04-23 08:39:52 -04:00
|
|
|
language: 'ko',
|
2017-12-29 05:51:55 -05:00
|
|
|
nsfw: false,
|
|
|
|
description: 'my super description for server 3-2',
|
2018-02-15 08:46:26 -05:00
|
|
|
support: 'my super support text for server 3-2',
|
2018-03-12 06:06:15 -04:00
|
|
|
account: {
|
|
|
|
name: 'root',
|
2019-04-25 11:14:49 -04:00
|
|
|
host: 'localhost:' + servers[2].port
|
2018-03-12 06:06:15 -04:00
|
|
|
},
|
2018-01-03 04:12:36 -05:00
|
|
|
commentsEnabled: true,
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled: true,
|
2017-12-29 05:51:55 -05:00
|
|
|
isLocal,
|
|
|
|
duration: 5,
|
|
|
|
tags: [ 'tag2p3', 'tag3p3', 'tag4p3' ],
|
|
|
|
privacy: VideoPrivacy.PUBLIC,
|
|
|
|
channel: {
|
2018-08-22 05:51:39 -04:00
|
|
|
displayName: 'Main root channel',
|
|
|
|
name: 'root_channel',
|
2017-12-29 05:51:55 -05:00
|
|
|
description: '',
|
|
|
|
isLocal
|
|
|
|
},
|
2017-12-29 08:32:51 -05:00
|
|
|
fixture: 'video_short.webm',
|
2017-12-29 05:51:55 -05:00
|
|
|
files: [
|
|
|
|
{
|
|
|
|
resolution: 720,
|
|
|
|
size: 218910
|
|
|
|
}
|
|
|
|
]
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
2021-07-15 04:02:54 -04:00
|
|
|
await completeVideoCheck(server, video2, checkAttributesVideo2)
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-03-13 05:24:28 -04:00
|
|
|
describe('It should list local videos', function () {
|
|
|
|
it('Should list only local videos on server 1', async function () {
|
2021-10-27 08:37:04 -04:00
|
|
|
const { data, total } = await servers[0].videos.list({ isLocal: true })
|
2018-03-13 05:24:28 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(total).to.equal(1)
|
|
|
|
expect(data).to.be.an('array')
|
|
|
|
expect(data.length).to.equal(1)
|
|
|
|
expect(data[0].name).to.equal('my super name for server 1')
|
2018-03-13 05:24:28 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should list only local videos on server 2', async function () {
|
2021-10-27 08:37:04 -04:00
|
|
|
const { data, total } = await servers[1].videos.list({ isLocal: true })
|
2018-03-13 05:24:28 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(total).to.equal(1)
|
|
|
|
expect(data).to.be.an('array')
|
|
|
|
expect(data.length).to.equal(1)
|
|
|
|
expect(data[0].name).to.equal('my super name for server 2')
|
2018-03-13 05:24:28 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should list only local videos on server 3', async function () {
|
2021-10-27 08:37:04 -04:00
|
|
|
const { data, total } = await servers[2].videos.list({ isLocal: true })
|
2018-03-13 05:24:28 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(total).to.equal(2)
|
|
|
|
expect(data).to.be.an('array')
|
|
|
|
expect(data.length).to.equal(2)
|
|
|
|
expect(data[0].name).to.equal('my super name for server 3')
|
|
|
|
expect(data[1].name).to.equal('my super name for server 3-2')
|
2018-03-13 05:24:28 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-09-04 15:21:47 -04:00
|
|
|
describe('Should seed the uploaded video', function () {
|
2017-11-17 09:20:42 -05:00
|
|
|
it('Should add the file 1 by asking server 3', async function () {
|
2022-01-03 05:01:39 -05:00
|
|
|
this.timeout(30000)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await servers[2].videos.list()
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const video = data[0]
|
|
|
|
toRemove.push(data[2])
|
|
|
|
toRemove.push(data[3])
|
2017-10-24 13:41:30 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const videoDetails = await servers[2].videos.get({ id: video.id })
|
2017-12-29 05:51:55 -05:00
|
|
|
const torrent = await webtorrentAdd(videoDetails.files[0].magnetUri, true)
|
2017-09-04 15:21:47 -04: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('')
|
|
|
|
})
|
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
it('Should add the file 2 by asking server 1', async function () {
|
2022-01-03 05:01:39 -05:00
|
|
|
this.timeout(30000)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await servers[0].videos.list()
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const video = data[1]
|
2021-07-16 03:04:35 -04:00
|
|
|
const videoDetails = await servers[0].videos.get({ id: video.id })
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2017-12-29 05:51:55 -05:00
|
|
|
const torrent = await webtorrentAdd(videoDetails.files[0].magnetUri, true)
|
2017-09-04 15:21:47 -04: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('')
|
|
|
|
})
|
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
it('Should add the file 3 by asking server 2', async function () {
|
2022-01-03 05:01:39 -05:00
|
|
|
this.timeout(30000)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await servers[1].videos.list()
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const video = data[2]
|
2021-07-16 03:04:35 -04:00
|
|
|
const videoDetails = await servers[1].videos.get({ id: video.id })
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2017-12-29 05:51:55 -05:00
|
|
|
const torrent = await webtorrentAdd(videoDetails.files[0].magnetUri, true)
|
2017-09-04 15:21:47 -04: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('')
|
|
|
|
})
|
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
it('Should add the file 3-2 by asking server 1', async function () {
|
2022-01-03 05:01:39 -05:00
|
|
|
this.timeout(30000)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await servers[0].videos.list()
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const video = data[3]
|
2021-07-16 03:04:35 -04:00
|
|
|
const videoDetails = await servers[0].videos.get({ id: video.id })
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2017-10-24 13:41:30 -04:00
|
|
|
const torrent = await webtorrentAdd(videoDetails.files[0].magnetUri)
|
2017-09-04 15:21:47 -04: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('')
|
|
|
|
})
|
2017-10-09 05:06:13 -04:00
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
it('Should add the file 2 in 360p by asking server 1', async function () {
|
2022-01-03 05:01:39 -05:00
|
|
|
this.timeout(30000)
|
2017-10-09 05:06:13 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await servers[0].videos.list()
|
2017-10-09 05:06:13 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const video = data.find(v => v.name === 'my super name for server 2')
|
2021-07-16 03:04:35 -04:00
|
|
|
const videoDetails = await servers[0].videos.get({ id: video.id })
|
2017-10-24 13:41:30 -04:00
|
|
|
|
2018-03-19 07:36:41 -04:00
|
|
|
const file = videoDetails.files.find(f => f.resolution.id === 360)
|
2017-10-09 05:06:13 -04:00
|
|
|
expect(file).not.to.be.undefined
|
|
|
|
|
|
|
|
const torrent = await webtorrentAdd(file.magnetUri)
|
|
|
|
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('')
|
|
|
|
})
|
2017-09-04 15:21:47 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('Should update video views, likes and dislikes', function () {
|
2017-11-17 09:20:42 -05:00
|
|
|
let localVideosServer3 = []
|
|
|
|
let remoteVideosServer1 = []
|
|
|
|
let remoteVideosServer2 = []
|
|
|
|
let remoteVideosServer3 = []
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
before(async function () {
|
2021-07-15 04:02:54 -04:00
|
|
|
{
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await servers[0].videos.list()
|
2021-07-15 04:02:54 -04:00
|
|
|
remoteVideosServer1 = data.filter(video => video.isLocal === false).map(video => video.uuid)
|
|
|
|
}
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
{
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await servers[1].videos.list()
|
2021-07-15 04:02:54 -04:00
|
|
|
remoteVideosServer2 = data.filter(video => video.isLocal === false).map(video => video.uuid)
|
|
|
|
}
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
{
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await servers[2].videos.list()
|
2021-07-15 04:02:54 -04:00
|
|
|
localVideosServer3 = data.filter(video => video.isLocal === true).map(video => video.uuid)
|
|
|
|
remoteVideosServer3 = data.filter(video => video.isLocal === false).map(video => video.uuid)
|
|
|
|
}
|
2017-09-04 15:21:47 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should view multiple videos on owned servers', async function () {
|
2018-08-29 10:26:25 -04:00
|
|
|
this.timeout(30000)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2022-03-24 08:36:47 -04:00
|
|
|
await servers[2].views.simulateView({ id: localVideosServer3[0] })
|
2019-08-07 09:35:29 -04:00
|
|
|
await wait(1000)
|
2018-02-23 10:39:51 -05:00
|
|
|
|
2022-03-24 08:36:47 -04:00
|
|
|
await servers[2].views.simulateView({ id: localVideosServer3[0] })
|
|
|
|
await servers[2].views.simulateView({ id: localVideosServer3[1] })
|
2018-02-23 10:39:51 -05:00
|
|
|
|
2019-08-07 09:35:29 -04:00
|
|
|
await wait(1000)
|
2018-02-23 10:39:51 -05:00
|
|
|
|
2022-03-24 08:36:47 -04:00
|
|
|
await servers[2].views.simulateView({ id: localVideosServer3[0] })
|
|
|
|
await servers[2].views.simulateView({ id: localVideosServer3[0] })
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2022-03-24 08:36:47 -04:00
|
|
|
for (const server of servers) {
|
|
|
|
await server.debug.sendCommand({ body: { command: 'process-video-views-buffer' } })
|
|
|
|
}
|
2018-08-29 10:26:25 -04:00
|
|
|
|
2019-12-04 05:48:12 -05:00
|
|
|
await waitJobs(servers)
|
|
|
|
|
2017-09-04 15:21:47 -04:00
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await server.videos.list()
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const video0 = data.find(v => v.uuid === localVideosServer3[0])
|
|
|
|
const video1 = data.find(v => v.uuid === localVideosServer3[1])
|
2017-10-24 13:41:30 -04:00
|
|
|
|
2017-11-30 03:21:11 -05:00
|
|
|
expect(video0.views).to.equal(3)
|
|
|
|
expect(video1.views).to.equal(1)
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should view multiple videos on each servers', async function () {
|
2019-07-24 03:21:22 -04:00
|
|
|
this.timeout(45000)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
const tasks: Promise<any>[] = []
|
2022-03-24 08:36:47 -04:00
|
|
|
tasks.push(servers[0].views.simulateView({ id: remoteVideosServer1[0] }))
|
|
|
|
tasks.push(servers[1].views.simulateView({ id: remoteVideosServer2[0] }))
|
|
|
|
tasks.push(servers[1].views.simulateView({ id: remoteVideosServer2[0] }))
|
|
|
|
tasks.push(servers[2].views.simulateView({ id: remoteVideosServer3[0] }))
|
|
|
|
tasks.push(servers[2].views.simulateView({ id: remoteVideosServer3[1] }))
|
|
|
|
tasks.push(servers[2].views.simulateView({ id: remoteVideosServer3[1] }))
|
|
|
|
tasks.push(servers[2].views.simulateView({ id: remoteVideosServer3[1] }))
|
|
|
|
tasks.push(servers[2].views.simulateView({ id: localVideosServer3[1] }))
|
|
|
|
tasks.push(servers[2].views.simulateView({ id: localVideosServer3[1] }))
|
|
|
|
tasks.push(servers[2].views.simulateView({ id: localVideosServer3[1] }))
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
await Promise.all(tasks)
|
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2022-03-24 08:36:47 -04:00
|
|
|
for (const server of servers) {
|
|
|
|
await server.debug.sendCommand({ body: { command: 'process-video-views-buffer' } })
|
|
|
|
}
|
2018-08-29 10:26:25 -04:00
|
|
|
|
2019-12-04 05:48:12 -05:00
|
|
|
await waitJobs(servers)
|
|
|
|
|
2017-09-04 15:21:47 -04:00
|
|
|
let baseVideos = null
|
|
|
|
|
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await server.videos.list()
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
// Initialize base videos for future comparisons
|
|
|
|
if (baseVideos === null) {
|
2021-07-15 04:02:54 -04:00
|
|
|
baseVideos = data
|
2017-11-22 12:22:06 -05:00
|
|
|
continue
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (const baseVideo of baseVideos) {
|
2021-07-15 04:02:54 -04:00
|
|
|
const sameVideo = data.find(video => video.name === baseVideo.name)
|
2017-09-04 15:21:47 -04:00
|
|
|
expect(baseVideo.views).to.equal(sameVideo.views)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should like and dislikes videos on different services', async function () {
|
2021-04-23 02:34:17 -04:00
|
|
|
this.timeout(50000)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].videos.rate({ id: remoteVideosServer1[0], rating: 'like' })
|
2019-03-19 11:23:02 -04:00
|
|
|
await wait(500)
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].videos.rate({ id: remoteVideosServer1[0], rating: 'dislike' })
|
2019-03-19 11:23:02 -04:00
|
|
|
await wait(500)
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].videos.rate({ id: remoteVideosServer1[0], rating: 'like' })
|
|
|
|
await servers[2].videos.rate({ id: localVideosServer3[1], rating: 'like' })
|
2019-03-19 11:23:02 -04:00
|
|
|
await wait(500)
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[2].videos.rate({ id: localVideosServer3[1], rating: 'dislike' })
|
|
|
|
await servers[2].videos.rate({ id: remoteVideosServer3[1], rating: 'dislike' })
|
2019-03-19 11:23:02 -04:00
|
|
|
await wait(500)
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[2].videos.rate({ id: remoteVideosServer3[0], rating: 'like' })
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2020-11-18 08:15:25 -05:00
|
|
|
await wait(5000)
|
2021-07-13 02:33:02 -04:00
|
|
|
await waitJobs(servers)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
let baseVideos = null
|
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await server.videos.list()
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
// Initialize base videos for future comparisons
|
|
|
|
if (baseVideos === null) {
|
2021-07-15 04:02:54 -04:00
|
|
|
baseVideos = data
|
2017-11-22 12:22:06 -05:00
|
|
|
continue
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
2017-11-22 12:22:06 -05:00
|
|
|
for (const baseVideo of baseVideos) {
|
2021-07-15 04:02:54 -04:00
|
|
|
const sameVideo = data.find(video => video.name === baseVideo.name)
|
2022-03-18 06:17:35 -04:00
|
|
|
expect(baseVideo.likes).to.equal(sameVideo.likes, `Likes of ${sameVideo.uuid} do not correspond`)
|
|
|
|
expect(baseVideo.dislikes).to.equal(sameVideo.dislikes, `Dislikes of ${sameVideo.uuid} do not correspond`)
|
2017-11-22 12:22:06 -05:00
|
|
|
}
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('Should manipulate these videos', function () {
|
2021-11-10 08:25:33 -05:00
|
|
|
let updatedAtMin: Date
|
|
|
|
|
|
|
|
it('Should update video 3', async function () {
|
2022-01-03 05:01:39 -05:00
|
|
|
this.timeout(30000)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
const attributes = {
|
|
|
|
name: 'my super video updated',
|
|
|
|
category: 10,
|
|
|
|
licence: 7,
|
2018-04-23 08:39:52 -04:00
|
|
|
language: 'fr',
|
2017-09-04 15:21:47 -04:00
|
|
|
nsfw: true,
|
|
|
|
description: 'my super description updated',
|
2018-02-15 08:46:26 -05:00
|
|
|
support: 'my super support text updated',
|
2018-02-13 12:17:05 -05:00
|
|
|
tags: [ 'tag_up_1', 'tag_up_2' ],
|
|
|
|
thumbnailfile: 'thumbnail.jpg',
|
2019-02-11 08:41:55 -05:00
|
|
|
originallyPublishedAt: '2019-02-11T13:38:14.449Z',
|
2018-02-13 12:17:05 -05:00
|
|
|
previewfile: 'preview.jpg'
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
2021-11-10 08:25:33 -05:00
|
|
|
updatedAtMin = new Date()
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[2].videos.update({ id: toRemove[0].id, attributes })
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2017-09-04 15:21:47 -04:00
|
|
|
})
|
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
it('Should have the video 3 updated on each server', async function () {
|
2022-01-03 05:01:39 -05:00
|
|
|
this.timeout(30000)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await server.videos.list()
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const videoUpdated = data.find(video => video.name === 'my super video updated')
|
2017-09-04 15:21:47 -04:00
|
|
|
expect(!!videoUpdated).to.be.true
|
|
|
|
|
2021-11-10 08:25:33 -05:00
|
|
|
expect(new Date(videoUpdated.updatedAt)).to.be.greaterThan(updatedAtMin)
|
|
|
|
|
2019-04-25 11:14:49 -04:00
|
|
|
const isLocal = server.url === 'http://localhost:' + servers[2].port
|
2017-12-29 05:51:55 -05:00
|
|
|
const checkAttributes = {
|
|
|
|
name: 'my super video updated',
|
|
|
|
category: 10,
|
|
|
|
licence: 7,
|
2018-04-23 08:39:52 -04:00
|
|
|
language: 'fr',
|
2017-12-29 05:51:55 -05:00
|
|
|
nsfw: true,
|
|
|
|
description: 'my super description updated',
|
2018-02-15 08:46:26 -05:00
|
|
|
support: 'my super support text updated',
|
2019-02-11 08:41:55 -05:00
|
|
|
originallyPublishedAt: '2019-02-11T13:38:14.449Z',
|
2018-03-12 06:06:15 -04:00
|
|
|
account: {
|
|
|
|
name: 'root',
|
2019-04-25 11:14:49 -04:00
|
|
|
host: 'localhost:' + servers[2].port
|
2018-03-12 06:06:15 -04:00
|
|
|
},
|
2017-12-29 05:51:55 -05:00
|
|
|
isLocal,
|
|
|
|
duration: 5,
|
2018-01-03 04:12:36 -05:00
|
|
|
commentsEnabled: true,
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled: true,
|
2017-12-29 05:51:55 -05:00
|
|
|
tags: [ 'tag_up_1', 'tag_up_2' ],
|
|
|
|
privacy: VideoPrivacy.PUBLIC,
|
|
|
|
channel: {
|
2018-08-22 05:51:39 -04:00
|
|
|
displayName: 'Main root channel',
|
|
|
|
name: 'root_channel',
|
2017-12-29 05:51:55 -05:00
|
|
|
description: '',
|
|
|
|
isLocal
|
|
|
|
},
|
|
|
|
fixture: 'video_short3.webm',
|
|
|
|
files: [
|
|
|
|
{
|
|
|
|
resolution: 720,
|
|
|
|
size: 292677
|
|
|
|
}
|
2018-02-13 12:17:05 -05:00
|
|
|
],
|
|
|
|
thumbnailfile: 'thumbnail',
|
|
|
|
previewfile: 'preview'
|
2017-12-29 05:51:55 -05:00
|
|
|
}
|
2021-07-15 04:02:54 -04:00
|
|
|
await completeVideoCheck(server, videoUpdated, checkAttributes)
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-11-10 08:34:02 -05:00
|
|
|
it('Should only update thumbnail and update updatedAt attribute', async function () {
|
2022-01-03 05:01:39 -05:00
|
|
|
this.timeout(30000)
|
2021-11-10 08:34:02 -05:00
|
|
|
|
|
|
|
const attributes = {
|
|
|
|
thumbnailfile: 'thumbnail.jpg'
|
|
|
|
}
|
|
|
|
|
|
|
|
updatedAtMin = new Date()
|
|
|
|
await servers[2].videos.update({ id: toRemove[0].id, attributes })
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
for (const server of servers) {
|
|
|
|
const { data } = await server.videos.list()
|
|
|
|
|
|
|
|
const videoUpdated = data.find(video => video.name === 'my super video updated')
|
|
|
|
expect(new Date(videoUpdated.updatedAt)).to.be.greaterThan(updatedAtMin)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-07-22 08:28:03 -04:00
|
|
|
it('Should remove the videos 3 and 3-2 by asking server 3 and correctly delete files', async function () {
|
|
|
|
this.timeout(30000)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-22 08:28:03 -04:00
|
|
|
for (const id of [ toRemove[0].id, toRemove[1].id ]) {
|
|
|
|
await saveVideoInServers(servers, id)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-22 08:28:03 -04:00
|
|
|
await servers[2].videos.remove({ id })
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-22 08:28:03 -04:00
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
for (const server of servers) {
|
|
|
|
await checkVideoFilesWereRemoved({ server, video: server.store.videoDetails })
|
|
|
|
}
|
2018-01-18 04:53:54 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
it('Should have videos 1 and 3 on each server', async function () {
|
2017-09-04 15:21:47 -04:00
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await server.videos.list()
|
2021-07-15 04:02:54 -04:00
|
|
|
|
|
|
|
expect(data).to.be.an('array')
|
|
|
|
expect(data.length).to.equal(2)
|
|
|
|
expect(data[0].name).not.to.equal(data[1].name)
|
|
|
|
expect(data[0].name).not.to.equal(toRemove[0].name)
|
|
|
|
expect(data[1].name).not.to.equal(toRemove[0].name)
|
|
|
|
expect(data[0].name).not.to.equal(toRemove[1].name)
|
|
|
|
expect(data[1].name).not.to.equal(toRemove[1].name)
|
|
|
|
|
|
|
|
videoUUID = data.find(video => video.name === 'my super name for server 1').uuid
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
it('Should get the same video by UUID on each server', async function () {
|
2017-09-04 15:21:47 -04:00
|
|
|
let baseVideo = null
|
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const video = await server.videos.get({ id: videoUUID })
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
if (baseVideo === null) {
|
|
|
|
baseVideo = video
|
2017-11-22 12:22:06 -05:00
|
|
|
continue
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
expect(baseVideo.name).to.equal(video.name)
|
|
|
|
expect(baseVideo.uuid).to.equal(video.uuid)
|
2018-03-19 07:36:41 -04:00
|
|
|
expect(baseVideo.category.id).to.equal(video.category.id)
|
|
|
|
expect(baseVideo.language.id).to.equal(video.language.id)
|
|
|
|
expect(baseVideo.licence.id).to.equal(video.licence.id)
|
2017-09-04 15:21:47 -04:00
|
|
|
expect(baseVideo.nsfw).to.equal(video.nsfw)
|
2018-03-12 06:06:15 -04:00
|
|
|
expect(baseVideo.account.name).to.equal(video.account.name)
|
|
|
|
expect(baseVideo.account.displayName).to.equal(video.account.displayName)
|
|
|
|
expect(baseVideo.account.url).to.equal(video.account.url)
|
|
|
|
expect(baseVideo.account.host).to.equal(video.account.host)
|
2017-09-04 15:21:47 -04:00
|
|
|
expect(baseVideo.tags).to.deep.equal(video.tags)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-11-17 09:20:42 -05:00
|
|
|
it('Should get the preview from each server', async function () {
|
2017-09-04 15:21:47 -04:00
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const video = await server.videos.get({ id: videoUUID })
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2018-02-14 12:21:14 -05:00
|
|
|
await testImage(server.url, 'video_short1-preview.webm', video.previewPath)
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-12-27 14:03:37 -05:00
|
|
|
describe('Should comment these videos', function () {
|
2018-03-27 04:26:52 -04:00
|
|
|
let childOfFirstChild: VideoCommentThreadTree
|
|
|
|
|
2017-12-27 14:03:37 -05:00
|
|
|
it('Should add comment (threads and replies)', async function () {
|
|
|
|
this.timeout(25000)
|
|
|
|
|
|
|
|
{
|
|
|
|
const text = 'my super first comment'
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].comments.createThread({ videoId: videoUUID, text })
|
2017-12-27 14:03:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const text = 'my super second comment'
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[2].comments.createThread({ videoId: videoUUID, text })
|
2017-12-27 14:03:37 -05:00
|
|
|
}
|
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2017-12-27 14:03:37 -05:00
|
|
|
|
|
|
|
{
|
2021-07-16 03:04:35 -04:00
|
|
|
const threadId = await servers[1].comments.findCommentId({ videoId: videoUUID, text: 'my super first comment' })
|
2017-12-27 14:03:37 -05:00
|
|
|
|
|
|
|
const text = 'my super answer to thread 1'
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[1].comments.addReply({ videoId: videoUUID, toCommentId: threadId, text })
|
2017-12-27 14:03:37 -05:00
|
|
|
}
|
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2017-12-27 14:03:37 -05:00
|
|
|
|
|
|
|
{
|
2021-07-16 03:04:35 -04:00
|
|
|
const threadId = await servers[2].comments.findCommentId({ videoId: videoUUID, text: 'my super first comment' })
|
2017-12-27 14:03:37 -05:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const body = await servers[2].comments.getThread({ videoId: videoUUID, threadId })
|
2021-07-09 08:15:11 -04:00
|
|
|
const childCommentId = body.children[0].comment.id
|
2017-12-27 14:03:37 -05:00
|
|
|
|
|
|
|
const text3 = 'my second answer to thread 1'
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[2].comments.addReply({ videoId: videoUUID, toCommentId: threadId, text: text3 })
|
2017-12-27 14:03:37 -05:00
|
|
|
|
|
|
|
const text2 = 'my super answer to answer of thread 1'
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[2].comments.addReply({ videoId: videoUUID, toCommentId: childCommentId, text: text2 })
|
2017-12-27 14:03:37 -05:00
|
|
|
}
|
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2017-12-27 14:03:37 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have these threads', async function () {
|
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const body = await server.comments.listThreads({ videoId: videoUUID })
|
2017-12-27 14:03:37 -05:00
|
|
|
|
2021-07-09 08:15:11 -04:00
|
|
|
expect(body.total).to.equal(2)
|
|
|
|
expect(body.data).to.be.an('array')
|
|
|
|
expect(body.data).to.have.lengthOf(2)
|
2017-12-27 14:03:37 -05:00
|
|
|
|
|
|
|
{
|
2021-07-09 08:15:11 -04:00
|
|
|
const comment = body.data.find(c => c.text === 'my super first comment')
|
2017-12-27 14:03:37 -05:00
|
|
|
expect(comment).to.not.be.undefined
|
|
|
|
expect(comment.inReplyToCommentId).to.be.null
|
|
|
|
expect(comment.account.name).to.equal('root')
|
2019-04-25 11:14:49 -04:00
|
|
|
expect(comment.account.host).to.equal('localhost:' + servers[0].port)
|
2017-12-27 14:03:37 -05:00
|
|
|
expect(comment.totalReplies).to.equal(3)
|
|
|
|
expect(dateIsValid(comment.createdAt as string)).to.be.true
|
|
|
|
expect(dateIsValid(comment.updatedAt as string)).to.be.true
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2021-07-09 08:15:11 -04:00
|
|
|
const comment = body.data.find(c => c.text === 'my super second comment')
|
2017-12-27 14:03:37 -05:00
|
|
|
expect(comment).to.not.be.undefined
|
|
|
|
expect(comment.inReplyToCommentId).to.be.null
|
|
|
|
expect(comment.account.name).to.equal('root')
|
2019-04-25 11:14:49 -04:00
|
|
|
expect(comment.account.host).to.equal('localhost:' + servers[2].port)
|
2017-12-27 14:03:37 -05:00
|
|
|
expect(comment.totalReplies).to.equal(0)
|
|
|
|
expect(dateIsValid(comment.createdAt as string)).to.be.true
|
|
|
|
expect(dateIsValid(comment.updatedAt as string)).to.be.true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have these comments', async function () {
|
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const body = await server.comments.listThreads({ videoId: videoUUID })
|
2021-07-09 08:15:11 -04:00
|
|
|
const threadId = body.data.find(c => c.text === 'my super first comment').id
|
2017-12-27 14:03:37 -05:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const tree = await server.comments.getThread({ videoId: videoUUID, threadId })
|
2017-12-27 14:03:37 -05:00
|
|
|
|
|
|
|
expect(tree.comment.text).equal('my super first comment')
|
|
|
|
expect(tree.comment.account.name).equal('root')
|
2019-04-25 11:14:49 -04:00
|
|
|
expect(tree.comment.account.host).equal('localhost:' + servers[0].port)
|
2017-12-27 14:03:37 -05:00
|
|
|
expect(tree.children).to.have.lengthOf(2)
|
|
|
|
|
|
|
|
const firstChild = tree.children[0]
|
|
|
|
expect(firstChild.comment.text).to.equal('my super answer to thread 1')
|
|
|
|
expect(firstChild.comment.account.name).equal('root')
|
2019-04-25 11:14:49 -04:00
|
|
|
expect(firstChild.comment.account.host).equal('localhost:' + servers[1].port)
|
2017-12-27 14:03:37 -05:00
|
|
|
expect(firstChild.children).to.have.lengthOf(1)
|
|
|
|
|
2018-03-27 04:26:52 -04:00
|
|
|
childOfFirstChild = firstChild.children[0]
|
2017-12-27 14:03:37 -05:00
|
|
|
expect(childOfFirstChild.comment.text).to.equal('my super answer to answer of thread 1')
|
|
|
|
expect(childOfFirstChild.comment.account.name).equal('root')
|
2019-04-25 11:14:49 -04:00
|
|
|
expect(childOfFirstChild.comment.account.host).equal('localhost:' + servers[2].port)
|
2017-12-27 14:03:37 -05:00
|
|
|
expect(childOfFirstChild.children).to.have.lengthOf(0)
|
|
|
|
|
|
|
|
const secondChild = tree.children[1]
|
|
|
|
expect(secondChild.comment.text).to.equal('my second answer to thread 1')
|
|
|
|
expect(secondChild.comment.account.name).equal('root')
|
2019-04-25 11:14:49 -04:00
|
|
|
expect(secondChild.comment.account.host).equal('localhost:' + servers[2].port)
|
2017-12-27 14:03:37 -05:00
|
|
|
expect(secondChild.children).to.have.lengthOf(0)
|
|
|
|
}
|
|
|
|
})
|
2018-01-03 04:12:36 -05:00
|
|
|
|
2018-03-27 04:26:52 -04:00
|
|
|
it('Should delete a reply', async function () {
|
2022-01-03 05:01:39 -05:00
|
|
|
this.timeout(30000)
|
2018-03-27 04:26:52 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[2].comments.delete({ videoId: videoUUID, commentId: childOfFirstChild.comment.id })
|
2018-03-27 04:26:52 -04:00
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2018-03-27 04:26:52 -04:00
|
|
|
})
|
|
|
|
|
2019-11-15 13:05:08 -05:00
|
|
|
it('Should have this comment marked as deleted', async function () {
|
2018-03-27 04:26:52 -04:00
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await server.comments.listThreads({ videoId: videoUUID })
|
2021-07-09 08:15:11 -04:00
|
|
|
const threadId = data.find(c => c.text === 'my super first comment').id
|
2018-03-27 04:26:52 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const tree = await server.comments.getThread({ videoId: videoUUID, threadId })
|
2018-03-27 04:26:52 -04:00
|
|
|
expect(tree.comment.text).equal('my super first comment')
|
|
|
|
|
|
|
|
const firstChild = tree.children[0]
|
|
|
|
expect(firstChild.comment.text).to.equal('my super answer to thread 1')
|
2019-11-15 13:05:08 -05:00
|
|
|
expect(firstChild.children).to.have.lengthOf(1)
|
|
|
|
|
|
|
|
const deletedComment = firstChild.children[0].comment
|
|
|
|
expect(deletedComment.isDeleted).to.be.true
|
|
|
|
expect(deletedComment.deletedAt).to.not.be.null
|
|
|
|
expect(deletedComment.account).to.be.null
|
|
|
|
expect(deletedComment.text).to.equal('')
|
2018-03-27 04:26:52 -04:00
|
|
|
|
|
|
|
const secondChild = tree.children[1]
|
|
|
|
expect(secondChild.comment.text).to.equal('my second answer to thread 1')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-01-04 05:19:16 -05:00
|
|
|
it('Should delete the thread comments', async function () {
|
2022-01-03 05:01:39 -05:00
|
|
|
this.timeout(30000)
|
2018-01-04 05:19:16 -05:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await servers[0].comments.listThreads({ videoId: videoUUID })
|
2021-07-09 08:15:11 -04:00
|
|
|
const commentId = data.find(c => c.text === 'my super first comment').id
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].comments.delete({ videoId: videoUUID, commentId })
|
2018-01-04 05:19:16 -05:00
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2018-01-04 05:19:16 -05:00
|
|
|
})
|
|
|
|
|
2019-11-15 13:05:08 -05:00
|
|
|
it('Should have the threads marked as deleted on other servers too', async function () {
|
2018-01-04 05:19:16 -05:00
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const body = await server.comments.listThreads({ videoId: videoUUID })
|
2018-01-04 05:19:16 -05:00
|
|
|
|
2021-07-09 08:15:11 -04:00
|
|
|
expect(body.total).to.equal(2)
|
|
|
|
expect(body.data).to.be.an('array')
|
|
|
|
expect(body.data).to.have.lengthOf(2)
|
2018-01-04 05:19:16 -05:00
|
|
|
|
|
|
|
{
|
2021-07-09 08:15:11 -04:00
|
|
|
const comment = body.data[0]
|
2018-01-04 05:19:16 -05:00
|
|
|
expect(comment).to.not.be.undefined
|
|
|
|
expect(comment.inReplyToCommentId).to.be.null
|
|
|
|
expect(comment.account.name).to.equal('root')
|
2019-04-25 11:14:49 -04:00
|
|
|
expect(comment.account.host).to.equal('localhost:' + servers[2].port)
|
2018-01-04 05:19:16 -05:00
|
|
|
expect(comment.totalReplies).to.equal(0)
|
|
|
|
expect(dateIsValid(comment.createdAt as string)).to.be.true
|
|
|
|
expect(dateIsValid(comment.updatedAt as string)).to.be.true
|
|
|
|
}
|
2019-11-15 13:05:08 -05:00
|
|
|
|
|
|
|
{
|
2021-07-09 08:15:11 -04:00
|
|
|
const deletedComment = body.data[1]
|
2019-11-15 13:05:08 -05:00
|
|
|
expect(deletedComment).to.not.be.undefined
|
|
|
|
expect(deletedComment.isDeleted).to.be.true
|
|
|
|
expect(deletedComment.deletedAt).to.not.be.null
|
|
|
|
expect(deletedComment.text).to.equal('')
|
|
|
|
expect(deletedComment.inReplyToCommentId).to.be.null
|
|
|
|
expect(deletedComment.account).to.be.null
|
2021-06-08 07:34:40 -04:00
|
|
|
expect(deletedComment.totalReplies).to.equal(2)
|
2019-11-15 13:05:08 -05:00
|
|
|
expect(dateIsValid(deletedComment.createdAt as string)).to.be.true
|
|
|
|
expect(dateIsValid(deletedComment.updatedAt as string)).to.be.true
|
|
|
|
expect(dateIsValid(deletedComment.deletedAt as string)).to.be.true
|
|
|
|
}
|
2018-01-04 05:19:16 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-08-07 09:35:29 -04:00
|
|
|
it('Should delete a remote thread by the origin server', async function () {
|
2019-12-03 15:48:31 -05:00
|
|
|
this.timeout(5000)
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await servers[0].comments.listThreads({ videoId: videoUUID })
|
2021-07-09 08:15:11 -04:00
|
|
|
const commentId = data.find(c => c.text === 'my super second comment').id
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].comments.delete({ videoId: videoUUID, commentId })
|
2019-08-07 09:35:29 -04:00
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
})
|
|
|
|
|
2019-11-15 13:05:08 -05:00
|
|
|
it('Should have the threads marked as deleted on other servers too', async function () {
|
2019-08-07 09:35:29 -04:00
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const body = await server.comments.listThreads({ videoId: videoUUID })
|
2019-08-07 09:35:29 -04:00
|
|
|
|
2021-07-09 08:15:11 -04:00
|
|
|
expect(body.total).to.equal(2)
|
|
|
|
expect(body.data).to.have.lengthOf(2)
|
2019-11-15 13:05:08 -05:00
|
|
|
|
|
|
|
{
|
2021-07-09 08:15:11 -04:00
|
|
|
const comment = body.data[0]
|
2019-11-15 13:05:08 -05:00
|
|
|
expect(comment.text).to.equal('')
|
|
|
|
expect(comment.isDeleted).to.be.true
|
|
|
|
expect(comment.createdAt).to.not.be.null
|
|
|
|
expect(comment.deletedAt).to.not.be.null
|
|
|
|
expect(comment.account).to.be.null
|
|
|
|
expect(comment.totalReplies).to.equal(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2021-07-09 08:15:11 -04:00
|
|
|
const comment = body.data[1]
|
2019-11-15 13:05:08 -05:00
|
|
|
expect(comment.text).to.equal('')
|
|
|
|
expect(comment.isDeleted).to.be.true
|
|
|
|
expect(comment.createdAt).to.not.be.null
|
|
|
|
expect(comment.deletedAt).to.not.be.null
|
|
|
|
expect(comment.account).to.be.null
|
2021-06-08 07:34:40 -04:00
|
|
|
expect(comment.totalReplies).to.equal(2)
|
2019-11-15 13:05:08 -05:00
|
|
|
}
|
2019-08-07 09:35:29 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-02-11 05:48:56 -05:00
|
|
|
it('Should disable comments and download', async function () {
|
2018-01-03 04:12:36 -05:00
|
|
|
this.timeout(20000)
|
|
|
|
|
|
|
|
const attributes = {
|
2019-02-11 05:48:56 -05:00
|
|
|
commentsEnabled: false,
|
|
|
|
downloadEnabled: false
|
2018-01-03 04:12:36 -05:00
|
|
|
}
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].videos.update({ id: videoUUID, attributes })
|
2018-01-03 04:12:36 -05:00
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2018-01-03 04:12:36 -05:00
|
|
|
|
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const video = await server.videos.get({ id: videoUUID })
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(video.commentsEnabled).to.be.false
|
|
|
|
expect(video.downloadEnabled).to.be.false
|
2018-01-03 04:12:36 -05:00
|
|
|
|
|
|
|
const text = 'my super forbidden comment'
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.comments.createThread({ videoId: videoUUID, text, expectedStatus: HttpStatusCode.CONFLICT_409 })
|
2018-01-03 04:12:36 -05:00
|
|
|
}
|
|
|
|
})
|
2017-12-27 14:03:37 -05:00
|
|
|
})
|
|
|
|
|
2017-12-08 11:31:21 -05:00
|
|
|
describe('With minimum parameters', function () {
|
|
|
|
it('Should upload and propagate the video', async function () {
|
2018-06-12 14:04:58 -04:00
|
|
|
this.timeout(60000)
|
2017-12-08 11:31:21 -05:00
|
|
|
|
|
|
|
const path = '/api/v1/videos/upload'
|
|
|
|
|
|
|
|
const req = request(servers[1].url)
|
|
|
|
.post(path)
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.set('Authorization', 'Bearer ' + servers[1].accessToken)
|
|
|
|
.field('name', 'minimum parameters')
|
|
|
|
.field('privacy', '1')
|
|
|
|
.field('channelId', '1')
|
|
|
|
|
2021-06-14 10:52:22 -04:00
|
|
|
await req.attach('videofile', buildAbsoluteFixturePath('video_short.webm'))
|
2020-12-08 15:16:10 -05:00
|
|
|
.expect(HttpStatusCode.OK_200)
|
2017-12-08 11:31:21 -05:00
|
|
|
|
2018-06-13 04:06:50 -04:00
|
|
|
await waitJobs(servers)
|
2017-12-08 11:31:21 -05:00
|
|
|
|
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await server.videos.list()
|
2021-07-15 04:02:54 -04:00
|
|
|
const video = data.find(v => v.name === 'minimum parameters')
|
2017-12-08 11:31:21 -05:00
|
|
|
|
2019-04-25 11:14:49 -04:00
|
|
|
const isLocal = server.url === 'http://localhost:' + servers[1].port
|
2017-12-29 05:51:55 -05:00
|
|
|
const checkAttributes = {
|
|
|
|
name: 'minimum parameters',
|
|
|
|
category: null,
|
|
|
|
licence: null,
|
|
|
|
language: null,
|
|
|
|
nsfw: false,
|
|
|
|
description: null,
|
2018-02-15 08:46:26 -05:00
|
|
|
support: null,
|
2018-03-12 06:06:15 -04:00
|
|
|
account: {
|
|
|
|
name: 'root',
|
2019-04-25 11:14:49 -04:00
|
|
|
host: 'localhost:' + servers[1].port
|
2018-03-12 06:06:15 -04:00
|
|
|
},
|
2017-12-29 05:51:55 -05:00
|
|
|
isLocal,
|
|
|
|
duration: 5,
|
2019-09-18 11:20:37 -04:00
|
|
|
commentsEnabled: true,
|
2019-02-11 08:41:55 -05:00
|
|
|
downloadEnabled: true,
|
2020-01-31 10:56:52 -05:00
|
|
|
tags: [],
|
2017-12-29 05:51:55 -05:00
|
|
|
privacy: VideoPrivacy.PUBLIC,
|
|
|
|
channel: {
|
2018-08-22 05:51:39 -04:00
|
|
|
displayName: 'Main root channel',
|
|
|
|
name: 'root_channel',
|
2017-12-29 05:51:55 -05:00
|
|
|
description: '',
|
|
|
|
isLocal
|
|
|
|
},
|
|
|
|
fixture: 'video_short.webm',
|
|
|
|
files: [
|
|
|
|
{
|
|
|
|
resolution: 720,
|
2021-11-10 08:25:33 -05:00
|
|
|
size: 61000
|
2017-12-29 05:51:55 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
resolution: 480,
|
2021-11-10 08:25:33 -05:00
|
|
|
size: 40000
|
2017-12-29 05:51:55 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
resolution: 360,
|
2021-11-10 08:25:33 -05:00
|
|
|
size: 32000
|
2017-12-29 05:51:55 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
resolution: 240,
|
2021-01-29 09:58:01 -05:00
|
|
|
size: 23000
|
2017-12-29 05:51:55 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2021-07-15 04:02:54 -04:00
|
|
|
await completeVideoCheck(server, video, checkAttributes)
|
2017-12-08 11:31:21 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-12-11 03:16:41 -05:00
|
|
|
describe('TMP directory', function () {
|
|
|
|
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)
|
2017-09-04 15:21:47 -04:00
|
|
|
})
|
|
|
|
})
|