X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fapi%2Fvideos%2Fvideo-nsfw.ts;h=b16b484b917ab10af0afe0c802a3b2ac438e5649;hb=2291a412d25bd139398ca9e7a5131d0c1e4ffd7d;hp=4e5ab11ce94b5e0b9313ee1af9823b37d65efe21;hpb=0db1a226507a39b0a663e3e63f04851836a44d5a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/api/videos/video-nsfw.ts b/server/tests/api/videos/video-nsfw.ts index 4e5ab11ce..b16b484b9 100644 --- a/server/tests/api/videos/video-nsfw.ts +++ b/server/tests/api/videos/video-nsfw.ts @@ -1,46 +1,98 @@ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ import * as chai from 'chai' import 'mocha' -import { flushTests, getVideosList, killallServers, ServerInfo, setAccessTokensToServers, uploadVideo } from '../../utils/index' -import { userLogin } from '../../utils/users/login' -import { createUser } from '../../utils/users/users' -import { getMyVideos } from '../../utils/videos/videos' +import { cleanupTests, getVideosList, ServerInfo, setAccessTokensToServers, uploadVideo } from '../../../../shared/extra-utils/index' +import { userLogin } from '../../../../shared/extra-utils/users/login' +import { createUser } from '../../../../shared/extra-utils/users/users' +import { getMyVideos } from '../../../../shared/extra-utils/videos/videos' import { - getConfig, getCustomConfig, + flushAndRunServer, + getAccountVideos, + getConfig, + getCustomConfig, getMyUserInformation, + getVideoChannelVideos, getVideosListWithToken, - runServer, searchVideo, - searchVideoWithToken, updateCustomConfig, + searchVideoWithToken, + updateCustomConfig, updateMyUser -} from '../../utils' -import { ServerConfig } from '../../../../shared/models' +} from '../../../../shared/extra-utils' +import { ServerConfig, VideosOverview } from '../../../../shared/models' import { CustomConfig } from '../../../../shared/models/server/custom-config.model' +import { User } from '../../../../shared/models/users' +import { getVideosOverview, getVideosOverviewWithToken } from '@shared/extra-utils/overviews/overviews' const expect = chai.expect +function createOverviewRes (res: any) { + const overview = res.body as 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 + function getVideosFunctions (token?: string, query = {}) { + return getMyUserInformation(server.url, server.accessToken) + .then(res => { + const user: User = res.body + const videoChannelName = user.videoChannels[0].name + const accountName = user.account.name + '@' + user.account.host + const hasQuery = Object.keys(query).length !== 0 + let promises: Promise[] + + if (token) { + promises = [ + getVideosListWithToken(server.url, token, query), + searchVideoWithToken(server.url, 'n', token, query), + getAccountVideos(server.url, token, accountName, 0, 5, undefined, query), + getVideoChannelVideos(server.url, token, videoChannelName, 0, 5, undefined, query) + ] + + // Overviews do not support video filters + if (!hasQuery) { + promises.push(getVideosOverviewWithToken(server.url, 1, token).then(res => createOverviewRes(res))) + } + + return Promise.all(promises) + } + + promises = [ + getVideosList(server.url), + searchVideo(server.url, 'n'), + getAccountVideos(server.url, undefined, accountName, 0, 5), + getVideoChannelVideos(server.url, undefined, videoChannelName, 0, 5) + ] + + // Overviews do not support video filters + if (!hasQuery) { + promises.push(getVideosOverview(server.url, 1).then(res => createOverviewRes(res))) + } + + return Promise.all(promises) + }) + } + before(async function () { this.timeout(50000) - - await flushTests() - server = await runServer(1) + server = await flushAndRunServer(1) // Get the access tokens await setAccessTokensToServers([ server ]) { - const attributes = { name: 'nsfw', nsfw: true } + const attributes = { name: 'nsfw', nsfw: true, category: 1 } await uploadVideo(server.url, server.accessToken, attributes) } { - const attributes = { name: 'normal', nsfw: false } + const attributes = { name: 'normal', nsfw: false, category: 1 } await uploadVideo(server.url, server.accessToken, attributes) } @@ -56,13 +108,13 @@ describe('Test video NSFW policy', function () { const serverConfig: ServerConfig = resConfig.body expect(serverConfig.instance.defaultNSFWPolicy).to.equal('display') - for (const res of [ await getVideosList(server.url), await searchVideo(server.url, 'n') ]) { + for (const res of await getVideosFunctions()) { expect(res.body.total).to.equal(2) const videos = res.body.data expect(videos).to.have.lengthOf(2) - expect(videos[ 0 ].name).to.equal('normal') - expect(videos[ 1 ].name).to.equal('nsfw') + expect(videos[0].name).to.equal('normal') + expect(videos[1].name).to.equal('nsfw') } }) @@ -74,12 +126,12 @@ describe('Test video NSFW policy', function () { const serverConfig: ServerConfig = resConfig.body expect(serverConfig.instance.defaultNSFWPolicy).to.equal('do_not_list') - for (const res of [ await getVideosList(server.url), await searchVideo(server.url, 'n') ]) { + for (const res of await getVideosFunctions()) { expect(res.body.total).to.equal(1) const videos = res.body.data expect(videos).to.have.lengthOf(1) - expect(videos[ 0 ].name).to.equal('normal') + expect(videos[0].name).to.equal('normal') } }) @@ -91,13 +143,13 @@ describe('Test video NSFW policy', function () { const serverConfig: ServerConfig = resConfig.body expect(serverConfig.instance.defaultNSFWPolicy).to.equal('blur') - for (const res of [ await getVideosList(server.url), await searchVideo(server.url, 'n') ]) { + for (const res of await getVideosFunctions()) { expect(res.body.total).to.equal(2) const videos = res.body.data expect(videos).to.have.lengthOf(2) - expect(videos[ 0 ].name).to.equal('normal') - expect(videos[ 1 ].name).to.equal('nsfw') + expect(videos[0].name).to.equal('normal') + expect(videos[1].name).to.equal('nsfw') } }) }) @@ -107,7 +159,7 @@ describe('Test video NSFW policy', function () { it('Should create a user having the default nsfw policy', async function () { const username = 'user1' const password = 'my super password' - await createUser(server.url, server.accessToken, username, password) + await createUser({ url: server.url, accessToken: server.accessToken, username: username, password: password }) userAccessToken = await userLogin(server, { username, password }) @@ -118,18 +170,16 @@ describe('Test video NSFW policy', function () { }) it('Should display NSFW videos with blur user NSFW policy', async function () { - const results = [ - await getVideosListWithToken(server.url, userAccessToken), - await searchVideoWithToken(server.url, 'n', userAccessToken) - ] + customConfig.instance.defaultNSFWPolicy = 'do_not_list' + await updateCustomConfig(server.url, server.accessToken, customConfig) - for (const res of results) { + 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) - expect(videos[ 0 ].name).to.equal('normal') - expect(videos[ 1 ].name).to.equal('nsfw') + expect(videos[0].name).to.equal('normal') + expect(videos[1].name).to.equal('nsfw') } }) @@ -140,18 +190,13 @@ describe('Test video NSFW policy', function () { nsfwPolicy: 'display' }) - const results = [ - await getVideosListWithToken(server.url, server.accessToken), - await searchVideoWithToken(server.url, 'n', server.accessToken) - ] - - for (const res of results) { + 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) - expect(videos[ 0 ].name).to.equal('normal') - expect(videos[ 1 ].name).to.equal('nsfw') + expect(videos[0].name).to.equal('normal') + expect(videos[1].name).to.equal('nsfw') } }) @@ -162,16 +207,12 @@ describe('Test video NSFW policy', function () { nsfwPolicy: 'do_not_list' }) - const results = [ - await getVideosListWithToken(server.url, server.accessToken), - await searchVideoWithToken(server.url, 'n', server.accessToken) - ] - for (const res of results) { + 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) - expect(videos[ 0 ].name).to.equal('normal') + expect(videos[0].name).to.equal('normal') } }) @@ -181,17 +222,43 @@ describe('Test video NSFW policy', function () { const videos = res.body.data expect(videos).to.have.lengthOf(2) - expect(videos[ 0 ].name).to.equal('normal') - expect(videos[ 1 ].name).to.equal('nsfw') + expect(videos[0].name).to.equal('normal') + expect(videos[1].name).to.equal('nsfw') + }) + + 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) + expect(videos[0].name).to.equal('nsfw') + } + }) + + 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) + expect(videos[0].name).to.equal('normal') + } + }) + + 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) + expect(videos[0].name).to.equal('normal') + expect(videos[1].name).to.equal('nsfw') + } }) }) after(async function () { - killallServers([ server ]) - - // Keep the logs if the test failed - if (this['ok']) { - await flushTests() - } + await cleanupTests([ server ]) }) })