PeerTube/server/tests/api/videos/single-server.ts

475 lines
14 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-09-04 21:21:47 +02:00
import * as chai from 'chai'
2017-09-04 21:21:47 +02:00
import { keyBy } from 'lodash'
import 'mocha'
2017-12-29 10:46:27 +01:00
import { VideoPrivacy } from '../../../../shared/models/videos'
2017-09-04 21:21:47 +02:00
import {
checkVideoFilesWereRemoved,
2019-04-24 15:10:37 +02:00
cleanupTests,
completeVideoCheck,
2019-04-24 15:10:37 +02:00
flushAndRunServer,
getVideo,
getVideoCategories,
getVideoLanguages,
getVideoLicences,
getVideoPrivacies,
getVideosList,
getVideosListPagination,
getVideosListSort,
2018-07-20 14:35:18 +02:00
getVideosWithFilters,
rateVideo,
removeVideo,
ServerInfo,
setAccessTokensToServers,
testImage,
updateVideo,
uploadVideo,
viewVideo,
wait
} from '../../../../shared/extra-utils'
2017-09-04 21:21:47 +02:00
const expect = chai.expect
2017-11-17 15:20:42 +01:00
describe('Test a single server', function () {
2017-09-04 21:21:47 +02:00
let server: ServerInfo = null
let videoId = -1
let videoId2 = -1
2017-09-04 21:21:47 +02:00
let videoUUID = ''
let videosListBase: any[] = null
2019-04-26 08:50:52 +02:00
const getCheckAttributes = () => ({
2017-12-29 10:46:27 +01:00
name: 'my super name',
category: 2,
licence: 6,
2018-04-23 14:39:52 +02:00
language: 'zh',
2017-12-29 10:46:27 +01:00
nsfw: true,
description: 'my super description',
support: 'my super support text',
2018-03-12 11:06:15 +01:00
account: {
name: 'root',
host: 'localhost:' + server.port
2018-03-12 11:06:15 +01:00
},
2017-12-29 10:46:27 +01:00
isLocal: true,
2017-12-29 11:51:55 +01:00
duration: 5,
2017-12-29 10:46:27 +01:00
tags: [ 'tag1', 'tag2', 'tag3' ],
privacy: VideoPrivacy.PUBLIC,
2018-01-03 10:12:36 +01:00
commentsEnabled: true,
downloadEnabled: true,
2017-12-29 10:46:27 +01:00
channel: {
displayName: 'Main root channel',
name: 'root_channel',
2017-12-29 11:51:55 +01:00
description: '',
2017-12-29 10:46:27 +01:00
isLocal: true
},
fixture: 'video_short.webm',
files: [
{
resolution: 720,
size: 218910
}
]
2019-04-26 08:50:52 +02:00
})
2017-12-29 10:46:27 +01:00
2019-04-26 08:50:52 +02:00
const updateCheckAttributes = () => ({
2017-12-29 10:46:27 +01:00
name: 'my super video updated',
category: 4,
licence: 2,
2018-04-23 14:39:52 +02:00
language: 'ar',
2018-01-03 10:12:36 +01:00
nsfw: false,
2017-12-29 10:46:27 +01:00
description: 'my super description updated',
support: 'my super support text updated',
2018-03-12 11:06:15 +01:00
account: {
name: 'root',
host: 'localhost:' + server.port
2018-03-12 11:06:15 +01:00
},
2017-12-29 10:46:27 +01:00
isLocal: true,
tags: [ 'tagup1', 'tagup2' ],
privacy: VideoPrivacy.PUBLIC,
2017-12-29 11:51:55 +01:00
duration: 5,
2018-01-03 10:12:36 +01:00
commentsEnabled: false,
downloadEnabled: false,
2017-12-29 10:46:27 +01:00
channel: {
name: 'root_channel',
displayName: 'Main root channel',
2017-12-29 11:51:55 +01:00
description: '',
2017-12-29 10:46:27 +01:00
isLocal: true
},
fixture: 'video_short3.webm',
files: [
{
resolution: 720,
size: 292677
}
]
2019-04-26 08:50:52 +02:00
})
2017-12-29 10:46:27 +01:00
2017-09-04 21:21:47 +02:00
before(async function () {
2018-01-18 18:10:45 +01:00
this.timeout(30000)
2017-09-04 21:21:47 +02:00
2019-04-24 10:53:40 +02:00
server = await flushAndRunServer(1)
2017-09-04 21:21:47 +02:00
await setAccessTokensToServers([ server ])
})
it('Should list video categories', async function () {
const res = await getVideoCategories(server.url)
const categories = res.body
expect(Object.keys(categories)).to.have.length.above(10)
expect(categories[11]).to.equal('News & Politics')
2017-09-04 21:21:47 +02:00
})
it('Should list video licences', async function () {
const res = await getVideoLicences(server.url)
const licences = res.body
expect(Object.keys(licences)).to.have.length.above(5)
expect(licences[3]).to.equal('Attribution - No Derivatives')
})
it('Should list video languages', async function () {
const res = await getVideoLanguages(server.url)
const languages = res.body
expect(Object.keys(languages)).to.have.length.above(5)
2018-04-23 14:39:52 +02:00
expect(languages['ru']).to.equal('Russian')
2017-09-04 21:21:47 +02:00
})
it('Should list video privacies', async function () {
const res = await getVideoPrivacies(server.url)
const privacies = res.body
expect(Object.keys(privacies)).to.have.length.at.least(3)
expect(privacies[3]).to.equal('Private')
})
2017-09-04 21:21:47 +02:00
it('Should not have videos', async function () {
const res = await getVideosList(server.url)
expect(res.body.total).to.equal(0)
expect(res.body.data).to.be.an('array')
expect(res.body.data.length).to.equal(0)
})
it('Should upload the video', async function () {
const videoAttributes = {
name: 'my super name',
category: 2,
nsfw: true,
licence: 6,
tags: [ 'tag1', 'tag2', 'tag3' ]
}
2017-12-08 08:39:15 +01:00
const res = await uploadVideo(server.url, server.accessToken, videoAttributes)
expect(res.body.video).to.not.be.undefined
expect(res.body.video.id).to.equal(1)
expect(res.body.video.uuid).to.have.length.above(5)
2017-12-29 10:46:27 +01:00
videoId = res.body.video.id
videoUUID = res.body.video.uuid
2017-09-04 21:21:47 +02:00
})
2017-12-29 10:46:27 +01:00
it('Should get and seed the uploaded video', async function () {
2018-02-23 16:39:51 +01:00
this.timeout(5000)
2017-09-04 21:21:47 +02:00
const res = await getVideosList(server.url)
expect(res.body.total).to.equal(1)
expect(res.body.data).to.be.an('array')
expect(res.body.data.length).to.equal(1)
const video = res.body.data[0]
2019-04-26 08:50:52 +02:00
await completeVideoCheck(server.url, video, getCheckAttributes())
2017-09-04 21:21:47 +02:00
})
it('Should get the video by UUID', async function () {
2018-02-23 16:39:51 +01:00
this.timeout(5000)
2017-09-04 21:21:47 +02:00
const res = await getVideo(server.url, videoUUID)
const video = res.body
2019-04-26 08:50:52 +02:00
await completeVideoCheck(server.url, video, getCheckAttributes())
2017-09-04 21:21:47 +02:00
})
it('Should have the views updated', async function () {
2018-08-29 16:26:25 +02:00
this.timeout(20000)
2018-02-23 16:39:51 +01:00
await viewVideo(server.url, videoId)
await viewVideo(server.url, videoId)
2017-11-30 09:21:11 +01:00
await viewVideo(server.url, videoId)
2018-02-23 16:39:51 +01:00
await wait(1500)
await viewVideo(server.url, videoId)
await viewVideo(server.url, videoId)
await wait(1500)
2017-11-30 09:21:11 +01:00
await viewVideo(server.url, videoId)
await viewVideo(server.url, videoId)
2018-08-29 16:26:25 +02:00
// Wait the repeatable job
await wait(8000)
2017-09-04 21:21:47 +02:00
const res = await getVideo(server.url, videoId)
const video = res.body
2017-10-24 19:41:30 +02:00
expect(video.views).to.equal(3)
2017-09-04 21:21:47 +02:00
})
it('Should remove the video', async function () {
await removeVideo(server.url, server.accessToken, videoId)
await checkVideoFilesWereRemoved(videoUUID, 1)
2017-09-04 21:21:47 +02:00
})
it('Should not have videos', async function () {
const res = await getVideosList(server.url)
expect(res.body.total).to.equal(0)
expect(res.body.data).to.be.an('array')
expect(res.body.data).to.have.lengthOf(0)
})
it('Should upload 6 videos', async function () {
this.timeout(25000)
const videos = new Set([
2017-09-04 21:21:47 +02:00
'video_short.mp4', 'video_short.ogv', 'video_short.webm',
'video_short1.webm', 'video_short2.webm', 'video_short3.webm'
])
2017-09-04 21:21:47 +02:00
for (const video of videos) {
const videoAttributes = {
name: video + ' name',
description: video + ' description',
category: 2,
licence: 1,
2018-04-23 14:39:52 +02:00
language: 'en',
2017-09-04 21:21:47 +02:00
nsfw: true,
tags: [ 'tag1', 'tag2', 'tag3' ],
fixture: video
}
await uploadVideo(server.url, server.accessToken, videoAttributes)
2017-09-04 21:21:47 +02:00
}
})
it('Should have the correct durations', async function () {
const res = await getVideosList(server.url)
expect(res.body.total).to.equal(6)
const videos = res.body.data
expect(videos).to.be.an('array')
expect(videos).to.have.lengthOf(6)
const videosByName = keyBy<{ duration: number }>(videos, 'name')
expect(videosByName['video_short.mp4 name'].duration).to.equal(5)
expect(videosByName['video_short.ogv name'].duration).to.equal(5)
expect(videosByName['video_short.webm name'].duration).to.equal(5)
expect(videosByName['video_short1.webm name'].duration).to.equal(10)
expect(videosByName['video_short2.webm name'].duration).to.equal(5)
expect(videosByName['video_short3.webm name'].duration).to.equal(5)
})
it('Should have the correct thumbnails', async function () {
const res = await getVideosList(server.url)
const videos = res.body.data
// For the next test
videosListBase = videos
for (const video of videos) {
const videoName = video.name.replace(' name', '')
2018-02-14 18:21:14 +01:00
await testImage(server.url, videoName, video.thumbnailPath)
2017-09-04 21:21:47 +02:00
}
})
it('Should list only the two first videos', async function () {
const res = await getVideosListPagination(server.url, 0, 2, 'name')
const videos = res.body.data
expect(res.body.total).to.equal(6)
expect(videos.length).to.equal(2)
expect(videos[0].name).to.equal(videosListBase[0].name)
expect(videos[1].name).to.equal(videosListBase[1].name)
})
it('Should list only the next three videos', async function () {
const res = await getVideosListPagination(server.url, 2, 3, 'name')
const videos = res.body.data
expect(res.body.total).to.equal(6)
expect(videos.length).to.equal(3)
expect(videos[0].name).to.equal(videosListBase[2].name)
expect(videos[1].name).to.equal(videosListBase[3].name)
expect(videos[2].name).to.equal(videosListBase[4].name)
})
it('Should list the last video', async function () {
const res = await getVideosListPagination(server.url, 5, 6, 'name')
const videos = res.body.data
expect(res.body.total).to.equal(6)
expect(videos.length).to.equal(1)
expect(videos[0].name).to.equal(videosListBase[5].name)
})
2020-01-08 14:15:16 +01:00
it('Should not have the total field', async function () {
const res = await getVideosListPagination(server.url, 5, 6, 'name', true)
const videos = res.body.data
expect(res.body.total).to.not.exist
expect(videos.length).to.equal(1)
expect(videos[0].name).to.equal(videosListBase[5].name)
})
2017-09-04 21:21:47 +02:00
it('Should list and sort by name in descending order', async function () {
const res = await getVideosListSort(server.url, '-name')
const videos = res.body.data
expect(res.body.total).to.equal(6)
expect(videos.length).to.equal(6)
expect(videos[0].name).to.equal('video_short.webm name')
expect(videos[1].name).to.equal('video_short.ogv name')
expect(videos[2].name).to.equal('video_short.mp4 name')
expect(videos[3].name).to.equal('video_short3.webm name')
expect(videos[4].name).to.equal('video_short2.webm name')
expect(videos[5].name).to.equal('video_short1.webm name')
2018-07-20 14:35:18 +02:00
videoId = videos[3].uuid
videoId2 = videos[5].uuid
2017-09-04 21:21:47 +02:00
})
2018-09-04 08:58:23 +02:00
it('Should list and sort by trending in descending order', async function () {
const res = await getVideosListPagination(server.url, 0, 2, '-trending')
const videos = res.body.data
expect(res.body.total).to.equal(6)
expect(videos.length).to.equal(2)
})
2017-09-04 21:21:47 +02:00
it('Should update a video', async function () {
const attributes = {
name: 'my super video updated',
category: 4,
licence: 2,
2018-04-23 14:39:52 +02:00
language: 'ar',
2017-09-04 21:21:47 +02:00
nsfw: false,
description: 'my super description updated',
2018-01-03 10:12:36 +01:00
commentsEnabled: false,
downloadEnabled: false,
2017-09-04 21:21:47 +02:00
tags: [ 'tagup1', 'tagup2' ]
}
await updateVideo(server.url, server.accessToken, videoId, attributes)
})
2018-07-20 14:35:18 +02:00
it('Should filter by tags and category', async function () {
const res1 = await getVideosWithFilters(server.url, { tagsAllOf: [ 'tagup1', 'tagup2' ], categoryOneOf: 4 })
expect(res1.body.total).to.equal(1)
expect(res1.body.data[0].name).to.equal('my super video updated')
const res2 = await getVideosWithFilters(server.url, { tagsAllOf: [ 'tagup1', 'tagup2' ], categoryOneOf: 3 })
expect(res2.body.total).to.equal(0)
})
2017-09-04 21:21:47 +02:00
it('Should have the video updated', async function () {
this.timeout(60000)
const res = await getVideo(server.url, videoId)
const video = res.body
2019-04-26 08:50:52 +02:00
await completeVideoCheck(server.url, video, updateCheckAttributes())
2017-09-04 21:21:47 +02:00
})
it('Should update only the tags of a video', async function () {
const attributes = {
2017-12-29 10:46:27 +01:00
tags: [ 'supertag', 'tag1', 'tag2' ]
2017-09-04 21:21:47 +02:00
}
await updateVideo(server.url, server.accessToken, videoId, attributes)
const res = await getVideo(server.url, videoId)
const video = res.body
2019-04-26 08:50:52 +02:00
await completeVideoCheck(server.url, video, Object.assign(updateCheckAttributes(), attributes))
2017-09-04 21:21:47 +02:00
})
it('Should update only the description of a video', async function () {
const attributes = {
description: 'hello everybody'
}
await updateVideo(server.url, server.accessToken, videoId, attributes)
const res = await getVideo(server.url, videoId)
const video = res.body
2019-04-26 08:50:52 +02:00
const expectedAttributes = Object.assign(updateCheckAttributes(), { tags: [ 'supertag', 'tag1', 'tag2' ] }, attributes)
await completeVideoCheck(server.url, video, expectedAttributes)
2017-09-04 21:21:47 +02:00
})
it('Should like a video', async function () {
await rateVideo(server.url, server.accessToken, videoId, 'like')
const res = await getVideo(server.url, videoId)
const video = res.body
expect(video.likes).to.equal(1)
expect(video.dislikes).to.equal(0)
})
it('Should dislike the same video', async function () {
await rateVideo(server.url, server.accessToken, videoId, 'dislike')
const res = await getVideo(server.url, videoId)
const video = res.body
expect(video.likes).to.equal(0)
expect(video.dislikes).to.equal(1)
})
it('Should sort by originallyPublishedAt', async function () {
{
{
const now = new Date()
const attributes = { originallyPublishedAt: now.toISOString() }
await updateVideo(server.url, server.accessToken, videoId, attributes)
const res = await getVideosListSort(server.url, '-originallyPublishedAt')
const names = res.body.data.map(v => v.name)
expect(names[0]).to.equal('my super video updated')
expect(names[1]).to.equal('video_short2.webm name')
expect(names[2]).to.equal('video_short1.webm name')
expect(names[3]).to.equal('video_short.webm name')
expect(names[4]).to.equal('video_short.ogv name')
expect(names[5]).to.equal('video_short.mp4 name')
}
{
const now = new Date()
const attributes = { originallyPublishedAt: now.toISOString() }
await updateVideo(server.url, server.accessToken, videoId2, attributes)
const res = await getVideosListSort(server.url, '-originallyPublishedAt')
const names = res.body.data.map(v => v.name)
expect(names[0]).to.equal('video_short1.webm name')
expect(names[1]).to.equal('my super video updated')
expect(names[2]).to.equal('video_short2.webm name')
expect(names[3]).to.equal('video_short.webm name')
expect(names[4]).to.equal('video_short.ogv name')
expect(names[5]).to.equal('video_short.mp4 name')
}
}
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests([ server ])
2017-09-04 21:21:47 +02:00
})
})