2017-10-24 13:41:30 -04:00
|
|
|
/* tslint:disable:no-unused-expression */
|
|
|
|
|
|
|
|
import * as chai from 'chai'
|
2017-12-28 10:26:28 -05:00
|
|
|
import { omit } from 'lodash'
|
|
|
|
import 'mocha'
|
2017-10-24 13:41:30 -04:00
|
|
|
import {
|
2017-12-28 10:26:28 -05:00
|
|
|
createUser, deleteVideoChannel, flushTests, getAccountVideoChannelsList, getVideoChannelsList, immutableAssign, killallServers,
|
|
|
|
makeGetRequest, makePostBodyRequest, makePutBodyRequest, runServer, ServerInfo, setAccessTokensToServers, userLogin
|
2017-10-24 13:41:30 -04:00
|
|
|
} from '../../utils'
|
2017-12-28 10:26:28 -05:00
|
|
|
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
|
|
|
|
|
|
|
const expect = chai.expect
|
2017-10-24 13:41:30 -04:00
|
|
|
|
|
|
|
describe('Test videos API validator', function () {
|
|
|
|
const path = '/api/v1/videos/channels'
|
|
|
|
let server: ServerInfo
|
|
|
|
let accessTokenUser: string
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
2018-01-18 12:10:45 -05:00
|
|
|
this.timeout(30000)
|
2017-10-24 13:41:30 -04:00
|
|
|
|
|
|
|
await flushTests()
|
|
|
|
|
|
|
|
server = await runServer(1)
|
|
|
|
|
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
|
|
|
const user = {
|
|
|
|
username: 'fake',
|
|
|
|
password: 'fake_password'
|
|
|
|
}
|
|
|
|
await createUser(server.url, server.accessToken, user.username, user.password)
|
2017-12-28 08:29:57 -05:00
|
|
|
accessTokenUser = await userLogin(server, user)
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('When listing a video channels', function () {
|
|
|
|
it('Should fail with a bad start pagination', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await checkBadStartPagination(server.url, path, server.accessToken)
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad count pagination', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await checkBadCountPagination(server.url, path, server.accessToken)
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect sort', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await checkBadSortPagination(server.url, path, server.accessToken)
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-12-27 14:03:37 -05:00
|
|
|
describe('When listing account video channels', function () {
|
|
|
|
it('Should fail with bad account', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await getAccountVideoChannelsList(server.url, 'hello', 400)
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
2017-12-27 14:03:37 -05:00
|
|
|
it('Should fail with a unknown account', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await getAccountVideoChannelsList(server.url, 154, 404)
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When adding a video channel', function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
const baseCorrectParams = {
|
|
|
|
name: 'hello',
|
2018-02-15 08:46:26 -05:00
|
|
|
description: 'super description',
|
|
|
|
support: 'super support text'
|
2017-12-28 10:26:28 -05:00
|
|
|
}
|
2017-10-24 13:41:30 -04:00
|
|
|
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await makePostBodyRequest({ url: server.url, path, token: 'none', fields: baseCorrectParams, statusCodeExpected: 401 })
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with nothing', async function () {
|
|
|
|
const fields = {}
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail without name', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
const fields = omit(baseCorrectParams, 'name')
|
2017-10-24 13:41:30 -04:00
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a long name', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
const fields = immutableAssign(baseCorrectParams, { name: 'super'.repeat(25) })
|
2017-10-24 13:41:30 -04:00
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a long description', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
const fields = immutableAssign(baseCorrectParams, { description: 'super'.repeat(60) })
|
2017-10-24 13:41:30 -04:00
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
2018-02-15 08:46:26 -05:00
|
|
|
it('Should fail with a long support text', async function () {
|
|
|
|
const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(70) })
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
2017-10-24 13:41:30 -04:00
|
|
|
it('Should succeed with the correct parameters', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields: baseCorrectParams,
|
2018-02-15 08:46:26 -05:00
|
|
|
statusCodeExpected: 200
|
2017-12-28 10:26:28 -05:00
|
|
|
})
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When updating a video channel', function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
const baseCorrectParams = {
|
|
|
|
name: 'hello',
|
|
|
|
description: 'super description'
|
|
|
|
}
|
|
|
|
|
2017-10-24 13:41:30 -04:00
|
|
|
let videoChannelId
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
const res = await getVideoChannelsList(server.url, 0, 1)
|
|
|
|
videoChannelId = res.body.data[0].id
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: path + '/' + videoChannelId,
|
|
|
|
token: 'hi',
|
|
|
|
fields: baseCorrectParams,
|
|
|
|
statusCodeExpected: 401
|
|
|
|
})
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with another authenticated user', async function () {
|
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: path + '/' + videoChannelId,
|
|
|
|
token: accessTokenUser,
|
2017-12-28 10:26:28 -05:00
|
|
|
fields: baseCorrectParams,
|
2017-10-24 13:41:30 -04:00
|
|
|
statusCodeExpected: 403
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a long name', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
const fields = immutableAssign(baseCorrectParams, { name: 'super'.repeat(25) })
|
2017-10-24 13:41:30 -04:00
|
|
|
await makePutBodyRequest({ url: server.url, path: path + '/' + videoChannelId, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a long description', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
const fields = immutableAssign(baseCorrectParams, { description: 'super'.repeat(60) })
|
2017-10-24 13:41:30 -04:00
|
|
|
await makePutBodyRequest({ url: server.url, path: path + '/' + videoChannelId, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
2018-02-15 08:46:26 -05:00
|
|
|
it('Should fail with a long support text', async function () {
|
|
|
|
const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(70) })
|
|
|
|
await makePutBodyRequest({ url: server.url, path: path + '/' + videoChannelId, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
2017-10-24 13:41:30 -04:00
|
|
|
it('Should succeed with the correct parameters', async function () {
|
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: path + '/' + videoChannelId,
|
|
|
|
token: server.accessToken,
|
2017-12-28 10:26:28 -05:00
|
|
|
fields: baseCorrectParams,
|
2017-10-24 13:41:30 -04:00
|
|
|
statusCodeExpected: 204
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When getting a video channel', function () {
|
|
|
|
let videoChannelId: number
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
const res = await getVideoChannelsList(server.url, 0, 1)
|
|
|
|
videoChannelId = res.body.data[0].id
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should return the list of the video channels with nothing', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
statusCodeExpected: 200
|
|
|
|
})
|
2017-10-24 13:41:30 -04:00
|
|
|
|
|
|
|
expect(res.body.data).to.be.an('array')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail without a correct uuid', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: path + '/coucou',
|
|
|
|
statusCodeExpected: 400
|
|
|
|
})
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should return 404 with an incorrect video channel', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: path + '/4da6fde3-88f7-4d16-b119-108df5630b06',
|
|
|
|
statusCodeExpected: 404
|
|
|
|
})
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct parameters', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: path + '/' + videoChannelId,
|
|
|
|
statusCodeExpected: 200
|
|
|
|
})
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When deleting a video channel', function () {
|
|
|
|
let videoChannelId: number
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
const res = await getVideoChannelsList(server.url, 0, 1)
|
|
|
|
videoChannelId = res.body.data[0].id
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await deleteVideoChannel(server.url, 'coucou', videoChannelId, 401)
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with another authenticated user', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await deleteVideoChannel(server.url, accessTokenUser, videoChannelId, 403)
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an unknown id', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await deleteVideoChannel(server.url, server.accessToken, 454554, 404)
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct parameters', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await deleteVideoChannel(server.url, server.accessToken, videoChannelId)
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail to delete the last user video channel', async function () {
|
|
|
|
const res = await getVideoChannelsList(server.url, 0, 1)
|
|
|
|
videoChannelId = res.body.data[0].id
|
|
|
|
|
2017-12-28 10:26:28 -05:00
|
|
|
await deleteVideoChannel(server.url, server.accessToken, videoChannelId, 409)
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
after(async function () {
|
|
|
|
killallServers([ server ])
|
|
|
|
|
|
|
|
// Keep the logs if the test failed
|
|
|
|
if (this['ok']) {
|
|
|
|
await flushTests()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|