PeerTube/server/tests/api/videos/video-channels.ts

553 lines
17 KiB
TypeScript
Raw Normal View History

2020-01-31 16:56:52 +01:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2017-10-24 19:41:30 +02:00
import 'mocha'
2020-06-16 15:52:05 +02:00
import * as chai from 'chai'
2021-04-08 11:23:45 +02:00
import { basename } from 'path'
import { ACTOR_IMAGES_SIZE } from '@server/initializers/constants'
import {
2019-04-24 15:10:37 +02:00
cleanupTests,
2018-08-17 15:45:42 +02:00
createUser,
2021-04-07 10:36:13 +02:00
deleteVideoChannelImage,
doubleFollow,
2020-01-31 16:56:52 +01:00
flushAndRunMultipleServers,
2021-04-08 11:23:45 +02:00
getActorImage,
2020-01-31 16:56:52 +01:00
getVideo,
2021-04-07 17:01:29 +02:00
getVideoChannel,
2018-11-19 17:08:18 +01:00
getVideoChannelVideos,
setDefaultVideoChannel,
2018-11-19 17:08:18 +01:00
testImage,
updateVideo,
2021-04-07 10:36:13 +02:00
updateVideoChannelImage,
2018-11-19 17:08:18 +01:00
uploadVideo,
2020-03-27 22:26:39 +01:00
userLogin,
wait
} from '../../../../shared/extra-utils'
2017-10-24 19:41:30 +02:00
import {
addVideoChannel,
deleteVideoChannel,
getAccountVideoChannelsList,
2017-10-24 19:41:30 +02:00
getMyUserInformation,
getVideoChannelsList,
ServerInfo,
setAccessTokensToServers,
2020-03-27 22:26:39 +01:00
updateVideoChannel,
viewVideo
} from '../../../../shared/extra-utils/index'
import { waitJobs } from '../../../../shared/extra-utils/server/jobs'
2020-06-16 15:52:05 +02:00
import { User, Video, VideoChannel, VideoDetails } from '../../../../shared/index'
2017-10-24 19:41:30 +02:00
const expect = chai.expect
2021-04-07 10:36:13 +02:00
async function findChannel (server: ServerInfo, channelId: number) {
const res = await getVideoChannelsList(server.url, 0, 5, '-name')
const videoChannel = res.body.data.find(c => c.id === channelId)
return videoChannel as VideoChannel
}
describe('Test video channels', function () {
let servers: ServerInfo[]
2017-10-24 19:41:30 +02:00
let userInfo: User
2018-05-11 15:10:13 +02:00
let secondVideoChannelId: number
let totoChannel: number
2018-05-11 15:10:13 +02:00
let videoUUID: string
let accountName: string
2017-10-24 19:41:30 +02:00
before(async function () {
2019-04-26 08:50:52 +02:00
this.timeout(60000)
2017-10-24 19:41:30 +02:00
servers = await flushAndRunMultipleServers(2)
await setAccessTokensToServers(servers)
await setDefaultVideoChannel(servers)
2018-04-24 17:05:32 +02:00
await doubleFollow(servers[0], servers[1])
2017-10-24 19:41:30 +02:00
})
it('Should have one video channel (created with root)', async () => {
const res = await getVideoChannelsList(servers[0].url, 0, 2)
2017-10-24 19:41:30 +02:00
expect(res.body.total).to.equal(1)
expect(res.body.data).to.be.an('array')
expect(res.body.data).to.have.lengthOf(1)
})
it('Should create another video channel', async function () {
this.timeout(10000)
2018-05-11 15:10:13 +02:00
{
const videoChannel = {
2018-08-17 15:45:42 +02:00
name: 'second_video_channel',
2018-05-11 15:10:13 +02:00
displayName: 'second video channel',
description: 'super video channel description',
support: 'super video channel support text'
}
2020-01-31 16:56:52 +01:00
const res = await addVideoChannel(servers[0].url, servers[0].accessToken, videoChannel)
2018-05-11 15:10:13 +02:00
secondVideoChannelId = res.body.videoChannel.id
2017-10-24 19:41:30 +02:00
}
// The channel is 1 is propagated to servers 2
2018-05-11 15:10:13 +02:00
{
const videoAttributesArg = { name: 'my video name', channelId: secondVideoChannelId, support: 'video support field' }
2020-01-31 16:56:52 +01:00
const res = await uploadVideo(servers[0].url, servers[0].accessToken, videoAttributesArg)
2018-05-11 15:10:13 +02:00
videoUUID = res.body.video.uuid
}
await waitJobs(servers)
2017-10-24 19:41:30 +02:00
})
it('Should have two video channels when getting my information', async () => {
const res = await getMyUserInformation(servers[0].url, servers[0].accessToken)
2017-10-24 19:41:30 +02:00
userInfo = res.body
expect(userInfo.videoChannels).to.be.an('array')
expect(userInfo.videoChannels).to.have.lengthOf(2)
const videoChannels = userInfo.videoChannels
2018-08-17 15:45:42 +02:00
expect(videoChannels[0].name).to.equal('root_channel')
expect(videoChannels[0].displayName).to.equal('Main root channel')
expect(videoChannels[1].name).to.equal('second_video_channel')
2018-01-11 11:40:18 +01:00
expect(videoChannels[1].displayName).to.equal('second video channel')
2017-10-24 19:41:30 +02:00
expect(videoChannels[1].description).to.equal('super video channel description')
expect(videoChannels[1].support).to.equal('super video channel support text')
accountName = userInfo.account.name + '@' + userInfo.account.host
2017-10-24 19:41:30 +02:00
})
it('Should have two video channels when getting account channels on server 1', async function () {
const res = await getAccountVideoChannelsList({
2020-01-31 16:56:52 +01:00
url: servers[0].url,
accountName
})
2017-10-24 19:41:30 +02:00
expect(res.body.total).to.equal(2)
expect(res.body.data).to.be.an('array')
expect(res.body.data).to.have.lengthOf(2)
const videoChannels = res.body.data
2018-08-17 15:45:42 +02:00
expect(videoChannels[0].name).to.equal('root_channel')
expect(videoChannels[0].displayName).to.equal('Main root channel')
expect(videoChannels[1].name).to.equal('second_video_channel')
2018-01-11 11:40:18 +01:00
expect(videoChannels[1].displayName).to.equal('second video channel')
2017-10-24 19:41:30 +02:00
expect(videoChannels[1].description).to.equal('super video channel description')
expect(videoChannels[1].support).to.equal('super video channel support text')
})
it('Should paginate and sort account channels', async function () {
{
const res = await getAccountVideoChannelsList({
2020-01-31 16:56:52 +01:00
url: servers[0].url,
accountName,
start: 0,
count: 1,
sort: 'createdAt'
})
expect(res.body.total).to.equal(2)
expect(res.body.data).to.have.lengthOf(1)
2020-01-31 16:56:52 +01:00
const videoChannel: VideoChannel = res.body.data[0]
expect(videoChannel.name).to.equal('root_channel')
}
{
const res = await getAccountVideoChannelsList({
2020-01-31 16:56:52 +01:00
url: servers[0].url,
accountName,
start: 0,
count: 1,
sort: '-createdAt'
})
expect(res.body.total).to.equal(2)
expect(res.body.data).to.have.lengthOf(1)
2020-01-31 16:56:52 +01:00
const videoChannel: VideoChannel = res.body.data[0]
expect(videoChannel.name).to.equal('second_video_channel')
}
{
const res = await getAccountVideoChannelsList({
2020-01-31 16:56:52 +01:00
url: servers[0].url,
accountName,
start: 1,
count: 1,
sort: '-createdAt'
})
expect(res.body.total).to.equal(2)
expect(res.body.data).to.have.lengthOf(1)
2020-01-31 16:56:52 +01:00
const videoChannel: VideoChannel = res.body.data[0]
expect(videoChannel.name).to.equal('root_channel')
}
})
it('Should have one video channel when getting account channels on server 2', async function () {
const res = await getAccountVideoChannelsList({
2020-01-31 16:56:52 +01:00
url: servers[1].url,
accountName
})
expect(res.body.total).to.equal(1)
expect(res.body.data).to.be.an('array')
expect(res.body.data).to.have.lengthOf(1)
2017-10-24 19:41:30 +02:00
const videoChannels = res.body.data
2018-08-17 15:45:42 +02:00
expect(videoChannels[0].name).to.equal('second_video_channel')
expect(videoChannels[0].displayName).to.equal('second video channel')
expect(videoChannels[0].description).to.equal('super video channel description')
expect(videoChannels[0].support).to.equal('super video channel support text')
2017-10-24 19:41:30 +02:00
})
it('Should list video channels', async function () {
const res = await getVideoChannelsList(servers[0].url, 1, 1, '-name')
2017-10-24 19:41:30 +02:00
expect(res.body.total).to.equal(2)
expect(res.body.data).to.be.an('array')
expect(res.body.data).to.have.lengthOf(1)
2018-08-17 15:45:42 +02:00
expect(res.body.data[0].name).to.equal('root_channel')
expect(res.body.data[0].displayName).to.equal('Main root channel')
2017-10-24 19:41:30 +02:00
})
it('Should update video channel', async function () {
this.timeout(15000)
2017-10-24 19:41:30 +02:00
const videoChannelAttributes = {
2018-04-26 16:11:38 +02:00
displayName: 'video channel updated',
description: 'video channel description updated',
support: 'support updated'
2017-10-24 19:41:30 +02:00
}
2018-08-17 15:45:42 +02:00
await updateVideoChannel(servers[0].url, servers[0].accessToken, 'second_video_channel', videoChannelAttributes)
await waitJobs(servers)
2017-10-24 19:41:30 +02:00
})
it('Should have video channel updated', async function () {
for (const server of servers) {
const res = await getVideoChannelsList(server.url, 0, 1, '-name')
2017-10-24 19:41:30 +02:00
expect(res.body.total).to.equal(2)
expect(res.body.data).to.be.an('array')
expect(res.body.data).to.have.lengthOf(1)
2018-08-17 15:45:42 +02:00
expect(res.body.data[0].name).to.equal('second_video_channel')
expect(res.body.data[0].displayName).to.equal('video channel updated')
expect(res.body.data[0].description).to.equal('video channel description updated')
expect(res.body.data[0].support).to.equal('support updated')
}
})
it('Should not have updated the video support field', async function () {
for (const server of servers) {
const res = await getVideo(server.url, videoUUID)
const video: VideoDetails = res.body
expect(video.support).to.equal('video support field')
}
})
it('Should update the channel support field and update videos too', async function () {
this.timeout(35000)
const videoChannelAttributes = {
support: 'video channel support text updated',
bulkVideosSupportUpdate: true
}
await updateVideoChannel(servers[0].url, servers[0].accessToken, 'second_video_channel', videoChannelAttributes)
await waitJobs(servers)
for (const server of servers) {
const res = await getVideo(server.url, videoUUID)
const video: VideoDetails = res.body
expect(video.support).to.equal(videoChannelAttributes.support)
}
2017-10-24 19:41:30 +02:00
})
it('Should update video channel avatar', async function () {
2021-04-07 10:36:13 +02:00
this.timeout(15000)
const fixture = 'avatar.png'
2021-04-07 10:36:13 +02:00
await updateVideoChannelImage({
url: servers[0].url,
accessToken: servers[0].accessToken,
2018-08-17 15:45:42 +02:00
videoChannelName: 'second_video_channel',
2021-04-07 10:36:13 +02:00
fixture,
type: 'avatar'
})
await waitJobs(servers)
2021-04-07 10:36:13 +02:00
for (const server of servers) {
const videoChannel = await findChannel(server, secondVideoChannelId)
await testImage(server.url, 'avatar-resized', videoChannel.avatar.path, '.png')
2021-04-08 11:23:45 +02:00
const row = await getActorImage(server.internalServerNumber, basename(videoChannel.avatar.path))
expect(row.height).to.equal(ACTOR_IMAGES_SIZE.AVATARS.height)
expect(row.width).to.equal(ACTOR_IMAGES_SIZE.AVATARS.width)
2021-04-07 10:36:13 +02:00
}
})
2021-04-07 10:36:13 +02:00
it('Should update video channel banner', async function () {
this.timeout(15000)
const fixture = 'banner.jpg'
await updateVideoChannelImage({
url: servers[0].url,
accessToken: servers[0].accessToken,
videoChannelName: 'second_video_channel',
fixture,
type: 'banner'
})
await waitJobs(servers)
for (const server of servers) {
2021-04-07 17:01:29 +02:00
const res = await getVideoChannel(server.url, 'second_video_channel@' + servers[0].host)
const videoChannel = res.body
2021-04-07 10:36:13 +02:00
await testImage(server.url, 'banner-resized', videoChannel.banner.path)
2021-04-08 11:23:45 +02:00
const row = await getActorImage(server.internalServerNumber, basename(videoChannel.banner.path))
expect(row.height).to.equal(ACTOR_IMAGES_SIZE.BANNERS.height)
expect(row.width).to.equal(ACTOR_IMAGES_SIZE.BANNERS.width)
2021-04-07 10:36:13 +02:00
}
})
2021-04-07 10:36:13 +02:00
it('Should delete the video channel avatar', async function () {
this.timeout(15000)
await deleteVideoChannelImage({
url: servers[0].url,
accessToken: servers[0].accessToken,
videoChannelName: 'second_video_channel',
type: 'avatar'
})
await waitJobs(servers)
for (const server of servers) {
const videoChannel = await findChannel(server, secondVideoChannelId)
expect(videoChannel.avatar).to.be.null
}
})
2021-04-07 10:36:13 +02:00
it('Should delete the video channel banner', async function () {
this.timeout(15000)
await deleteVideoChannelImage({
url: servers[0].url,
accessToken: servers[0].accessToken,
videoChannelName: 'second_video_channel',
type: 'banner'
})
2017-10-24 19:41:30 +02:00
2021-04-07 10:36:13 +02:00
await waitJobs(servers)
for (const server of servers) {
const videoChannel = await findChannel(server, secondVideoChannelId)
expect(videoChannel.banner).to.be.null
}
2017-10-24 19:41:30 +02:00
})
2018-05-11 15:10:13 +02:00
it('Should list the second video channel videos', async function () {
2018-04-25 10:21:38 +02:00
this.timeout(10000)
for (const server of servers) {
2019-04-26 08:50:52 +02:00
const channelURI = 'second_video_channel@localhost:' + servers[0].port
2018-08-17 15:45:42 +02:00
const res1 = await getVideoChannelVideos(server.url, server.accessToken, channelURI, 0, 5)
2018-05-11 15:10:13 +02:00
expect(res1.body.total).to.equal(1)
expect(res1.body.data).to.be.an('array')
expect(res1.body.data).to.have.lengthOf(1)
expect(res1.body.data[0].name).to.equal('my video name')
}
})
it('Should change the video channel of a video', async function () {
this.timeout(10000)
await updateVideo(servers[0].url, servers[0].accessToken, videoUUID, { channelId: servers[0].videoChannel.id })
2018-05-11 15:10:13 +02:00
await waitJobs(servers)
2018-05-11 15:10:13 +02:00
})
it('Should list the first video channel videos', async function () {
this.timeout(10000)
for (const server of servers) {
2019-04-26 08:50:52 +02:00
const secondChannelURI = 'second_video_channel@localhost:' + servers[0].port
2018-08-17 15:45:42 +02:00
const res1 = await getVideoChannelVideos(server.url, server.accessToken, secondChannelURI, 0, 5)
2018-05-11 15:10:13 +02:00
expect(res1.body.total).to.equal(0)
2019-04-26 08:50:52 +02:00
const channelURI = 'root_channel@localhost:' + servers[0].port
2018-08-17 15:45:42 +02:00
const res2 = await getVideoChannelVideos(server.url, server.accessToken, channelURI, 0, 5)
2018-05-11 15:10:13 +02:00
expect(res2.body.total).to.equal(1)
const videos: Video[] = res2.body.data
expect(videos).to.be.an('array')
expect(videos).to.have.lengthOf(1)
expect(videos[0].name).to.equal('my video name')
2018-04-25 10:21:38 +02:00
}
})
it('Should delete video channel', async function () {
2018-08-17 15:45:42 +02:00
await deleteVideoChannel(servers[0].url, servers[0].accessToken, 'second_video_channel')
2017-10-24 19:41:30 +02:00
})
it('Should have video channel deleted', async function () {
const res = await getVideoChannelsList(servers[0].url, 0, 10)
2017-10-24 19:41:30 +02:00
expect(res.body.total).to.equal(1)
expect(res.body.data).to.be.an('array')
expect(res.body.data).to.have.lengthOf(1)
2018-08-17 15:45:42 +02:00
expect(res.body.data[0].displayName).to.equal('Main root channel')
})
it('Should create the main channel with an uuid if there is a conflict', async function () {
{
const videoChannel = { name: 'toto_channel', displayName: 'My toto channel' }
const res = await addVideoChannel(servers[0].url, servers[0].accessToken, videoChannel)
totoChannel = res.body.videoChannel.id
2018-08-17 15:45:42 +02:00
}
{
2020-01-31 16:56:52 +01:00
await createUser({ url: servers[0].url, accessToken: servers[0].accessToken, username: 'toto', password: 'password' })
const accessToken = await userLogin(servers[0], { username: 'toto', password: 'password' })
2018-08-17 15:45:42 +02:00
2020-01-31 16:56:52 +01:00
const res = await getMyUserInformation(servers[0].url, accessToken)
const videoChannel = res.body.videoChannels[0]
2018-08-17 15:45:42 +02:00
expect(videoChannel.name).to.match(/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/)
}
2017-10-24 19:41:30 +02:00
})
2020-06-16 14:13:01 +02:00
it('Should report correct channel views per days', async function () {
this.timeout(10000)
2020-03-27 22:26:39 +01:00
{
const res = await getAccountVideoChannelsList({
url: servers[0].url,
accountName,
2020-03-27 22:26:39 +01:00
withStats: true
})
2020-06-16 14:13:01 +02:00
const channels: VideoChannel[] = res.body.data
for (const channel of channels) {
2020-03-27 22:26:39 +01:00
expect(channel).to.haveOwnProperty('viewsPerDay')
expect(channel.viewsPerDay).to.have.length(30 + 1) // daysPrior + today
2020-06-16 14:13:01 +02:00
for (const v of channel.viewsPerDay) {
2020-03-27 22:26:39 +01:00
expect(v.date).to.be.an('string')
expect(v.views).to.equal(0)
2020-06-16 14:13:01 +02:00
}
}
2020-03-27 22:26:39 +01:00
}
{
// video has been posted on channel servers[0].videoChannel.id since last update
2020-03-27 22:26:39 +01:00
await viewVideo(servers[0].url, videoUUID, 204, '0.0.0.1,127.0.0.1')
await viewVideo(servers[0].url, videoUUID, 204, '0.0.0.2,127.0.0.1')
// Wait the repeatable job
await wait(8000)
const res = await getAccountVideoChannelsList({
url: servers[0].url,
accountName,
2020-03-27 22:26:39 +01:00
withStats: true
})
const channelWithView = res.body.data.find((channel: VideoChannel) => channel.id === servers[0].videoChannel.id)
2020-03-27 22:26:39 +01:00
expect(channelWithView.viewsPerDay.slice(-1)[0].views).to.equal(2)
}
})
2020-06-16 14:13:01 +02:00
it('Should report correct videos count', async function () {
const res = await getAccountVideoChannelsList({
url: servers[0].url,
accountName,
2020-06-16 14:13:01 +02:00
withStats: true
})
const channels: VideoChannel[] = res.body.data
const totoChannel = channels.find(c => c.name === 'toto_channel')
const rootChannel = channels.find(c => c.name === 'root_channel')
expect(rootChannel.videosCount).to.equal(1)
expect(totoChannel.videosCount).to.equal(0)
})
it('Should search among account video channels', async function () {
{
const res = await getAccountVideoChannelsList({
url: servers[0].url,
accountName,
search: 'root'
})
expect(res.body.total).to.equal(1)
const channels = res.body.data
expect(channels).to.have.lengthOf(1)
}
{
const res = await getAccountVideoChannelsList({
url: servers[0].url,
accountName,
search: 'does not exist'
})
expect(res.body.total).to.equal(0)
const channels = res.body.data
expect(channels).to.have.lengthOf(0)
}
})
it('Should list channels by updatedAt desc if a video has been uploaded', async function () {
this.timeout(30000)
await uploadVideo(servers[0].url, servers[0].accessToken, { channelId: totoChannel })
await waitJobs(servers)
for (const server of servers) {
const res = await getAccountVideoChannelsList({
url: server.url,
accountName,
sort: '-updatedAt'
})
const channels: VideoChannel[] = res.body.data
expect(channels[0].name).to.equal('toto_channel')
expect(channels[1].name).to.equal('root_channel')
}
await uploadVideo(servers[0].url, servers[0].accessToken, { channelId: servers[0].videoChannel.id })
await waitJobs(servers)
for (const server of servers) {
const res = await getAccountVideoChannelsList({
url: server.url,
accountName,
sort: '-updatedAt'
})
const channels: VideoChannel[] = res.body.data
expect(channels[0].name).to.equal('root_channel')
expect(channels[1].name).to.equal('toto_channel')
}
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests(servers)
2017-10-24 19:41:30 +02:00
})
})