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

268 lines
8.7 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 */
import 'mocha'
2021-07-06 14:30:20 +02:00
import * as chai from 'chai'
import {
2021-07-06 14:30:20 +02:00
cleanupTests,
createUser,
2019-04-24 15:10:37 +02:00
flushAndRunServer,
2018-04-25 10:21:38 +02:00
getAccountVideos,
getConfig,
getCustomConfig,
getMyUserInformation,
2021-07-06 14:30:20 +02:00
getMyVideos,
getVideoChannelVideos,
2021-07-06 14:30:20 +02:00
getVideosList,
getVideosListWithToken,
searchVideo,
searchVideoWithToken,
2021-07-06 14:30:20 +02:00
ServerInfo,
setAccessTokensToServers,
updateCustomConfig,
2021-07-06 14:30:20 +02:00
updateMyUser,
uploadVideo,
userLogin
} from '@shared/extra-utils'
import { CustomConfig, ServerConfig, User, VideosOverview } from '@shared/models'
const expect = chai.expect
2021-07-06 14:30:20 +02:00
function createOverviewRes (overview: VideosOverview) {
const videos = overview.categories[0].videos
return { body: { data: videos, total: videos.length } }
}
describe('Test video NSFW policy', function () {
let server: ServerInfo
let userAccessToken: string
let customConfig: CustomConfig
2018-07-20 14:35:18 +02:00
function getVideosFunctions (token?: string, query = {}) {
2018-04-25 10:21:38 +02:00
return getMyUserInformation(server.url, server.accessToken)
.then(res => {
const user: User = res.body
2018-08-23 10:30:53 +02:00
const videoChannelName = user.videoChannels[0].name
2018-05-25 09:57:16 +02:00
const accountName = user.account.name + '@' + user.account.host
const hasQuery = Object.keys(query).length !== 0
let promises: Promise<any>[]
2018-04-25 10:21:38 +02:00
if (token) {
promises = [
2018-07-20 14:35:18 +02:00
getVideosListWithToken(server.url, token, query),
searchVideoWithToken(server.url, 'n', token, query),
getAccountVideos(server.url, token, accountName, 0, 5, undefined, query),
2018-08-23 10:30:53 +02:00
getVideoChannelVideos(server.url, token, videoChannelName, 0, 5, undefined, query)
]
// Overviews do not support video filters
if (!hasQuery) {
2021-07-06 14:30:20 +02:00
const p = server.overviewsCommand.getVideos({ page: 1, token })
.then(res => createOverviewRes(res))
promises.push(p)
}
return Promise.all(promises)
2018-04-25 10:21:38 +02:00
}
promises = [
2018-04-25 10:21:38 +02:00
getVideosList(server.url),
searchVideo(server.url, 'n'),
2018-05-25 09:57:16 +02:00
getAccountVideos(server.url, undefined, accountName, 0, 5),
2018-08-23 10:30:53 +02:00
getVideoChannelVideos(server.url, undefined, videoChannelName, 0, 5)
]
// Overviews do not support video filters
if (!hasQuery) {
2021-07-06 14:30:20 +02:00
const p = server.overviewsCommand.getVideos({ page: 1 })
.then(res => createOverviewRes(res))
promises.push(p)
}
return Promise.all(promises)
2018-04-25 10:21:38 +02:00
})
}
before(async function () {
this.timeout(50000)
2019-04-24 10:53:40 +02:00
server = await flushAndRunServer(1)
// Get the access tokens
await setAccessTokensToServers([ server ])
{
const attributes = { name: 'nsfw', nsfw: true, category: 1 }
await uploadVideo(server.url, server.accessToken, attributes)
}
{
const attributes = { name: 'normal', nsfw: false, category: 1 }
await uploadVideo(server.url, server.accessToken, attributes)
}
{
const res = await getCustomConfig(server.url, server.accessToken)
customConfig = res.body
}
})
describe('Instance default NSFW policy', function () {
it('Should display NSFW videos with display default NSFW policy', async function () {
const resConfig = await getConfig(server.url)
const serverConfig: ServerConfig = resConfig.body
expect(serverConfig.instance.defaultNSFWPolicy).to.equal('display')
2018-04-25 10:21:38 +02:00
for (const res of await getVideosFunctions()) {
expect(res.body.total).to.equal(2)
const videos = res.body.data
expect(videos).to.have.lengthOf(2)
2020-01-31 16:56:52 +01:00
expect(videos[0].name).to.equal('normal')
expect(videos[1].name).to.equal('nsfw')
}
})
it('Should not display NSFW videos with do_not_list default NSFW policy', async function () {
customConfig.instance.defaultNSFWPolicy = 'do_not_list'
await updateCustomConfig(server.url, server.accessToken, customConfig)
const resConfig = await getConfig(server.url)
const serverConfig: ServerConfig = resConfig.body
expect(serverConfig.instance.defaultNSFWPolicy).to.equal('do_not_list')
2018-04-25 10:21:38 +02:00
for (const res of await getVideosFunctions()) {
expect(res.body.total).to.equal(1)
const videos = res.body.data
expect(videos).to.have.lengthOf(1)
2020-01-31 16:56:52 +01:00
expect(videos[0].name).to.equal('normal')
}
})
it('Should display NSFW videos with blur default NSFW policy', async function () {
customConfig.instance.defaultNSFWPolicy = 'blur'
await updateCustomConfig(server.url, server.accessToken, customConfig)
const resConfig = await getConfig(server.url)
const serverConfig: ServerConfig = resConfig.body
expect(serverConfig.instance.defaultNSFWPolicy).to.equal('blur')
2018-04-25 10:21:38 +02:00
for (const res of await getVideosFunctions()) {
expect(res.body.total).to.equal(2)
const videos = res.body.data
expect(videos).to.have.lengthOf(2)
2020-01-31 16:56:52 +01:00
expect(videos[0].name).to.equal('normal')
expect(videos[1].name).to.equal('nsfw')
}
})
})
describe('User NSFW policy', function () {
it('Should create a user having the default nsfw policy', async function () {
const username = 'user1'
const password = 'my super password'
2019-04-15 10:49:46 +02:00
await createUser({ url: server.url, accessToken: server.accessToken, username: username, password: password })
userAccessToken = await userLogin(server, { username, password })
const res = await getMyUserInformation(server.url, userAccessToken)
const user = res.body
expect(user.nsfwPolicy).to.equal('blur')
})
it('Should display NSFW videos with blur user NSFW policy', async function () {
2018-09-04 11:19:19 +02:00
customConfig.instance.defaultNSFWPolicy = 'do_not_list'
await updateCustomConfig(server.url, server.accessToken, customConfig)
2018-04-25 10:21:38 +02:00
for (const res of await getVideosFunctions(userAccessToken)) {
expect(res.body.total).to.equal(2)
const videos = res.body.data
expect(videos).to.have.lengthOf(2)
2020-01-31 16:56:52 +01:00
expect(videos[0].name).to.equal('normal')
expect(videos[1].name).to.equal('nsfw')
}
})
it('Should display NSFW videos with display user NSFW policy', async function () {
await updateMyUser({
url: server.url,
accessToken: server.accessToken,
nsfwPolicy: 'display'
})
2018-04-25 10:21:38 +02:00
for (const res of await getVideosFunctions(server.accessToken)) {
expect(res.body.total).to.equal(2)
const videos = res.body.data
expect(videos).to.have.lengthOf(2)
2020-01-31 16:56:52 +01:00
expect(videos[0].name).to.equal('normal')
expect(videos[1].name).to.equal('nsfw')
}
})
it('Should not display NSFW videos with do_not_list user NSFW policy', async function () {
await updateMyUser({
url: server.url,
accessToken: server.accessToken,
nsfwPolicy: 'do_not_list'
})
2018-04-25 10:21:38 +02:00
for (const res of await getVideosFunctions(server.accessToken)) {
expect(res.body.total).to.equal(1)
const videos = res.body.data
expect(videos).to.have.lengthOf(1)
2020-01-31 16:56:52 +01:00
expect(videos[0].name).to.equal('normal')
}
})
it('Should be able to see my NSFW videos even with do_not_list user NSFW policy', async function () {
const res = await getMyVideos(server.url, server.accessToken, 0, 5)
expect(res.body.total).to.equal(2)
const videos = res.body.data
expect(videos).to.have.lengthOf(2)
2020-01-31 16:56:52 +01:00
expect(videos[0].name).to.equal('normal')
expect(videos[1].name).to.equal('nsfw')
})
2018-07-20 14:35:18 +02:00
it('Should display NSFW videos when the nsfw param === true', async function () {
for (const res of await getVideosFunctions(server.accessToken, { nsfw: true })) {
expect(res.body.total).to.equal(1)
const videos = res.body.data
expect(videos).to.have.lengthOf(1)
2020-01-31 16:56:52 +01:00
expect(videos[0].name).to.equal('nsfw')
2018-07-20 14:35:18 +02:00
}
})
it('Should hide NSFW videos when the nsfw param === true', async function () {
for (const res of await getVideosFunctions(server.accessToken, { nsfw: false })) {
expect(res.body.total).to.equal(1)
const videos = res.body.data
expect(videos).to.have.lengthOf(1)
2020-01-31 16:56:52 +01:00
expect(videos[0].name).to.equal('normal')
2018-07-20 14:35:18 +02:00
}
})
2018-07-20 18:31:49 +02:00
it('Should display both videos when the nsfw param === both', async function () {
for (const res of await getVideosFunctions(server.accessToken, { nsfw: 'both' })) {
expect(res.body.total).to.equal(2)
const videos = res.body.data
expect(videos).to.have.lengthOf(2)
2020-01-31 16:56:52 +01:00
expect(videos[0].name).to.equal('normal')
expect(videos[1].name).to.equal('nsfw')
2018-07-20 18:31:49 +02:00
}
})
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests([ server ])
})
})