2017-09-22 03:13:43 -04:00
|
|
|
/* tslint:disable:no-unused-expression */
|
|
|
|
|
|
|
|
import 'mocha'
|
|
|
|
|
|
|
|
import {
|
2018-08-13 10:57:13 -04:00
|
|
|
createUser,
|
|
|
|
flushTests,
|
2018-08-14 03:16:32 -04:00
|
|
|
getBlacklistedVideosList, getVideo, getVideoWithToken,
|
2018-08-13 10:57:13 -04:00
|
|
|
killallServers,
|
|
|
|
makePostBodyRequest,
|
|
|
|
makePutBodyRequest,
|
|
|
|
removeVideoFromBlacklist,
|
|
|
|
runServer,
|
|
|
|
ServerInfo,
|
|
|
|
setAccessTokensToServers,
|
|
|
|
uploadVideo,
|
|
|
|
userLogin
|
2017-09-22 03:13:43 -04:00
|
|
|
} from '../../utils'
|
2017-12-28 10:26:28 -05:00
|
|
|
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
2018-08-14 03:16:32 -04:00
|
|
|
import { VideoDetails } from '../../../../shared/models/videos'
|
|
|
|
import { expect } from 'chai'
|
2017-09-22 03:13:43 -04:00
|
|
|
|
|
|
|
describe('Test video blacklist API validators', function () {
|
|
|
|
let server: ServerInfo
|
2018-08-13 10:57:13 -04:00
|
|
|
let notBlacklistedVideoId: number
|
2018-08-14 03:16:32 -04:00
|
|
|
let userAccessToken1 = ''
|
|
|
|
let userAccessToken2 = ''
|
2017-09-22 03:13:43 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
|
|
|
await flushTests()
|
|
|
|
|
|
|
|
server = await runServer(1)
|
|
|
|
|
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
2018-08-14 03:16:32 -04:00
|
|
|
{
|
|
|
|
const username = 'user1'
|
|
|
|
const password = 'my super password'
|
|
|
|
await createUser(server.url, server.accessToken, username, password)
|
|
|
|
userAccessToken1 = await userLogin(server, { username, password })
|
|
|
|
}
|
2017-09-22 03:13:43 -04:00
|
|
|
|
2018-08-13 10:57:13 -04:00
|
|
|
{
|
2018-08-14 03:16:32 -04:00
|
|
|
const username = 'user2'
|
|
|
|
const password = 'my super password'
|
|
|
|
await createUser(server.url, server.accessToken, username, password)
|
|
|
|
userAccessToken2 = await userLogin(server, { username, password })
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const res = await uploadVideo(server.url, userAccessToken1, {})
|
2018-08-13 10:57:13 -04:00
|
|
|
server.video = res.body.video
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const res = await uploadVideo(server.url, server.accessToken, {})
|
|
|
|
notBlacklistedVideoId = res.body.video.uuid
|
|
|
|
}
|
2017-09-22 03:13:43 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('When adding a video in blacklist', function () {
|
|
|
|
const basePath = '/api/v1/videos/'
|
|
|
|
|
|
|
|
it('Should fail with nothing', async function () {
|
|
|
|
const path = basePath + server.video + '/blacklist'
|
|
|
|
const fields = {}
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a wrong video', async function () {
|
|
|
|
const wrongPath = '/api/v1/videos/blabla/blacklist'
|
|
|
|
const fields = {}
|
|
|
|
await makePostBodyRequest({ url: server.url, path: wrongPath, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
|
|
|
const path = basePath + server.video + '/blacklist'
|
2017-12-28 10:26:28 -05:00
|
|
|
const fields = {}
|
2017-09-22 03:13:43 -04:00
|
|
|
await makePostBodyRequest({ url: server.url, path, token: 'hello', fields, statusCodeExpected: 401 })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a non admin user', async function () {
|
|
|
|
const path = basePath + server.video + '/blacklist'
|
2017-12-28 10:26:28 -05:00
|
|
|
const fields = {}
|
2018-08-14 03:16:32 -04:00
|
|
|
await makePostBodyRequest({ url: server.url, path, token: userAccessToken2, fields, statusCodeExpected: 403 })
|
2017-09-22 03:13:43 -04:00
|
|
|
})
|
|
|
|
|
2018-08-13 10:57:13 -04:00
|
|
|
it('Should fail with an invalid reason', async function () {
|
|
|
|
const path = basePath + server.video.uuid + '/blacklist'
|
|
|
|
const fields = { reason: 'a'.repeat(305) }
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct params', async function () {
|
|
|
|
const path = basePath + server.video.uuid + '/blacklist'
|
|
|
|
const fields = { }
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields, statusCodeExpected: 204 })
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When updating a video in blacklist', function () {
|
|
|
|
const basePath = '/api/v1/videos/'
|
|
|
|
|
|
|
|
it('Should fail with a wrong video', async function () {
|
|
|
|
const wrongPath = '/api/v1/videos/blabla/blacklist'
|
|
|
|
const fields = {}
|
|
|
|
await makePutBodyRequest({ url: server.url, path: wrongPath, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a video not blacklisted', async function () {
|
|
|
|
const path = '/api/v1/videos/' + notBlacklistedVideoId + '/blacklist'
|
|
|
|
const fields = {}
|
|
|
|
await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields, statusCodeExpected: 404 })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
|
|
|
const path = basePath + server.video + '/blacklist'
|
|
|
|
const fields = {}
|
|
|
|
await makePutBodyRequest({ url: server.url, path, token: 'hello', fields, statusCodeExpected: 401 })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a non admin user', async function () {
|
|
|
|
const path = basePath + server.video + '/blacklist'
|
2017-12-28 10:26:28 -05:00
|
|
|
const fields = {}
|
2018-08-14 03:16:32 -04:00
|
|
|
await makePutBodyRequest({ url: server.url, path, token: userAccessToken2, fields, statusCodeExpected: 403 })
|
2018-08-13 10:57:13 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an invalid reason', async function () {
|
|
|
|
const path = basePath + server.video.uuid + '/blacklist'
|
|
|
|
const fields = { reason: 'a'.repeat(305) }
|
|
|
|
|
|
|
|
await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct params', async function () {
|
|
|
|
const path = basePath + server.video.uuid + '/blacklist'
|
|
|
|
const fields = { reason: 'hello' }
|
|
|
|
|
|
|
|
await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields, statusCodeExpected: 204 })
|
2017-09-22 03:13:43 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-08-14 03:16:32 -04:00
|
|
|
describe('When getting blacklisted video', function () {
|
|
|
|
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
|
|
|
await getVideo(server.url, server.video.uuid, 401)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with another user', async function () {
|
|
|
|
await getVideoWithToken(server.url, userAccessToken2, server.video.uuid, 403)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the owner authenticated user', async function () {
|
|
|
|
const res = await getVideoWithToken(server.url, userAccessToken1, server.video.uuid, 200)
|
|
|
|
const video: VideoDetails = res.body
|
|
|
|
|
|
|
|
expect(video.blacklisted).to.be.true
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with an admin', async function () {
|
|
|
|
const res = await getVideoWithToken(server.url, server.accessToken, server.video.uuid, 200)
|
|
|
|
const video: VideoDetails = res.body
|
|
|
|
|
|
|
|
expect(video.blacklisted).to.be.true
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-09-22 03:13:43 -04:00
|
|
|
describe('When removing a video in blacklist', function () {
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
2018-08-13 10:57:13 -04:00
|
|
|
await removeVideoFromBlacklist(server.url, 'fake token', server.video.uuid, 401)
|
2017-09-22 03:13:43 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a non admin user', async function () {
|
2018-08-14 03:16:32 -04:00
|
|
|
await removeVideoFromBlacklist(server.url, userAccessToken2, server.video.uuid, 403)
|
2017-09-22 03:13:43 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect id', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await removeVideoFromBlacklist(server.url, server.accessToken, 'hello', 400)
|
2017-09-22 03:13:43 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a not blacklisted video', async function () {
|
|
|
|
// The video was not added to the blacklist so it should fail
|
2018-08-13 10:57:13 -04:00
|
|
|
await removeVideoFromBlacklist(server.url, server.accessToken, notBlacklistedVideoId, 404)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct params', async function () {
|
|
|
|
await removeVideoFromBlacklist(server.url, server.accessToken, server.video.uuid, 204)
|
2017-09-22 03:13:43 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When listing videos in blacklist', function () {
|
2017-10-10 04:02:18 -04:00
|
|
|
const basePath = '/api/v1/videos/blacklist/'
|
2017-09-22 03:13:43 -04:00
|
|
|
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await getBlacklistedVideosList(server.url, 'fake token', 401)
|
2017-09-22 03:13:43 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a non admin user', async function () {
|
2018-08-14 03:16:32 -04:00
|
|
|
await getBlacklistedVideosList(server.url, userAccessToken2, 403)
|
2017-09-22 03:13:43 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad start pagination', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await checkBadStartPagination(server.url, basePath, server.accessToken)
|
2017-09-22 03:13:43 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad count pagination', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await checkBadCountPagination(server.url, basePath, server.accessToken)
|
2017-09-22 03:13:43 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect sort', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await checkBadSortPagination(server.url, basePath, server.accessToken)
|
2017-09-22 03:13:43 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
after(async function () {
|
|
|
|
killallServers([ server ])
|
|
|
|
|
|
|
|
// Keep the logs if the test failed
|
|
|
|
if (this['ok']) {
|
|
|
|
await flushTests()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|