2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2019-07-26 07:13:39 -04:00
|
|
|
|
|
|
|
import * as chai from 'chai'
|
|
|
|
import 'mocha'
|
2020-01-31 10:56:52 -05:00
|
|
|
import { cleanupTests, flushAndRunServer, ServerInfo } from '../../../shared/extra-utils/server/servers'
|
2019-07-26 07:13:39 -04:00
|
|
|
import {
|
2020-04-20 09:32:11 -04:00
|
|
|
createVideoPlaylist,
|
2019-07-26 07:13:39 -04:00
|
|
|
getPluginTestPath,
|
2020-01-31 10:56:52 -05:00
|
|
|
getVideo,
|
|
|
|
getVideoCategories,
|
|
|
|
getVideoLanguages,
|
2020-04-20 09:32:11 -04:00
|
|
|
getVideoLicences, getVideoPlaylistPrivacies, getVideoPrivacies,
|
2019-07-26 07:13:39 -04:00
|
|
|
installPlugin,
|
|
|
|
setAccessTokensToServers,
|
2020-01-31 10:56:52 -05:00
|
|
|
uninstallPlugin,
|
|
|
|
uploadVideo
|
2019-07-26 07:13:39 -04:00
|
|
|
} from '../../../shared/extra-utils'
|
2020-04-20 09:32:11 -04:00
|
|
|
import { VideoDetails, VideoPlaylistPrivacy } from '../../../shared/models/videos'
|
2020-12-08 15:16:10 -05:00
|
|
|
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
|
2019-07-26 07:13:39 -04:00
|
|
|
|
|
|
|
const expect = chai.expect
|
|
|
|
|
|
|
|
describe('Test plugin altering video constants', function () {
|
|
|
|
let server: ServerInfo
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
|
|
|
server = await flushAndRunServer(1)
|
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
|
|
|
await installPlugin({
|
|
|
|
url: server.url,
|
|
|
|
accessToken: server.accessToken,
|
|
|
|
path: getPluginTestPath('-three')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have updated languages', async function () {
|
|
|
|
const res = await getVideoLanguages(server.url)
|
|
|
|
const languages = res.body
|
|
|
|
|
|
|
|
expect(languages['en']).to.not.exist
|
|
|
|
expect(languages['fr']).to.not.exist
|
|
|
|
|
|
|
|
expect(languages['al_bhed']).to.equal('Al Bhed')
|
|
|
|
expect(languages['al_bhed2']).to.equal('Al Bhed 2')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have updated categories', async function () {
|
|
|
|
const res = await getVideoCategories(server.url)
|
|
|
|
const categories = res.body
|
|
|
|
|
|
|
|
expect(categories[1]).to.not.exist
|
|
|
|
expect(categories[2]).to.not.exist
|
|
|
|
|
|
|
|
expect(categories[42]).to.equal('Best category')
|
|
|
|
expect(categories[43]).to.equal('High best category')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have updated licences', async function () {
|
|
|
|
const res = await getVideoLicences(server.url)
|
|
|
|
const licences = res.body
|
|
|
|
|
|
|
|
expect(licences[1]).to.not.exist
|
|
|
|
expect(licences[7]).to.not.exist
|
|
|
|
|
|
|
|
expect(licences[42]).to.equal('Best licence')
|
|
|
|
expect(licences[43]).to.equal('High best licence')
|
|
|
|
})
|
|
|
|
|
2020-04-20 09:32:11 -04:00
|
|
|
it('Should have updated video privacies', async function () {
|
|
|
|
const res = await getVideoPrivacies(server.url)
|
|
|
|
const privacies = res.body
|
|
|
|
|
|
|
|
expect(privacies[1]).to.exist
|
|
|
|
expect(privacies[2]).to.not.exist
|
|
|
|
expect(privacies[3]).to.exist
|
|
|
|
expect(privacies[4]).to.exist
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have updated playlist privacies', async function () {
|
|
|
|
const res = await getVideoPlaylistPrivacies(server.url)
|
|
|
|
const playlistPrivacies = res.body
|
|
|
|
|
|
|
|
expect(playlistPrivacies[1]).to.exist
|
|
|
|
expect(playlistPrivacies[2]).to.exist
|
|
|
|
expect(playlistPrivacies[3]).to.not.exist
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should not be able to create a video with this privacy', async function () {
|
|
|
|
const attrs = { name: 'video', privacy: 2 }
|
2020-12-08 15:16:10 -05:00
|
|
|
await uploadVideo(server.url, server.accessToken, attrs, HttpStatusCode.BAD_REQUEST_400)
|
2020-04-20 09:32:11 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should not be able to create a video with this privacy', async function () {
|
|
|
|
const attrs = { displayName: 'video playlist', privacy: VideoPlaylistPrivacy.PRIVATE }
|
2020-12-08 15:16:10 -05:00
|
|
|
await createVideoPlaylist({
|
|
|
|
url: server.url,
|
|
|
|
token: server.accessToken,
|
|
|
|
playlistAttrs: attrs,
|
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
|
|
|
})
|
2020-04-20 09:32:11 -04:00
|
|
|
})
|
|
|
|
|
2019-07-26 07:13:39 -04:00
|
|
|
it('Should be able to upload a video with these values', async function () {
|
|
|
|
const attrs = { name: 'video', category: 42, licence: 42, language: 'al_bhed2' }
|
|
|
|
const resUpload = await uploadVideo(server.url, server.accessToken, attrs)
|
|
|
|
|
|
|
|
const res = await getVideo(server.url, resUpload.body.video.uuid)
|
|
|
|
|
|
|
|
const video: VideoDetails = res.body
|
|
|
|
expect(video.language.label).to.equal('Al Bhed 2')
|
|
|
|
expect(video.licence.label).to.equal('Best licence')
|
|
|
|
expect(video.category.label).to.equal('Best category')
|
|
|
|
})
|
|
|
|
|
2020-04-20 09:32:11 -04:00
|
|
|
it('Should uninstall the plugin and reset languages, categories, licences and privacies', async function () {
|
2019-07-26 07:13:39 -04:00
|
|
|
await uninstallPlugin({ url: server.url, accessToken: server.accessToken, npmName: 'peertube-plugin-test-three' })
|
|
|
|
|
|
|
|
{
|
|
|
|
const res = await getVideoLanguages(server.url)
|
|
|
|
const languages = res.body
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(languages['en']).to.equal('English')
|
|
|
|
expect(languages['fr']).to.equal('French')
|
2019-07-26 07:13:39 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(languages['al_bhed']).to.not.exist
|
|
|
|
expect(languages['al_bhed2']).to.not.exist
|
2019-07-26 07:13:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const res = await getVideoCategories(server.url)
|
|
|
|
const categories = res.body
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(categories[1]).to.equal('Music')
|
|
|
|
expect(categories[2]).to.equal('Films')
|
2019-07-26 07:13:39 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(categories[42]).to.not.exist
|
|
|
|
expect(categories[43]).to.not.exist
|
2019-07-26 07:13:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const res = await getVideoLicences(server.url)
|
|
|
|
const licences = res.body
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(licences[1]).to.equal('Attribution')
|
|
|
|
expect(licences[7]).to.equal('Public Domain Dedication')
|
2019-07-26 07:13:39 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(licences[42]).to.not.exist
|
|
|
|
expect(licences[43]).to.not.exist
|
2019-07-26 07:13:39 -04:00
|
|
|
}
|
2020-04-20 09:32:11 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
const res = await getVideoPrivacies(server.url)
|
|
|
|
const privacies = res.body
|
|
|
|
|
|
|
|
expect(privacies[1]).to.exist
|
|
|
|
expect(privacies[2]).to.exist
|
|
|
|
expect(privacies[3]).to.exist
|
|
|
|
expect(privacies[4]).to.exist
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const res = await getVideoPlaylistPrivacies(server.url)
|
|
|
|
const playlistPrivacies = res.body
|
|
|
|
|
|
|
|
expect(playlistPrivacies[1]).to.exist
|
|
|
|
expect(playlistPrivacies[2]).to.exist
|
|
|
|
expect(playlistPrivacies[3]).to.exist
|
|
|
|
}
|
2019-07-26 07:13:39 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
after(async function () {
|
|
|
|
await cleanupTests([ server ])
|
|
|
|
})
|
|
|
|
})
|