2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-04-19 05:01:34 -04:00
|
|
|
|
|
|
|
import 'mocha'
|
2021-07-06 08:30:20 -04:00
|
|
|
import * as chai from 'chai'
|
2021-12-17 03:29:23 -05:00
|
|
|
import { cleanupTests, createSingleServer, PeerTubeServer, setAccessTokensToServers } from '@shared/server-commands'
|
2021-07-13 08:23:01 -04:00
|
|
|
import { BooleanBothQuery, CustomConfig, ResultList, Video, VideosOverview } from '@shared/models'
|
2018-04-19 05:01:34 -04:00
|
|
|
|
|
|
|
const expect = chai.expect
|
|
|
|
|
2021-07-06 08:30:20 -04:00
|
|
|
function createOverviewRes (overview: VideosOverview) {
|
2020-03-11 09:39:28 -04:00
|
|
|
const videos = overview.categories[0].videos
|
2021-07-09 10:23:01 -04:00
|
|
|
return { data: videos, total: videos.length }
|
2020-03-11 09:39:28 -04:00
|
|
|
}
|
|
|
|
|
2018-04-19 05:01:34 -04:00
|
|
|
describe('Test video NSFW policy', function () {
|
2021-07-16 03:47:51 -04:00
|
|
|
let server: PeerTubeServer
|
2018-04-19 05:01:34 -04:00
|
|
|
let userAccessToken: string
|
|
|
|
let customConfig: CustomConfig
|
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
async function getVideosFunctions (token?: string, query: { nsfw?: BooleanBothQuery } = {}) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const user = await server.users.getMyInfo()
|
2021-07-16 04:42:24 -04:00
|
|
|
|
|
|
|
const channelName = user.videoChannels[0].name
|
2021-07-09 10:23:01 -04:00
|
|
|
const accountName = user.account.name + '@' + user.account.host
|
2021-07-16 04:42:24 -04:00
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
const hasQuery = Object.keys(query).length !== 0
|
|
|
|
let promises: Promise<ResultList<Video>>[]
|
|
|
|
|
|
|
|
if (token) {
|
|
|
|
promises = [
|
2021-07-16 03:04:35 -04:00
|
|
|
server.search.advancedVideoSearch({ token, search: { search: 'n', sort: '-publishedAt', ...query } }),
|
|
|
|
server.videos.listWithToken({ token, ...query }),
|
2021-07-16 08:27:30 -04:00
|
|
|
server.videos.listByAccount({ token, handle: accountName, ...query }),
|
|
|
|
server.videos.listByChannel({ token, handle: channelName, ...query })
|
2021-07-09 10:23:01 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
// Overviews do not support video filters
|
|
|
|
if (!hasQuery) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const p = server.overviews.getVideos({ page: 1, token })
|
2021-07-09 10:23:01 -04:00
|
|
|
.then(res => createOverviewRes(res))
|
|
|
|
promises.push(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.all(promises)
|
|
|
|
}
|
|
|
|
|
|
|
|
promises = [
|
2021-07-16 03:04:35 -04:00
|
|
|
server.search.searchVideos({ search: 'n', sort: '-publishedAt' }),
|
|
|
|
server.videos.list(),
|
2021-07-16 08:27:30 -04:00
|
|
|
server.videos.listByAccount({ token: null, handle: accountName }),
|
|
|
|
server.videos.listByChannel({ token: null, handle: channelName })
|
2021-07-09 10:23:01 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
// Overviews do not support video filters
|
|
|
|
if (!hasQuery) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const p = server.overviews.getVideos({ page: 1 })
|
2021-07-09 10:23:01 -04:00
|
|
|
.then(res => createOverviewRes(res))
|
|
|
|
promises.push(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.all(promises)
|
2018-04-25 04:21:38 -04:00
|
|
|
}
|
|
|
|
|
2018-04-19 05:01:34 -04:00
|
|
|
before(async function () {
|
|
|
|
this.timeout(50000)
|
2021-07-16 03:47:51 -04:00
|
|
|
server = await createSingleServer(1)
|
2018-04-19 05:01:34 -04:00
|
|
|
|
|
|
|
// Get the access tokens
|
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
|
|
|
{
|
2020-03-11 09:39:28 -04:00
|
|
|
const attributes = { name: 'nsfw', nsfw: true, category: 1 }
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.videos.upload({ attributes })
|
2018-04-19 05:01:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2020-03-11 09:39:28 -04:00
|
|
|
const attributes = { name: 'normal', nsfw: false, category: 1 }
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.videos.upload({ attributes })
|
2018-04-19 05:01:34 -04:00
|
|
|
}
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
customConfig = await server.config.getCustomConfig()
|
2018-04-19 05:01:34 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('Instance default NSFW policy', function () {
|
2021-07-16 08:27:30 -04:00
|
|
|
|
2018-04-19 05:01:34 -04:00
|
|
|
it('Should display NSFW videos with display default NSFW policy', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
const serverConfig = await server.config.getConfig()
|
2018-04-19 05:01:34 -04:00
|
|
|
expect(serverConfig.instance.defaultNSFWPolicy).to.equal('display')
|
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
for (const body of await getVideosFunctions()) {
|
|
|
|
expect(body.total).to.equal(2)
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
const videos = body.data
|
2018-04-19 05:01:34 -04:00
|
|
|
expect(videos).to.have.lengthOf(2)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videos[0].name).to.equal('normal')
|
|
|
|
expect(videos[1].name).to.equal('nsfw')
|
2018-04-19 05:01:34 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should not display NSFW videos with do_not_list default NSFW policy', async function () {
|
|
|
|
customConfig.instance.defaultNSFWPolicy = 'do_not_list'
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.config.updateCustomConfig({ newCustomConfig: customConfig })
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const serverConfig = await server.config.getConfig()
|
2018-04-19 05:01:34 -04:00
|
|
|
expect(serverConfig.instance.defaultNSFWPolicy).to.equal('do_not_list')
|
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
for (const body of await getVideosFunctions()) {
|
|
|
|
expect(body.total).to.equal(1)
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
const videos = body.data
|
2018-04-19 05:01:34 -04:00
|
|
|
expect(videos).to.have.lengthOf(1)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videos[0].name).to.equal('normal')
|
2018-04-19 05:01:34 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should display NSFW videos with blur default NSFW policy', async function () {
|
|
|
|
customConfig.instance.defaultNSFWPolicy = 'blur'
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.config.updateCustomConfig({ newCustomConfig: customConfig })
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const serverConfig = await server.config.getConfig()
|
2018-04-19 05:01:34 -04:00
|
|
|
expect(serverConfig.instance.defaultNSFWPolicy).to.equal('blur')
|
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
for (const body of await getVideosFunctions()) {
|
|
|
|
expect(body.total).to.equal(2)
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
const videos = body.data
|
2018-04-19 05:01:34 -04:00
|
|
|
expect(videos).to.have.lengthOf(2)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videos[0].name).to.equal('normal')
|
|
|
|
expect(videos[1].name).to.equal('nsfw')
|
2018-04-19 05:01:34 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
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'
|
2022-07-13 05:58:01 -04:00
|
|
|
await server.users.create({ username, password })
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
userAccessToken = await server.login.getAccessToken({ username, password })
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const user = await server.users.getMyInfo({ token: userAccessToken })
|
2018-04-19 05:01:34 -04:00
|
|
|
expect(user.nsfwPolicy).to.equal('blur')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should display NSFW videos with blur user NSFW policy', async function () {
|
2018-09-04 05:19:19 -04:00
|
|
|
customConfig.instance.defaultNSFWPolicy = 'do_not_list'
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.config.updateCustomConfig({ newCustomConfig: customConfig })
|
2018-09-04 05:19:19 -04:00
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
for (const body of await getVideosFunctions(userAccessToken)) {
|
|
|
|
expect(body.total).to.equal(2)
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
const videos = body.data
|
2018-04-19 05:01:34 -04:00
|
|
|
expect(videos).to.have.lengthOf(2)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videos[0].name).to.equal('normal')
|
|
|
|
expect(videos[1].name).to.equal('nsfw')
|
2018-04-19 05:01:34 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should display NSFW videos with display user NSFW policy', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.users.updateMe({ nsfwPolicy: 'display' })
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
for (const body of await getVideosFunctions(server.accessToken)) {
|
|
|
|
expect(body.total).to.equal(2)
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
const videos = body.data
|
2018-04-19 05:01:34 -04:00
|
|
|
expect(videos).to.have.lengthOf(2)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videos[0].name).to.equal('normal')
|
|
|
|
expect(videos[1].name).to.equal('nsfw')
|
2018-04-19 05:01:34 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should not display NSFW videos with do_not_list user NSFW policy', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.users.updateMe({ nsfwPolicy: 'do_not_list' })
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
for (const body of await getVideosFunctions(server.accessToken)) {
|
|
|
|
expect(body.total).to.equal(1)
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
const videos = body.data
|
2018-04-19 05:01:34 -04:00
|
|
|
expect(videos).to.have.lengthOf(1)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videos[0].name).to.equal('normal')
|
2018-04-19 05:01:34 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should be able to see my NSFW videos even with do_not_list user NSFW policy', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
const { total, data } = await server.videos.listMyVideos()
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(total).to.equal(2)
|
2018-04-19 05:01:34 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(data).to.have.lengthOf(2)
|
|
|
|
expect(data[0].name).to.equal('normal')
|
|
|
|
expect(data[1].name).to.equal('nsfw')
|
2018-04-19 05:01:34 -04:00
|
|
|
})
|
2018-07-20 08:35:18 -04:00
|
|
|
|
|
|
|
it('Should display NSFW videos when the nsfw param === true', async function () {
|
2021-07-09 10:23:01 -04:00
|
|
|
for (const body of await getVideosFunctions(server.accessToken, { nsfw: 'true' })) {
|
|
|
|
expect(body.total).to.equal(1)
|
2018-07-20 08:35:18 -04:00
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
const videos = body.data
|
2018-07-20 08:35:18 -04:00
|
|
|
expect(videos).to.have.lengthOf(1)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videos[0].name).to.equal('nsfw')
|
2018-07-20 08:35:18 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should hide NSFW videos when the nsfw param === true', async function () {
|
2021-07-09 10:23:01 -04:00
|
|
|
for (const body of await getVideosFunctions(server.accessToken, { nsfw: 'false' })) {
|
|
|
|
expect(body.total).to.equal(1)
|
2018-07-20 08:35:18 -04:00
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
const videos = body.data
|
2018-07-20 08:35:18 -04:00
|
|
|
expect(videos).to.have.lengthOf(1)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videos[0].name).to.equal('normal')
|
2018-07-20 08:35:18 -04:00
|
|
|
}
|
|
|
|
})
|
2018-07-20 12:31:49 -04:00
|
|
|
|
|
|
|
it('Should display both videos when the nsfw param === both', async function () {
|
2021-07-09 10:23:01 -04:00
|
|
|
for (const body of await getVideosFunctions(server.accessToken, { nsfw: 'both' })) {
|
|
|
|
expect(body.total).to.equal(2)
|
2018-07-20 12:31:49 -04:00
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
const videos = body.data
|
2018-07-20 12:31:49 -04:00
|
|
|
expect(videos).to.have.lengthOf(2)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(videos[0].name).to.equal('normal')
|
|
|
|
expect(videos[1].name).to.equal('nsfw')
|
2018-07-20 12:31:49 -04:00
|
|
|
}
|
|
|
|
})
|
2018-04-19 05:01:34 -04:00
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests([ server ])
|
2018-04-19 05:01:34 -04:00
|
|
|
})
|
|
|
|
})
|