2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
import * as chai from 'chai'
|
|
|
|
import 'mocha'
|
|
|
|
import {
|
|
|
|
addVideoChannel,
|
2019-03-05 04:58:44 -05:00
|
|
|
addVideoInPlaylist,
|
2019-07-31 09:57:32 -04:00
|
|
|
addVideoToBlacklist,
|
2019-04-24 11:19:00 -04:00
|
|
|
checkPlaylistFilesWereRemoved,
|
|
|
|
cleanupTests,
|
2019-02-26 04:55:40 -05:00
|
|
|
createUser,
|
2019-03-05 04:58:44 -05:00
|
|
|
createVideoPlaylist,
|
|
|
|
deleteVideoChannel,
|
|
|
|
deleteVideoPlaylist,
|
2019-04-24 11:19:00 -04:00
|
|
|
doubleFollow,
|
|
|
|
doVideosExistInMyPlaylist,
|
2019-02-26 04:55:40 -05:00
|
|
|
flushAndRunMultipleServers,
|
2019-07-31 09:57:32 -04:00
|
|
|
generateUserAccessToken,
|
|
|
|
getAccessToken,
|
2019-03-05 04:58:44 -05:00
|
|
|
getAccountPlaylistsList,
|
2019-04-24 11:19:00 -04:00
|
|
|
getAccountPlaylistsListWithToken,
|
|
|
|
getMyUserInformation,
|
2019-03-05 04:58:44 -05:00
|
|
|
getPlaylistVideos,
|
|
|
|
getVideoChannelPlaylistsList,
|
|
|
|
getVideoPlaylist,
|
2019-03-06 05:32:53 -05:00
|
|
|
getVideoPlaylistPrivacies,
|
2019-03-05 04:58:44 -05:00
|
|
|
getVideoPlaylistsList,
|
|
|
|
getVideoPlaylistWithToken,
|
|
|
|
removeUser,
|
2019-07-31 09:57:32 -04:00
|
|
|
removeVideoFromBlacklist,
|
2019-03-05 04:58:44 -05:00
|
|
|
removeVideoFromPlaylist,
|
|
|
|
reorderVideosPlaylist,
|
2019-02-26 04:55:40 -05:00
|
|
|
ServerInfo,
|
|
|
|
setAccessTokensToServers,
|
2019-03-05 04:58:44 -05:00
|
|
|
setDefaultVideoChannel,
|
2019-02-26 04:55:40 -05:00
|
|
|
testImage,
|
2019-03-05 04:58:44 -05:00
|
|
|
unfollow,
|
2019-07-31 09:57:32 -04:00
|
|
|
updateVideo,
|
2019-03-05 04:58:44 -05:00
|
|
|
updateVideoPlaylist,
|
|
|
|
updateVideoPlaylistElement,
|
2019-02-26 04:55:40 -05:00
|
|
|
uploadVideo,
|
2019-03-05 04:58:44 -05:00
|
|
|
uploadVideoAndGetId,
|
2019-02-26 04:55:40 -05:00
|
|
|
userLogin,
|
2020-11-18 07:41:27 -05:00
|
|
|
wait,
|
2019-07-31 09:57:32 -04:00
|
|
|
waitJobs
|
2019-04-15 09:26:15 -04:00
|
|
|
} from '../../../../shared/extra-utils'
|
2019-03-05 04:58:44 -05:00
|
|
|
import { VideoPlaylistPrivacy } from '../../../../shared/models/videos/playlist/video-playlist-privacy.model'
|
|
|
|
import { VideoPlaylist } from '../../../../shared/models/videos/playlist/video-playlist.model'
|
2019-07-31 09:57:32 -04:00
|
|
|
import { VideoPrivacy } from '../../../../shared/models/videos'
|
2019-03-05 04:58:44 -05:00
|
|
|
import { VideoPlaylistType } from '../../../../shared/models/videos/playlist/video-playlist-type.model'
|
2019-03-13 11:03:03 -04:00
|
|
|
import { VideoExistInPlaylist } from '../../../../shared/models/videos/playlist/video-exist-in-playlist.model'
|
2019-03-14 10:29:23 -04:00
|
|
|
import { User } from '../../../../shared/models/users'
|
2019-07-31 09:57:32 -04:00
|
|
|
import { VideoPlaylistElement, VideoPlaylistElementType } from '../../../../shared/models/videos/playlist/video-playlist-element.model'
|
|
|
|
import {
|
|
|
|
addAccountToAccountBlocklist,
|
|
|
|
addAccountToServerBlocklist,
|
|
|
|
addServerToAccountBlocklist,
|
|
|
|
addServerToServerBlocklist,
|
|
|
|
removeAccountFromAccountBlocklist,
|
|
|
|
removeAccountFromServerBlocklist,
|
|
|
|
removeServerFromAccountBlocklist,
|
|
|
|
removeServerFromServerBlocklist
|
|
|
|
} from '../../../../shared/extra-utils/users/blocklist'
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
const expect = chai.expect
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
async function checkPlaylistElementType (
|
|
|
|
servers: ServerInfo[],
|
|
|
|
playlistId: string,
|
|
|
|
type: VideoPlaylistElementType,
|
|
|
|
position: number,
|
|
|
|
name: string,
|
|
|
|
total: number
|
|
|
|
) {
|
|
|
|
for (const server of servers) {
|
|
|
|
const res = await getPlaylistVideos(server.url, server.accessToken, playlistId, 0, 10)
|
|
|
|
expect(res.body.total).to.equal(total)
|
|
|
|
|
|
|
|
const videoElement: VideoPlaylistElement = res.body.data.find((e: VideoPlaylistElement) => e.position === position)
|
|
|
|
expect(videoElement.type).to.equal(type, 'On server ' + server.url)
|
|
|
|
|
|
|
|
if (type === VideoPlaylistElementType.REGULAR) {
|
|
|
|
expect(videoElement.video).to.not.be.null
|
|
|
|
expect(videoElement.video.name).to.equal(name)
|
|
|
|
} else {
|
|
|
|
expect(videoElement.video).to.be.null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
describe('Test video playlists', function () {
|
|
|
|
let servers: ServerInfo[] = []
|
|
|
|
|
2019-03-05 04:58:44 -05:00
|
|
|
let playlistServer2Id1: number
|
|
|
|
let playlistServer2Id2: number
|
|
|
|
let playlistServer2UUID2: number
|
|
|
|
|
|
|
|
let playlistServer1Id: number
|
|
|
|
let playlistServer1UUID: string
|
2019-07-31 09:57:32 -04:00
|
|
|
let playlistServer1UUID2: string
|
|
|
|
|
|
|
|
let playlistElementServer1Video4: number
|
|
|
|
let playlistElementServer1Video5: number
|
|
|
|
let playlistElementNSFW: number
|
2019-03-05 04:58:44 -05:00
|
|
|
|
|
|
|
let nsfwVideoServer1: number
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
let userAccessTokenServer1: string
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
2019-03-05 04:58:44 -05:00
|
|
|
servers = await flushAndRunMultipleServers(3, { transcoding: { enabled: false } })
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
// Get the access tokens
|
|
|
|
await setAccessTokensToServers(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
await setDefaultVideoChannel(servers)
|
2019-02-26 04:55:40 -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])
|
2019-03-05 04:58:44 -05:00
|
|
|
|
|
|
|
{
|
|
|
|
const serverPromises: Promise<any>[][] = []
|
|
|
|
|
|
|
|
for (const server of servers) {
|
|
|
|
const videoPromises: Promise<any>[] = []
|
|
|
|
|
|
|
|
for (let i = 0; i < 7; i++) {
|
|
|
|
videoPromises.push(
|
|
|
|
uploadVideo(server.url, server.accessToken, { name: `video ${i} server ${server.serverNumber}`, nsfw: false })
|
|
|
|
.then(res => res.body.video)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
serverPromises.push(videoPromises)
|
|
|
|
}
|
|
|
|
|
|
|
|
servers[0].videos = await Promise.all(serverPromises[0])
|
|
|
|
servers[1].videos = await Promise.all(serverPromises[1])
|
|
|
|
servers[2].videos = await Promise.all(serverPromises[2])
|
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
nsfwVideoServer1 = (await uploadVideoAndGetId({ server: servers[0], videoName: 'NSFW video', nsfw: true })).id
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
|
|
|
await createUser({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
|
|
|
accessToken: servers[0].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
username: 'user1',
|
|
|
|
password: 'password'
|
|
|
|
})
|
|
|
|
userAccessTokenServer1 = await getAccessToken(servers[0].url, 'user1', 'password')
|
|
|
|
}
|
|
|
|
|
2019-03-05 04:58:44 -05:00
|
|
|
await waitJobs(servers)
|
2019-02-26 04:55:40 -05:00
|
|
|
})
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
describe('Get default playlists', function () {
|
|
|
|
it('Should list video playlist privacies', async function () {
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getVideoPlaylistPrivacies(servers[0].url)
|
2019-03-06 05:32:53 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const privacies = res.body
|
|
|
|
expect(Object.keys(privacies)).to.have.length.at.least(3)
|
2019-03-06 05:32:53 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(privacies[3]).to.equal('Private')
|
2019-07-31 09:57:32 -04:00
|
|
|
})
|
2019-03-06 05:32:53 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should list watch later playlist', async function () {
|
2020-01-31 10:56:52 -05:00
|
|
|
const url = servers[0].url
|
|
|
|
const accessToken = servers[0].accessToken
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
|
|
|
const res = await getAccountPlaylistsListWithToken(url, accessToken, 'root', 0, 5, VideoPlaylistType.WATCH_LATER)
|
|
|
|
|
|
|
|
expect(res.body.total).to.equal(1)
|
|
|
|
expect(res.body.data).to.have.lengthOf(1)
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const playlist: VideoPlaylist = res.body.data[0]
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(playlist.displayName).to.equal('Watch later')
|
|
|
|
expect(playlist.type.id).to.equal(VideoPlaylistType.WATCH_LATER)
|
|
|
|
expect(playlist.type.label).to.equal('Watch later')
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const res = await getAccountPlaylistsListWithToken(url, accessToken, 'root', 0, 5, VideoPlaylistType.REGULAR)
|
|
|
|
|
|
|
|
expect(res.body.total).to.equal(0)
|
|
|
|
expect(res.body.data).to.have.lengthOf(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const res = await getAccountPlaylistsList(url, 'root', 0, 5)
|
|
|
|
expect(res.body.total).to.equal(0)
|
|
|
|
expect(res.body.data).to.have.lengthOf(0)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should get private playlist for a classic user', async function () {
|
2020-01-31 10:56:52 -05:00
|
|
|
const token = await generateUserAccessToken(servers[0], 'toto')
|
2019-07-31 09:57:32 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getAccountPlaylistsListWithToken(servers[0].url, token, 'toto', 0, 5)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
|
|
|
expect(res.body.total).to.equal(1)
|
|
|
|
expect(res.body.data).to.have.lengthOf(1)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const playlistId = res.body.data[0].id
|
|
|
|
await getPlaylistVideos(servers[0].url, token, playlistId, 0, 5)
|
2019-07-31 09:57:32 -04:00
|
|
|
})
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
describe('Create and federate playlists', function () {
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should create a playlist on server 1 and have the playlist on server 2 and 3', async function () {
|
|
|
|
this.timeout(30000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await createVideoPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
|
|
|
token: servers[0].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistAttrs: {
|
|
|
|
displayName: 'my super playlist',
|
|
|
|
privacy: VideoPlaylistPrivacy.PUBLIC,
|
|
|
|
description: 'my super description',
|
|
|
|
thumbnailfile: 'thumbnail.jpg',
|
2020-01-31 10:56:52 -05:00
|
|
|
videoChannelId: servers[0].videoChannel.id
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
2020-11-18 07:41:27 -05:00
|
|
|
// Processing a playlist by the receiver could be long
|
|
|
|
await wait(3000)
|
2019-07-31 09:57:32 -04:00
|
|
|
|
|
|
|
for (const server of servers) {
|
|
|
|
const res = await getVideoPlaylistsList(server.url, 0, 5)
|
|
|
|
expect(res.body.total).to.equal(1)
|
|
|
|
expect(res.body.data).to.have.lengthOf(1)
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const playlistFromList = res.body.data[0] as VideoPlaylist
|
2019-07-31 09:57:32 -04:00
|
|
|
|
|
|
|
const res2 = await getVideoPlaylist(server.url, playlistFromList.uuid)
|
2020-08-07 07:43:48 -04:00
|
|
|
const playlistFromGet = res2.body as VideoPlaylist
|
2019-07-31 09:57:32 -04:00
|
|
|
|
|
|
|
for (const playlist of [ playlistFromGet, playlistFromList ]) {
|
|
|
|
expect(playlist.id).to.be.a('number')
|
|
|
|
expect(playlist.uuid).to.be.a('string')
|
|
|
|
|
|
|
|
expect(playlist.isLocal).to.equal(server.serverNumber === 1)
|
|
|
|
|
|
|
|
expect(playlist.displayName).to.equal('my super playlist')
|
|
|
|
expect(playlist.description).to.equal('my super description')
|
|
|
|
expect(playlist.privacy.id).to.equal(VideoPlaylistPrivacy.PUBLIC)
|
|
|
|
expect(playlist.privacy.label).to.equal('Public')
|
|
|
|
expect(playlist.type.id).to.equal(VideoPlaylistType.REGULAR)
|
|
|
|
expect(playlist.type.label).to.equal('Regular')
|
2020-08-07 07:43:48 -04:00
|
|
|
expect(playlist.embedPath).to.equal('/video-playlists/embed/' + playlist.uuid)
|
2019-07-31 09:57:32 -04:00
|
|
|
|
|
|
|
expect(playlist.videosLength).to.equal(0)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(playlist.ownerAccount.name).to.equal('root')
|
|
|
|
expect(playlist.ownerAccount.displayName).to.equal('root')
|
|
|
|
expect(playlist.videoChannel.name).to.equal('root_channel')
|
|
|
|
expect(playlist.videoChannel.displayName).to.equal('Main root channel')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2019-05-28 03:50:27 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should create a playlist on server 2 and have the playlist on server 1 but not on server 3', async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
|
|
|
{
|
|
|
|
const res = await createVideoPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[1].url,
|
|
|
|
token: servers[1].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistAttrs: {
|
|
|
|
displayName: 'playlist 2',
|
|
|
|
privacy: VideoPlaylistPrivacy.PUBLIC,
|
2020-01-31 10:56:52 -05:00
|
|
|
videoChannelId: servers[1].videoChannel.id
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
playlistServer2Id1 = res.body.videoPlaylist.id
|
|
|
|
}
|
2019-05-28 03:50:27 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
|
|
|
const res = await createVideoPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[1].url,
|
|
|
|
token: servers[1].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistAttrs: {
|
|
|
|
displayName: 'playlist 3',
|
|
|
|
privacy: VideoPlaylistPrivacy.PUBLIC,
|
|
|
|
thumbnailfile: 'thumbnail.jpg',
|
2020-01-31 10:56:52 -05:00
|
|
|
videoChannelId: servers[1].videoChannel.id
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
playlistServer2Id2 = res.body.videoPlaylist.id
|
|
|
|
playlistServer2UUID2 = res.body.videoPlaylist.uuid
|
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
for (const id of [ playlistServer2Id1, playlistServer2Id2 ]) {
|
2019-07-31 09:57:32 -04:00
|
|
|
await addVideoInPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[1].url,
|
|
|
|
token: servers[1].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistId: id,
|
2020-01-31 10:56:52 -05:00
|
|
|
elementAttrs: { videoId: servers[1].videos[0].id, startTimestamp: 1, stopTimestamp: 2 }
|
2019-07-31 09:57:32 -04:00
|
|
|
})
|
|
|
|
await addVideoInPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[1].url,
|
|
|
|
token: servers[1].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistId: id,
|
2020-01-31 10:56:52 -05:00
|
|
|
elementAttrs: { videoId: servers[1].videos[1].id }
|
2019-07-31 09:57:32 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
2020-11-18 07:41:27 -05:00
|
|
|
await wait(3000)
|
2019-07-31 09:57:32 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
for (const server of [ servers[0], servers[1] ]) {
|
2019-07-31 09:57:32 -04:00
|
|
|
const res = await getVideoPlaylistsList(server.url, 0, 5)
|
|
|
|
|
|
|
|
const playlist2 = res.body.data.find(p => p.displayName === 'playlist 2')
|
|
|
|
expect(playlist2).to.not.be.undefined
|
|
|
|
await testImage(server.url, 'thumbnail-playlist', playlist2.thumbnailPath)
|
|
|
|
|
|
|
|
const playlist3 = res.body.data.find(p => p.displayName === 'playlist 3')
|
|
|
|
expect(playlist3).to.not.be.undefined
|
|
|
|
await testImage(server.url, 'thumbnail', playlist3.thumbnailPath)
|
|
|
|
}
|
2019-05-28 03:50:27 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getVideoPlaylistsList(servers[2].url, 0, 5)
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(res.body.data.find(p => p.displayName === 'playlist 2')).to.be.undefined
|
|
|
|
expect(res.body.data.find(p => p.displayName === 'playlist 3')).to.be.undefined
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have the playlist on server 3 after a new follow', async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
|
|
|
// Server 2 and server 3 follow each other
|
2020-01-31 10:56:52 -05:00
|
|
|
await doubleFollow(servers[1], servers[2])
|
2019-07-31 09:57:32 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getVideoPlaylistsList(servers[2].url, 0, 5)
|
2019-07-31 09:57:32 -04:00
|
|
|
|
|
|
|
const playlist2 = res.body.data.find(p => p.displayName === 'playlist 2')
|
|
|
|
expect(playlist2).to.not.be.undefined
|
2020-01-31 10:56:52 -05:00
|
|
|
await testImage(servers[2].url, 'thumbnail-playlist', playlist2.thumbnailPath)
|
2019-07-31 09:57:32 -04:00
|
|
|
|
|
|
|
expect(res.body.data.find(p => p.displayName === 'playlist 3')).to.not.be.undefined
|
|
|
|
})
|
2019-05-28 03:50:27 -04:00
|
|
|
})
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
describe('List playlists', function () {
|
2019-08-01 10:54:24 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should correctly list the playlists', async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getVideoPlaylistsList(servers[2].url, 1, 2, 'createdAt')
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(res.body.total).to.equal(3)
|
|
|
|
|
|
|
|
const data: VideoPlaylist[] = res.body.data
|
|
|
|
expect(data).to.have.lengthOf(2)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(data[0].displayName).to.equal('playlist 2')
|
|
|
|
expect(data[1].displayName).to.equal('playlist 3')
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getVideoPlaylistsList(servers[2].url, 1, 2, '-createdAt')
|
2019-07-31 09:57:32 -04:00
|
|
|
|
|
|
|
expect(res.body.total).to.equal(3)
|
|
|
|
|
|
|
|
const data: VideoPlaylist[] = res.body.data
|
|
|
|
expect(data).to.have.lengthOf(2)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(data[0].displayName).to.equal('playlist 2')
|
|
|
|
expect(data[1].displayName).to.equal('my super playlist')
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should list video channel playlists', async function () {
|
|
|
|
this.timeout(30000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getVideoChannelPlaylistsList(servers[0].url, 'root_channel', 0, 2, '-createdAt')
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(res.body.total).to.equal(1)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const data: VideoPlaylist[] = res.body.data
|
|
|
|
expect(data).to.have.lengthOf(1)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(data[0].displayName).to.equal('my super playlist')
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should list account playlists', async function () {
|
|
|
|
this.timeout(30000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getAccountPlaylistsList(servers[1].url, 'root', 1, 2, '-createdAt')
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(res.body.total).to.equal(2)
|
|
|
|
|
|
|
|
const data: VideoPlaylist[] = res.body.data
|
|
|
|
expect(data).to.have.lengthOf(1)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(data[0].displayName).to.equal('playlist 2')
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getAccountPlaylistsList(servers[1].url, 'root', 1, 2, 'createdAt')
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(res.body.total).to.equal(2)
|
|
|
|
|
|
|
|
const data: VideoPlaylist[] = res.body.data
|
|
|
|
expect(data).to.have.lengthOf(1)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(data[0].displayName).to.equal('playlist 3')
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
2019-12-27 03:04:04 -05:00
|
|
|
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getAccountPlaylistsList(servers[1].url, 'root', 0, 10, 'createdAt', '3')
|
2019-12-27 03:04:04 -05:00
|
|
|
|
|
|
|
expect(res.body.total).to.equal(1)
|
|
|
|
|
|
|
|
const data: VideoPlaylist[] = res.body.data
|
|
|
|
expect(data).to.have.lengthOf(1)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(data[0].displayName).to.equal('playlist 3')
|
2019-12-27 03:04:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getAccountPlaylistsList(servers[1].url, 'root', 0, 10, 'createdAt', '4')
|
2019-12-27 03:04:04 -05:00
|
|
|
|
|
|
|
expect(res.body.total).to.equal(0)
|
|
|
|
|
|
|
|
const data: VideoPlaylist[] = res.body.data
|
|
|
|
expect(data).to.have.lengthOf(0)
|
|
|
|
}
|
2019-07-31 09:57:32 -04:00
|
|
|
})
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should not list unlisted or private playlists', async function () {
|
|
|
|
this.timeout(30000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await createVideoPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[1].url,
|
|
|
|
token: servers[1].accessToken,
|
2019-03-05 04:58:44 -05:00
|
|
|
playlistAttrs: {
|
2019-07-31 09:57:32 -04:00
|
|
|
displayName: 'playlist unlisted',
|
|
|
|
privacy: VideoPlaylistPrivacy.UNLISTED
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await createVideoPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[1].url,
|
|
|
|
token: servers[1].accessToken,
|
2019-03-05 04:58:44 -05:00
|
|
|
playlistAttrs: {
|
2019-07-31 09:57:32 -04:00
|
|
|
displayName: 'playlist private',
|
|
|
|
privacy: VideoPlaylistPrivacy.PRIVATE
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2020-11-18 07:41:27 -05:00
|
|
|
await wait(3000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
for (const server of servers) {
|
|
|
|
const results = [
|
2020-01-31 10:56:52 -05:00
|
|
|
await getAccountPlaylistsList(server.url, 'root@localhost:' + servers[1].port, 0, 5, '-createdAt'),
|
2019-07-31 09:57:32 -04:00
|
|
|
await getVideoPlaylistsList(server.url, 0, 2, '-createdAt')
|
|
|
|
]
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(results[0].body.total).to.equal(2)
|
|
|
|
expect(results[1].body.total).to.equal(3)
|
2019-07-31 09:57:32 -04:00
|
|
|
|
|
|
|
for (const res of results) {
|
|
|
|
const data: VideoPlaylist[] = res.body.data
|
|
|
|
expect(data).to.have.lengthOf(2)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(data[0].displayName).to.equal('playlist 3')
|
|
|
|
expect(data[1].displayName).to.equal('playlist 2')
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
describe('Update playlists', function () {
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should update a playlist', async function () {
|
|
|
|
this.timeout(30000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await updateVideoPlaylist({
|
|
|
|
url: servers[1].url,
|
|
|
|
token: servers[1].accessToken,
|
|
|
|
playlistAttrs: {
|
|
|
|
displayName: 'playlist 3 updated',
|
|
|
|
description: 'description updated',
|
|
|
|
privacy: VideoPlaylistPrivacy.UNLISTED,
|
|
|
|
thumbnailfile: 'thumbnail.jpg',
|
|
|
|
videoChannelId: servers[1].videoChannel.id
|
|
|
|
},
|
|
|
|
playlistId: playlistServer2Id2
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
for (const server of servers) {
|
|
|
|
const res = await getVideoPlaylist(server.url, playlistServer2UUID2)
|
|
|
|
const playlist: VideoPlaylist = res.body
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(playlist.displayName).to.equal('playlist 3 updated')
|
|
|
|
expect(playlist.description).to.equal('description updated')
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(playlist.privacy.id).to.equal(VideoPlaylistPrivacy.UNLISTED)
|
|
|
|
expect(playlist.privacy.label).to.equal('Unlisted')
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(playlist.type.id).to.equal(VideoPlaylistType.REGULAR)
|
|
|
|
expect(playlist.type.label).to.equal('Regular')
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(playlist.videosLength).to.equal(2)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(playlist.ownerAccount.name).to.equal('root')
|
|
|
|
expect(playlist.ownerAccount.displayName).to.equal('root')
|
|
|
|
expect(playlist.videoChannel.name).to.equal('root_channel')
|
|
|
|
expect(playlist.videoChannel.displayName).to.equal('Main root channel')
|
|
|
|
}
|
|
|
|
})
|
2019-02-26 04:55:40 -05:00
|
|
|
})
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
describe('Element timestamps', function () {
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should create a playlist containing different startTimestamp/endTimestamp videos', async function () {
|
|
|
|
this.timeout(30000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const addVideo = (elementAttrs: any) => {
|
2020-01-31 10:56:52 -05:00
|
|
|
return addVideoInPlaylist({ url: servers[0].url, token: servers[0].accessToken, playlistId: playlistServer1Id, elementAttrs })
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const res = await createVideoPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
|
|
|
token: servers[0].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistAttrs: {
|
|
|
|
displayName: 'playlist 4',
|
|
|
|
privacy: VideoPlaylistPrivacy.PUBLIC,
|
2020-01-31 10:56:52 -05:00
|
|
|
videoChannelId: servers[0].videoChannel.id
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistServer1Id = res.body.videoPlaylist.id
|
|
|
|
playlistServer1UUID = res.body.videoPlaylist.uuid
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
await addVideo({ videoId: servers[0].videos[0].uuid, startTimestamp: 15, stopTimestamp: 28 })
|
|
|
|
await addVideo({ videoId: servers[2].videos[1].uuid, startTimestamp: 35 })
|
|
|
|
await addVideo({ videoId: servers[2].videos[2].uuid })
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await addVideo({ videoId: servers[0].videos[3].uuid, stopTimestamp: 35 })
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistElementServer1Video4 = res.body.videoPlaylistElement.id
|
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await addVideo({ videoId: servers[0].videos[4].uuid, startTimestamp: 45, stopTimestamp: 60 })
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistElementServer1Video5 = res.body.videoPlaylistElement.id
|
|
|
|
}
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
|
|
|
const res = await addVideo({ videoId: nsfwVideoServer1, startTimestamp: 5 })
|
|
|
|
playlistElementNSFW = res.body.videoPlaylistElement.id
|
2020-08-17 10:39:32 -04:00
|
|
|
|
|
|
|
await addVideo({ videoId: nsfwVideoServer1, startTimestamp: 4 })
|
|
|
|
await addVideo({ videoId: nsfwVideoServer1 })
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should correctly list playlist videos', async function () {
|
|
|
|
this.timeout(30000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
for (const server of servers) {
|
|
|
|
const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2020-08-17 10:39:32 -04:00
|
|
|
expect(res.body.total).to.equal(8)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const videoElements: VideoPlaylistElement[] = res.body.data
|
2020-08-17 10:39:32 -04:00
|
|
|
expect(videoElements).to.have.lengthOf(8)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videoElements[0].video.name).to.equal('video 0 server 1')
|
|
|
|
expect(videoElements[0].position).to.equal(1)
|
|
|
|
expect(videoElements[0].startTimestamp).to.equal(15)
|
|
|
|
expect(videoElements[0].stopTimestamp).to.equal(28)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videoElements[1].video.name).to.equal('video 1 server 3')
|
|
|
|
expect(videoElements[1].position).to.equal(2)
|
|
|
|
expect(videoElements[1].startTimestamp).to.equal(35)
|
|
|
|
expect(videoElements[1].stopTimestamp).to.be.null
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videoElements[2].video.name).to.equal('video 2 server 3')
|
|
|
|
expect(videoElements[2].position).to.equal(3)
|
|
|
|
expect(videoElements[2].startTimestamp).to.be.null
|
|
|
|
expect(videoElements[2].stopTimestamp).to.be.null
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videoElements[3].video.name).to.equal('video 3 server 1')
|
|
|
|
expect(videoElements[3].position).to.equal(4)
|
|
|
|
expect(videoElements[3].startTimestamp).to.be.null
|
|
|
|
expect(videoElements[3].stopTimestamp).to.equal(35)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videoElements[4].video.name).to.equal('video 4 server 1')
|
|
|
|
expect(videoElements[4].position).to.equal(5)
|
|
|
|
expect(videoElements[4].startTimestamp).to.equal(45)
|
|
|
|
expect(videoElements[4].stopTimestamp).to.equal(60)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videoElements[5].video.name).to.equal('NSFW video')
|
|
|
|
expect(videoElements[5].position).to.equal(6)
|
|
|
|
expect(videoElements[5].startTimestamp).to.equal(5)
|
|
|
|
expect(videoElements[5].stopTimestamp).to.be.null
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-08-17 10:39:32 -04:00
|
|
|
expect(videoElements[6].video.name).to.equal('NSFW video')
|
|
|
|
expect(videoElements[6].position).to.equal(7)
|
|
|
|
expect(videoElements[6].startTimestamp).to.equal(4)
|
|
|
|
expect(videoElements[6].stopTimestamp).to.be.null
|
|
|
|
|
|
|
|
expect(videoElements[7].video.name).to.equal('NSFW video')
|
|
|
|
expect(videoElements[7].position).to.equal(8)
|
|
|
|
expect(videoElements[7].startTimestamp).to.be.null
|
|
|
|
expect(videoElements[7].stopTimestamp).to.be.null
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const res3 = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 2)
|
|
|
|
expect(res3.body.data).to.have.lengthOf(2)
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
|
|
|
})
|
2019-07-31 09:57:32 -04:00
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
describe('Element type', function () {
|
|
|
|
let groupUser1: ServerInfo[]
|
|
|
|
let groupWithoutToken1: ServerInfo[]
|
|
|
|
let group1: ServerInfo[]
|
|
|
|
let group2: ServerInfo[]
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
let video1: string
|
|
|
|
let video2: string
|
|
|
|
let video3: string
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
before(async function () {
|
2020-11-16 07:49:09 -05:00
|
|
|
this.timeout(60000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
groupUser1 = [ Object.assign({}, servers[0], { accessToken: userAccessTokenServer1 }) ]
|
|
|
|
groupWithoutToken1 = [ Object.assign({}, servers[0], { accessToken: undefined }) ]
|
|
|
|
group1 = [ servers[0] ]
|
|
|
|
group2 = [ servers[1], servers[2] ]
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const res = await createVideoPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
2019-07-31 09:57:32 -04:00
|
|
|
token: userAccessTokenServer1,
|
|
|
|
playlistAttrs: {
|
|
|
|
displayName: 'playlist 56',
|
|
|
|
privacy: VideoPlaylistPrivacy.PUBLIC,
|
2020-01-31 10:56:52 -05:00
|
|
|
videoChannelId: servers[0].videoChannel.id
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
})
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const playlistServer1Id2 = res.body.videoPlaylist.id
|
|
|
|
playlistServer1UUID2 = res.body.videoPlaylist.uuid
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const addVideo = (elementAttrs: any) => {
|
2020-01-31 10:56:52 -05:00
|
|
|
return addVideoInPlaylist({ url: servers[0].url, token: userAccessTokenServer1, playlistId: playlistServer1Id2, elementAttrs })
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
video1 = (await uploadVideoAndGetId({ server: servers[0], videoName: 'video 89', token: userAccessTokenServer1 })).uuid
|
|
|
|
video2 = (await uploadVideoAndGetId({ server: servers[1], videoName: 'video 90' })).uuid
|
|
|
|
video3 = (await uploadVideoAndGetId({ server: servers[0], videoName: 'video 91', nsfw: true })).uuid
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-11-16 07:49:09 -05:00
|
|
|
await waitJobs(servers)
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await addVideo({ videoId: video1, startTimestamp: 15, stopTimestamp: 28 })
|
|
|
|
await addVideo({ videoId: video2, startTimestamp: 35 })
|
|
|
|
await addVideo({ videoId: video3 })
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should update the element type if the video is private', async function () {
|
|
|
|
this.timeout(20000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const name = 'video 89'
|
|
|
|
const position = 1
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
await updateVideo(servers[0].url, servers[0].accessToken, video1, { privacy: VideoPrivacy.PRIVATE })
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await checkPlaylistElementType(groupUser1, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
|
|
|
await checkPlaylistElementType(groupWithoutToken1, playlistServer1UUID2, VideoPlaylistElementType.PRIVATE, position, name, 3)
|
|
|
|
await checkPlaylistElementType(group1, playlistServer1UUID2, VideoPlaylistElementType.PRIVATE, position, name, 3)
|
|
|
|
await checkPlaylistElementType(group2, playlistServer1UUID2, VideoPlaylistElementType.DELETED, position, name, 3)
|
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
await updateVideo(servers[0].url, servers[0].accessToken, video1, { privacy: VideoPrivacy.PUBLIC })
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await checkPlaylistElementType(groupUser1, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
|
|
|
await checkPlaylistElementType(groupWithoutToken1, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
|
|
|
await checkPlaylistElementType(group1, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
|
|
|
// We deleted the video, so even if we recreated it, the old entry is still deleted
|
|
|
|
await checkPlaylistElementType(group2, playlistServer1UUID2, VideoPlaylistElementType.DELETED, position, name, 3)
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should update the element type if the video is blacklisted', async function () {
|
|
|
|
this.timeout(20000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const name = 'video 89'
|
|
|
|
const position = 1
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
await addVideoToBlacklist(servers[0].url, servers[0].accessToken, video1, 'reason', true)
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await checkPlaylistElementType(groupUser1, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
|
|
|
await checkPlaylistElementType(groupWithoutToken1, playlistServer1UUID2, VideoPlaylistElementType.UNAVAILABLE, position, name, 3)
|
|
|
|
await checkPlaylistElementType(group1, playlistServer1UUID2, VideoPlaylistElementType.UNAVAILABLE, position, name, 3)
|
|
|
|
await checkPlaylistElementType(group2, playlistServer1UUID2, VideoPlaylistElementType.DELETED, position, name, 3)
|
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
await removeVideoFromBlacklist(servers[0].url, servers[0].accessToken, video1)
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await checkPlaylistElementType(groupUser1, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
|
|
|
await checkPlaylistElementType(groupWithoutToken1, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
|
|
|
await checkPlaylistElementType(group1, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
|
|
|
// We deleted the video (because unfederated), so even if we recreated it, the old entry is still deleted
|
|
|
|
await checkPlaylistElementType(group2, playlistServer1UUID2, VideoPlaylistElementType.DELETED, position, name, 3)
|
|
|
|
}
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should update the element type if the account or server of the video is blocked', async function () {
|
|
|
|
this.timeout(90000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const name = 'video 90'
|
|
|
|
const position = 2
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
await addAccountToAccountBlocklist(servers[0].url, userAccessTokenServer1, 'root@localhost:' + servers[1].port)
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await checkPlaylistElementType(groupUser1, playlistServer1UUID2, VideoPlaylistElementType.UNAVAILABLE, position, name, 3)
|
|
|
|
await checkPlaylistElementType(group2, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
await removeAccountFromAccountBlocklist(servers[0].url, userAccessTokenServer1, 'root@localhost:' + servers[1].port)
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await checkPlaylistElementType(group2, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
await addServerToAccountBlocklist(servers[0].url, userAccessTokenServer1, 'localhost:' + servers[1].port)
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await checkPlaylistElementType(groupUser1, playlistServer1UUID2, VideoPlaylistElementType.UNAVAILABLE, position, name, 3)
|
|
|
|
await checkPlaylistElementType(group2, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
await removeServerFromAccountBlocklist(servers[0].url, userAccessTokenServer1, 'localhost:' + servers[1].port)
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await checkPlaylistElementType(group2, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
await addAccountToServerBlocklist(servers[0].url, servers[0].accessToken, 'root@localhost:' + servers[1].port)
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await checkPlaylistElementType(groupUser1, playlistServer1UUID2, VideoPlaylistElementType.UNAVAILABLE, position, name, 3)
|
|
|
|
await checkPlaylistElementType(group2, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
await removeAccountFromServerBlocklist(servers[0].url, servers[0].accessToken, 'root@localhost:' + servers[1].port)
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await checkPlaylistElementType(group2, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
await addServerToServerBlocklist(servers[0].url, servers[0].accessToken, 'localhost:' + servers[1].port)
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await checkPlaylistElementType(groupUser1, playlistServer1UUID2, VideoPlaylistElementType.UNAVAILABLE, position, name, 3)
|
|
|
|
await checkPlaylistElementType(group2, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
await removeServerFromServerBlocklist(servers[0].url, servers[0].accessToken, 'localhost:' + servers[1].port)
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await checkPlaylistElementType(group2, playlistServer1UUID2, VideoPlaylistElementType.REGULAR, position, name, 3)
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
2019-07-31 09:57:32 -04:00
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should hide the video if it is NSFW', async function () {
|
|
|
|
const res = await getPlaylistVideos(servers[0].url, userAccessTokenServer1, playlistServer1UUID2, 0, 10, { nsfw: false })
|
|
|
|
expect(res.body.total).to.equal(3)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const elements: VideoPlaylistElement[] = res.body.data
|
|
|
|
const element = elements.find(e => e.position === 3)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(element).to.exist
|
|
|
|
expect(element.video).to.be.null
|
|
|
|
expect(element.type).to.equal(VideoPlaylistElementType.UNAVAILABLE)
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
describe('Managing playlist elements', function () {
|
|
|
|
|
|
|
|
it('Should reorder the playlist', async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
|
|
|
{
|
|
|
|
await reorderVideosPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
|
|
|
token: servers[0].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistId: playlistServer1Id,
|
|
|
|
elementAttrs: {
|
|
|
|
startPosition: 2,
|
|
|
|
insertAfterPosition: 3
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
for (const server of servers) {
|
|
|
|
const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10)
|
|
|
|
const names = (res.body.data as VideoPlaylistElement[]).map(v => v.video.name)
|
|
|
|
|
|
|
|
expect(names).to.deep.equal([
|
|
|
|
'video 0 server 1',
|
|
|
|
'video 2 server 3',
|
|
|
|
'video 1 server 3',
|
|
|
|
'video 3 server 1',
|
|
|
|
'video 4 server 1',
|
2020-08-17 10:39:32 -04:00
|
|
|
'NSFW video',
|
|
|
|
'NSFW video',
|
2019-07-31 09:57:32 -04:00
|
|
|
'NSFW video'
|
|
|
|
])
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
|
|
|
await reorderVideosPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
|
|
|
token: servers[0].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistId: playlistServer1Id,
|
|
|
|
elementAttrs: {
|
|
|
|
startPosition: 1,
|
|
|
|
reorderLength: 3,
|
|
|
|
insertAfterPosition: 4
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
for (const server of servers) {
|
|
|
|
const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10)
|
|
|
|
const names = (res.body.data as VideoPlaylistElement[]).map(v => v.video.name)
|
|
|
|
|
|
|
|
expect(names).to.deep.equal([
|
|
|
|
'video 3 server 1',
|
|
|
|
'video 0 server 1',
|
|
|
|
'video 2 server 3',
|
|
|
|
'video 1 server 3',
|
|
|
|
'video 4 server 1',
|
2020-08-17 10:39:32 -04:00
|
|
|
'NSFW video',
|
|
|
|
'NSFW video',
|
2019-07-31 09:57:32 -04:00
|
|
|
'NSFW video'
|
|
|
|
])
|
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
|
|
|
await reorderVideosPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
|
|
|
token: servers[0].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistId: playlistServer1Id,
|
|
|
|
elementAttrs: {
|
|
|
|
startPosition: 6,
|
|
|
|
insertAfterPosition: 3
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
for (const server of servers) {
|
|
|
|
const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10)
|
|
|
|
const elements: VideoPlaylistElement[] = res.body.data
|
|
|
|
const names = elements.map(v => v.video.name)
|
|
|
|
|
|
|
|
expect(names).to.deep.equal([
|
|
|
|
'video 3 server 1',
|
|
|
|
'video 0 server 1',
|
|
|
|
'video 2 server 3',
|
|
|
|
'NSFW video',
|
|
|
|
'video 1 server 3',
|
2020-08-17 10:39:32 -04:00
|
|
|
'video 4 server 1',
|
|
|
|
'NSFW video',
|
|
|
|
'NSFW video'
|
2019-07-31 09:57:32 -04:00
|
|
|
])
|
|
|
|
|
|
|
|
for (let i = 1; i <= elements.length; i++) {
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(elements[i - 1].position).to.equal(i)
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should update startTimestamp/endTimestamp of some elements', async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
|
|
|
await updateVideoPlaylistElement({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
|
|
|
token: servers[0].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistId: playlistServer1Id,
|
|
|
|
playlistElementId: playlistElementServer1Video4,
|
|
|
|
elementAttrs: {
|
|
|
|
startTimestamp: 1
|
|
|
|
}
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await updateVideoPlaylistElement({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
|
|
|
token: servers[0].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistId: playlistServer1Id,
|
|
|
|
playlistElementId: playlistElementServer1Video5,
|
|
|
|
elementAttrs: {
|
|
|
|
stopTimestamp: null
|
|
|
|
}
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
for (const server of servers) {
|
|
|
|
const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10)
|
|
|
|
const elements: VideoPlaylistElement[] = res.body.data
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(elements[0].video.name).to.equal('video 3 server 1')
|
|
|
|
expect(elements[0].position).to.equal(1)
|
|
|
|
expect(elements[0].startTimestamp).to.equal(1)
|
|
|
|
expect(elements[0].stopTimestamp).to.equal(35)
|
2019-03-13 11:03:03 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(elements[5].video.name).to.equal('video 4 server 1')
|
|
|
|
expect(elements[5].position).to.equal(6)
|
|
|
|
expect(elements[5].startTimestamp).to.equal(45)
|
|
|
|
expect(elements[5].stopTimestamp).to.be.null
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
})
|
2019-03-13 11:03:03 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should check videos existence in my playlist', async function () {
|
|
|
|
const videoIds = [
|
2020-01-31 10:56:52 -05:00
|
|
|
servers[0].videos[0].id,
|
2019-07-31 09:57:32 -04:00
|
|
|
42000,
|
2020-01-31 10:56:52 -05:00
|
|
|
servers[0].videos[3].id,
|
2019-07-31 09:57:32 -04:00
|
|
|
43000,
|
2020-01-31 10:56:52 -05:00
|
|
|
servers[0].videos[4].id
|
2019-07-31 09:57:32 -04:00
|
|
|
]
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await doVideosExistInMyPlaylist(servers[0].url, servers[0].accessToken, videoIds)
|
2019-07-31 09:57:32 -04:00
|
|
|
const obj = res.body as VideoExistInPlaylist
|
|
|
|
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const elem = obj[servers[0].videos[0].id]
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(elem).to.have.lengthOf(1)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(elem[0].playlistElementId).to.exist
|
|
|
|
expect(elem[0].playlistId).to.equal(playlistServer1Id)
|
|
|
|
expect(elem[0].startTimestamp).to.equal(15)
|
|
|
|
expect(elem[0].stopTimestamp).to.equal(28)
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
2019-03-13 11:03:03 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const elem = obj[servers[0].videos[3].id]
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(elem).to.have.lengthOf(1)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(elem[0].playlistElementId).to.equal(playlistElementServer1Video4)
|
|
|
|
expect(elem[0].playlistId).to.equal(playlistServer1Id)
|
|
|
|
expect(elem[0].startTimestamp).to.equal(1)
|
|
|
|
expect(elem[0].stopTimestamp).to.equal(35)
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
2019-03-13 11:03:03 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const elem = obj[servers[0].videos[4].id]
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(elem).to.have.lengthOf(1)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(elem[0].playlistId).to.equal(playlistServer1Id)
|
|
|
|
expect(elem[0].startTimestamp).to.equal(45)
|
|
|
|
expect(elem[0].stopTimestamp).to.equal(null)
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
2019-03-13 11:03:03 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(obj[42000]).to.have.lengthOf(0)
|
|
|
|
expect(obj[43000]).to.have.lengthOf(0)
|
2019-07-31 09:57:32 -04:00
|
|
|
})
|
2019-03-14 04:19:03 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should automatically update updatedAt field of playlists', async function () {
|
2020-01-31 10:56:52 -05:00
|
|
|
const server = servers[1]
|
|
|
|
const videoId = servers[1].videos[5].id
|
2019-03-14 04:19:03 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
async function getPlaylistNames () {
|
|
|
|
const res = await getAccountPlaylistsListWithToken(server.url, server.accessToken, 'root', 0, 5, undefined, '-updatedAt')
|
2019-03-14 04:19:03 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
return (res.body.data as VideoPlaylist[]).map(p => p.displayName)
|
|
|
|
}
|
2019-03-14 04:19:03 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const elementAttrs = { videoId }
|
|
|
|
const res1 = await addVideoInPlaylist({ url: server.url, token: server.accessToken, playlistId: playlistServer2Id1, elementAttrs })
|
|
|
|
const res2 = await addVideoInPlaylist({ url: server.url, token: server.accessToken, playlistId: playlistServer2Id2, elementAttrs })
|
2019-03-14 04:19:03 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const element1 = res1.body.videoPlaylistElement.id
|
|
|
|
const element2 = res2.body.videoPlaylistElement.id
|
2019-03-14 04:19:03 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const names1 = await getPlaylistNames()
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(names1[0]).to.equal('playlist 3 updated')
|
|
|
|
expect(names1[1]).to.equal('playlist 2')
|
2019-03-14 04:19:03 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await removeVideoFromPlaylist({
|
|
|
|
url: server.url,
|
|
|
|
token: server.accessToken,
|
|
|
|
playlistId: playlistServer2Id1,
|
|
|
|
playlistElementId: element1
|
|
|
|
})
|
2019-03-14 04:19:03 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const names2 = await getPlaylistNames()
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(names2[0]).to.equal('playlist 2')
|
|
|
|
expect(names2[1]).to.equal('playlist 3 updated')
|
2019-03-14 04:19:03 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await removeVideoFromPlaylist({
|
|
|
|
url: server.url,
|
|
|
|
token: server.accessToken,
|
|
|
|
playlistId: playlistServer2Id2,
|
|
|
|
playlistElementId: element2
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const names3 = await getPlaylistNames()
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(names3[0]).to.equal('playlist 3 updated')
|
|
|
|
expect(names3[1]).to.equal('playlist 2')
|
2019-03-05 04:58:44 -05:00
|
|
|
})
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should delete some elements', async function () {
|
|
|
|
this.timeout(30000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await removeVideoFromPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
|
|
|
token: servers[0].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistId: playlistServer1Id,
|
|
|
|
playlistElementId: playlistElementServer1Video4
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await removeVideoFromPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
|
|
|
token: servers[0].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistId: playlistServer1Id,
|
|
|
|
playlistElementId: playlistElementNSFW
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
for (const server of servers) {
|
|
|
|
const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2020-08-17 10:39:32 -04:00
|
|
|
expect(res.body.total).to.equal(6)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const elements: VideoPlaylistElement[] = res.body.data
|
2020-08-17 10:39:32 -04:00
|
|
|
expect(elements).to.have.lengthOf(6)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(elements[0].video.name).to.equal('video 0 server 1')
|
|
|
|
expect(elements[0].position).to.equal(1)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(elements[1].video.name).to.equal('video 2 server 3')
|
|
|
|
expect(elements[1].position).to.equal(2)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(elements[2].video.name).to.equal('video 1 server 3')
|
|
|
|
expect(elements[2].position).to.equal(3)
|
2019-06-06 11:29:15 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(elements[3].video.name).to.equal('video 4 server 1')
|
|
|
|
expect(elements[3].position).to.equal(4)
|
2020-08-17 10:39:32 -04:00
|
|
|
|
|
|
|
expect(elements[4].video.name).to.equal('NSFW video')
|
|
|
|
expect(elements[4].position).to.equal(5)
|
|
|
|
|
|
|
|
expect(elements[5].video.name).to.equal('NSFW video')
|
|
|
|
expect(elements[5].position).to.equal(6)
|
2019-06-06 11:29:15 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should be able to create a public playlist, and set it to private', async function () {
|
|
|
|
this.timeout(30000)
|
2019-06-06 11:29:15 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const res = await createVideoPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
|
|
|
token: servers[0].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistAttrs: {
|
|
|
|
displayName: 'my super public playlist',
|
|
|
|
privacy: VideoPlaylistPrivacy.PUBLIC,
|
2020-01-31 10:56:52 -05:00
|
|
|
videoChannelId: servers[0].videoChannel.id
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
const videoPlaylistIds = res.body.videoPlaylist
|
2019-06-06 11:29:15 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-06-06 11:29:15 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
for (const server of servers) {
|
|
|
|
await getVideoPlaylist(server.url, videoPlaylistIds.uuid, 200)
|
|
|
|
}
|
2019-06-06 11:29:15 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const playlistAttrs = { privacy: VideoPlaylistPrivacy.PRIVATE }
|
2020-01-31 10:56:52 -05:00
|
|
|
await updateVideoPlaylist({ url: servers[0].url, token: servers[0].accessToken, playlistId: videoPlaylistIds.id, playlistAttrs })
|
2019-06-06 11:29:15 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-06-06 11:29:15 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
for (const server of [ servers[1], servers[2] ]) {
|
2019-07-31 09:57:32 -04:00
|
|
|
await getVideoPlaylist(server.url, videoPlaylistIds.uuid, 404)
|
|
|
|
}
|
2020-01-31 10:56:52 -05:00
|
|
|
await getVideoPlaylist(servers[0].url, videoPlaylistIds.uuid, 401)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
await getVideoPlaylistWithToken(servers[0].url, servers[0].accessToken, videoPlaylistIds.uuid, 200)
|
2019-07-31 09:57:32 -04:00
|
|
|
})
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
describe('Playlist deletion', function () {
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should delete the playlist on server 1 and delete on server 2 and 3', async function () {
|
|
|
|
this.timeout(30000)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
await deleteVideoPlaylist(servers[0].url, servers[0].accessToken, playlistServer1Id)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
for (const server of servers) {
|
|
|
|
await getVideoPlaylist(server.url, playlistServer1UUID, 404)
|
|
|
|
}
|
|
|
|
})
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should have deleted the thumbnail on server 1, 2 and 3', async function () {
|
|
|
|
this.timeout(30000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
for (const server of servers) {
|
|
|
|
await checkPlaylistFilesWereRemoved(playlistServer1UUID, server.internalServerNumber)
|
|
|
|
}
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should unfollow servers 1 and 2 and hide their playlists', async function () {
|
|
|
|
this.timeout(30000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const finder = data => data.find(p => p.displayName === 'my super playlist')
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getVideoPlaylistsList(servers[2].url, 0, 5)
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(res.body.total).to.equal(3)
|
|
|
|
expect(finder(res.body.data)).to.not.be.undefined
|
|
|
|
}
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
await unfollow(servers[2].url, servers[2].accessToken, servers[0])
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getVideoPlaylistsList(servers[2].url, 0, 5)
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(res.body.total).to.equal(1)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(finder(res.body.data)).to.be.undefined
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should delete a channel and put the associated playlist in private mode', async function () {
|
|
|
|
this.timeout(30000)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await addVideoChannel(servers[0].url, servers[0].accessToken, { name: 'super_channel', displayName: 'super channel' })
|
2019-07-31 09:57:32 -04:00
|
|
|
const videoChannelId = res.body.videoChannel.id
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const res2 = await createVideoPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
|
|
|
token: servers[0].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
playlistAttrs: {
|
|
|
|
displayName: 'channel playlist',
|
|
|
|
privacy: VideoPlaylistPrivacy.PUBLIC,
|
|
|
|
videoChannelId
|
|
|
|
}
|
|
|
|
})
|
|
|
|
const videoPlaylistUUID = res2.body.videoPlaylist.uuid
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
await deleteVideoChannel(servers[0].url, servers[0].accessToken, 'super_channel')
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const res3 = await getVideoPlaylistWithToken(servers[0].url, servers[0].accessToken, videoPlaylistUUID)
|
2019-07-31 09:57:32 -04:00
|
|
|
expect(res3.body.displayName).to.equal('channel playlist')
|
|
|
|
expect(res3.body.privacy.id).to.equal(VideoPlaylistPrivacy.PRIVATE)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
await getVideoPlaylist(servers[1].url, videoPlaylistUUID, 404)
|
2019-04-15 04:49:46 -04:00
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
it('Should delete an account and delete its playlists', async function () {
|
|
|
|
this.timeout(30000)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const user = { username: 'user_1', password: 'password' }
|
|
|
|
const res = await createUser({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
|
|
|
accessToken: servers[0].accessToken,
|
2019-07-31 09:57:32 -04:00
|
|
|
username: user.username,
|
|
|
|
password: user.password
|
|
|
|
})
|
2019-03-14 10:29:23 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const userId = res.body.user.id
|
2020-01-31 10:56:52 -05:00
|
|
|
const userAccessToken = await userLogin(servers[0], user)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const resChannel = await getMyUserInformation(servers[0].url, userAccessToken)
|
|
|
|
const userChannel = (resChannel.body as User).videoChannels[0]
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await createVideoPlaylist({
|
2020-01-31 10:56:52 -05:00
|
|
|
url: servers[0].url,
|
2019-07-31 09:57:32 -04:00
|
|
|
token: userAccessToken,
|
|
|
|
playlistAttrs: {
|
|
|
|
displayName: 'playlist to be deleted',
|
|
|
|
privacy: VideoPlaylistPrivacy.PUBLIC,
|
|
|
|
videoChannelId: userChannel.id
|
|
|
|
}
|
|
|
|
})
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
const finder = data => data.find(p => p.displayName === 'playlist to be deleted')
|
|
|
|
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
for (const server of [ servers[0], servers[1] ]) {
|
2019-07-31 09:57:32 -04:00
|
|
|
const res = await getVideoPlaylistsList(server.url, 0, 15)
|
|
|
|
expect(finder(res.body.data)).to.not.be.undefined
|
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
await removeUser(servers[0].url, userId, servers[0].accessToken)
|
2019-07-31 09:57:32 -04:00
|
|
|
await waitJobs(servers)
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
for (const server of [ servers[0], servers[1] ]) {
|
2019-07-31 09:57:32 -04:00
|
|
|
const res = await getVideoPlaylistsList(server.url, 0, 15)
|
|
|
|
expect(finder(res.body.data)).to.be.undefined
|
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
2019-07-31 09:57:32 -04:00
|
|
|
})
|
2019-02-26 04:55:40 -05:00
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests(servers)
|
2019-02-26 04:55:40 -05:00
|
|
|
})
|
|
|
|
})
|