2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2017-10-24 13:41:30 -04:00
|
|
|
|
2021-06-14 10:52:22 -04:00
|
|
|
import 'mocha'
|
2017-10-24 13:41:30 -04:00
|
|
|
import * as chai from 'chai'
|
2017-12-28 10:26:28 -05:00
|
|
|
import { omit } from 'lodash'
|
2017-10-24 13:41:30 -04:00
|
|
|
import {
|
2021-06-14 10:52:22 -04:00
|
|
|
buildAbsoluteFixturePath,
|
2021-07-09 05:21:30 -04:00
|
|
|
ChannelsCommand,
|
2021-07-13 03:43:59 -04:00
|
|
|
checkBadCountPagination,
|
|
|
|
checkBadSortPagination,
|
|
|
|
checkBadStartPagination,
|
2019-04-24 09:10:37 -04:00
|
|
|
cleanupTests,
|
2021-07-16 03:47:51 -04:00
|
|
|
createSingleServer,
|
2018-04-24 11:05:32 -04:00
|
|
|
makeGetRequest,
|
|
|
|
makePostBodyRequest,
|
2018-06-29 08:34:04 -04:00
|
|
|
makePutBodyRequest,
|
|
|
|
makeUploadRequest,
|
2021-07-16 03:47:51 -04:00
|
|
|
PeerTubeServer,
|
2021-07-13 05:05:15 -04:00
|
|
|
setAccessTokensToServers
|
2021-07-13 03:43:59 -04:00
|
|
|
} from '@shared/extra-utils'
|
2021-07-16 08:27:30 -04:00
|
|
|
import { HttpStatusCode, VideoChannelUpdate } from '@shared/models'
|
2017-12-28 10:26:28 -05:00
|
|
|
|
|
|
|
const expect = chai.expect
|
2017-10-24 13:41:30 -04:00
|
|
|
|
2018-04-26 10:11:38 -04:00
|
|
|
describe('Test video channels API validator', function () {
|
2018-04-24 11:05:32 -04:00
|
|
|
const videoChannelPath = '/api/v1/video-channels'
|
2021-07-16 03:47:51 -04:00
|
|
|
let server: PeerTubeServer
|
2017-10-24 13:41:30 -04:00
|
|
|
let accessTokenUser: string
|
2021-07-09 05:21:30 -04:00
|
|
|
let command: ChannelsCommand
|
2017-10-24 13:41:30 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
2018-01-18 12:10:45 -05:00
|
|
|
this.timeout(30000)
|
2017-10-24 13:41:30 -04:00
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
server = await createSingleServer(1)
|
2017-10-24 13:41:30 -04:00
|
|
|
|
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
|
|
|
const user = {
|
|
|
|
username: 'fake',
|
|
|
|
password: 'fake_password'
|
|
|
|
}
|
2018-04-25 04:21:38 -04:00
|
|
|
|
|
|
|
{
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.users.create({ username: user.username, password: user.password })
|
|
|
|
accessTokenUser = await server.login.getAccessToken(user)
|
2018-04-25 04:21:38 -04:00
|
|
|
}
|
2021-07-09 05:21:30 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
command = server.channels
|
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 () {
|
2018-04-24 11:05:32 -04:00
|
|
|
await checkBadStartPagination(server.url, videoChannelPath, server.accessToken)
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad count pagination', async function () {
|
2018-04-24 11:05:32 -04:00
|
|
|
await checkBadCountPagination(server.url, videoChannelPath, server.accessToken)
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect sort', async function () {
|
2018-04-24 11:05:32 -04:00
|
|
|
await checkBadSortPagination(server.url, videoChannelPath, 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 () {
|
2019-05-29 09:09:38 -04:00
|
|
|
const accountChannelPath = '/api/v1/accounts/fake/video-channels'
|
|
|
|
|
|
|
|
it('Should fail with a bad start pagination', async function () {
|
|
|
|
await checkBadStartPagination(server.url, accountChannelPath, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad count pagination', async function () {
|
|
|
|
await checkBadCountPagination(server.url, accountChannelPath, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect sort', async function () {
|
|
|
|
await checkBadSortPagination(server.url, accountChannelPath, server.accessToken)
|
|
|
|
})
|
|
|
|
|
2017-12-27 14:03:37 -05:00
|
|
|
it('Should fail with a unknown account', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.channels.listByAccount({ accountName: 'unknown', expectedStatus: HttpStatusCode.NOT_FOUND_404 })
|
2019-05-29 09:09:38 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct parameters', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: accountChannelPath,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2019-05-29 09:09:38 -04:00
|
|
|
})
|
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 = {
|
2018-08-17 09:45:42 -04:00
|
|
|
name: 'super_channel',
|
2018-04-26 10:11:38 -04:00
|
|
|
displayName: 'hello',
|
2018-02-15 08:46:26 -05:00
|
|
|
description: 'super description',
|
|
|
|
support: 'super support text'
|
2017-12-28 10:26:28 -05:00
|
|
|
}
|
2018-04-24 11:05:32 -04:00
|
|
|
|
2017-10-24 13:41:30 -04:00
|
|
|
it('Should fail with a non authenticated user', async function () {
|
2018-04-25 10:15:39 -04:00
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: videoChannelPath,
|
|
|
|
token: 'none',
|
|
|
|
fields: baseCorrectParams,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
|
2018-04-25 10:15:39 -04:00
|
|
|
})
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with nothing', async function () {
|
|
|
|
const fields = {}
|
2018-04-25 10:15:39 -04:00
|
|
|
await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
2018-08-17 09:45:42 -04:00
|
|
|
it('Should fail without a name', async function () {
|
|
|
|
const fields = omit(baseCorrectParams, 'name')
|
|
|
|
await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad name', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, name: 'super name' }
|
2018-08-17 09:45:42 -04:00
|
|
|
await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
2018-04-26 10:11:38 -04:00
|
|
|
it('Should fail without a name', async function () {
|
|
|
|
const fields = omit(baseCorrectParams, 'displayName')
|
2018-04-25 10:15:39 -04:00
|
|
|
await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a long name', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, displayName: 'super'.repeat(25) }
|
2018-04-25 10:15:39 -04:00
|
|
|
await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a long description', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, description: 'super'.repeat(201) }
|
2018-04-25 10:15:39 -04:00
|
|
|
await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
2018-02-15 08:46:26 -05:00
|
|
|
it('Should fail with a long support text', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, support: 'super'.repeat(201) }
|
2018-04-25 10:15:39 -04:00
|
|
|
await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
|
2018-02-15 08:46:26 -05:00
|
|
|
})
|
|
|
|
|
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,
|
2018-04-25 10:15:39 -04:00
|
|
|
path: videoChannelPath,
|
2017-12-28 10:26:28 -05:00
|
|
|
token: server.accessToken,
|
|
|
|
fields: baseCorrectParams,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2017-12-28 10:26:28 -05:00
|
|
|
})
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
2018-10-01 09:18:07 -04:00
|
|
|
|
|
|
|
it('Should fail when adding a channel with the same username', async function () {
|
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: videoChannelPath,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields: baseCorrectParams,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.CONFLICT_409
|
2018-10-01 09:18:07 -04:00
|
|
|
})
|
|
|
|
})
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('When updating a video channel', function () {
|
2019-05-31 10:30:11 -04:00
|
|
|
const baseCorrectParams: VideoChannelUpdate = {
|
2018-04-26 10:11:38 -04:00
|
|
|
displayName: 'hello',
|
2019-05-31 10:30:11 -04:00
|
|
|
description: 'super description',
|
|
|
|
support: 'toto',
|
|
|
|
bulkVideosSupportUpdate: false
|
2017-12-28 10:26:28 -05:00
|
|
|
}
|
2018-04-25 04:21:38 -04:00
|
|
|
let path: string
|
2017-12-28 10:26:28 -05:00
|
|
|
|
2017-10-24 13:41:30 -04:00
|
|
|
before(async function () {
|
2018-08-17 09:45:42 -04:00
|
|
|
path = videoChannelPath + '/super_channel'
|
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 makePutBodyRequest({
|
|
|
|
url: server.url,
|
2018-04-24 11:05:32 -04:00
|
|
|
path,
|
2017-12-28 10:26:28 -05:00
|
|
|
token: 'hi',
|
|
|
|
fields: baseCorrectParams,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
|
2017-12-28 10:26:28 -05:00
|
|
|
})
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with another authenticated user', async function () {
|
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
2018-04-24 11:05:32 -04:00
|
|
|
path,
|
2017-10-24 13:41:30 -04:00
|
|
|
token: accessTokenUser,
|
2017-12-28 10:26:28 -05:00
|
|
|
fields: baseCorrectParams,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.FORBIDDEN_403
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a long name', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, displayName: 'super'.repeat(25) }
|
2018-04-24 11:05:32 -04:00
|
|
|
await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a long description', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, description: 'super'.repeat(201) }
|
2018-04-24 11:05:32 -04:00
|
|
|
await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
2018-02-15 08:46:26 -05:00
|
|
|
it('Should fail with a long support text', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, support: 'super'.repeat(201) }
|
2018-04-24 11:05:32 -04:00
|
|
|
await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
2018-02-15 08:46:26 -05:00
|
|
|
})
|
|
|
|
|
2019-05-31 10:30:11 -04:00
|
|
|
it('Should fail with a bad bulkVideosSupportUpdate field', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, bulkVideosSupportUpdate: 'super' }
|
2019-05-31 10:30:11 -04:00
|
|
|
await makePutBodyRequest({ 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 () {
|
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
2018-04-24 11:05:32 -04:00
|
|
|
path,
|
2017-10-24 13:41:30 -04:00
|
|
|
token: server.accessToken,
|
2017-12-28 10:26:28 -05:00
|
|
|
fields: baseCorrectParams,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.NO_CONTENT_204
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-07 04:36:13 -04:00
|
|
|
describe('When updating video channel avatar/banner', function () {
|
|
|
|
const types = [ 'avatar', 'banner' ]
|
2018-06-29 05:29:23 -04:00
|
|
|
let path: string
|
|
|
|
|
|
|
|
before(async function () {
|
2018-08-17 09:45:42 -04:00
|
|
|
path = videoChannelPath + '/super_channel'
|
2018-06-29 05:29:23 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect input file', async function () {
|
2021-04-07 04:36:13 -04:00
|
|
|
for (const type of types) {
|
|
|
|
const fields = {}
|
|
|
|
const attaches = {
|
2021-06-14 10:52:22 -04:00
|
|
|
[type + 'file']: buildAbsoluteFixturePath('video_short.mp4')
|
2021-04-07 04:36:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
await makeUploadRequest({ url: server.url, path: `${path}/${type}/pick`, token: server.accessToken, fields, attaches })
|
2018-06-29 05:29:23 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a big file', async function () {
|
2021-04-07 04:36:13 -04:00
|
|
|
for (const type of types) {
|
|
|
|
const fields = {}
|
|
|
|
const attaches = {
|
2021-06-14 10:52:22 -04:00
|
|
|
[type + 'file']: buildAbsoluteFixturePath('avatar-big.png')
|
2021-04-07 04:36:13 -04:00
|
|
|
}
|
|
|
|
await makeUploadRequest({ url: server.url, path: `${path}/${type}/pick`, token: server.accessToken, fields, attaches })
|
2018-06-29 05:29:23 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an unauthenticated user', async function () {
|
2021-04-07 04:36:13 -04:00
|
|
|
for (const type of types) {
|
|
|
|
const fields = {}
|
|
|
|
const attaches = {
|
2021-06-14 10:52:22 -04:00
|
|
|
[type + 'file']: buildAbsoluteFixturePath('avatar.png')
|
2021-04-07 04:36:13 -04:00
|
|
|
}
|
|
|
|
await makeUploadRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: `${path}/${type}/pick`,
|
|
|
|
fields,
|
|
|
|
attaches,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
|
2021-04-07 04:36:13 -04:00
|
|
|
})
|
2018-06-29 05:29:23 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct params', async function () {
|
2021-04-07 04:36:13 -04:00
|
|
|
for (const type of types) {
|
|
|
|
const fields = {}
|
|
|
|
const attaches = {
|
2021-06-14 10:52:22 -04:00
|
|
|
[type + 'file']: buildAbsoluteFixturePath('avatar.png')
|
2021-04-07 04:36:13 -04:00
|
|
|
}
|
|
|
|
await makeUploadRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: `${path}/${type}/pick`,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields,
|
|
|
|
attaches,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2021-04-07 04:36:13 -04:00
|
|
|
})
|
2018-06-29 05:29:23 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-24 13:41:30 -04:00
|
|
|
describe('When getting a video channel', function () {
|
|
|
|
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,
|
2018-04-25 10:15:39 -04:00
|
|
|
path: videoChannelPath,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2017-12-28 10:26:28 -05:00
|
|
|
})
|
2017-10-24 13:41:30 -04:00
|
|
|
|
|
|
|
expect(res.body.data).to.be.an('array')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should return 404 with an incorrect video channel', async function () {
|
2017-12-28 10:26:28 -05:00
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
2018-08-17 09:45:42 -04:00
|
|
|
path: videoChannelPath + '/super_channel2',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.NOT_FOUND_404
|
2017-12-28 10:26:28 -05:00
|
|
|
})
|
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,
|
2018-08-17 09:45:42 -04:00
|
|
|
path: videoChannelPath + '/super_channel',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2017-12-28 10:26:28 -05:00
|
|
|
})
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-10-19 03:44:43 -04:00
|
|
|
describe('When getting channel followers', function () {
|
|
|
|
const path = '/api/v1/video-channels/super_channel/followers'
|
|
|
|
|
|
|
|
it('Should fail with a bad start pagination', async function () {
|
|
|
|
await checkBadStartPagination(server.url, path, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad count pagination', async function () {
|
|
|
|
await checkBadCountPagination(server.url, path, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect sort', async function () {
|
|
|
|
await checkBadSortPagination(server.url, path, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a unauthenticated user', async function () {
|
|
|
|
await makeGetRequest({ url: server.url, path, expectedStatus: HttpStatusCode.UNAUTHORIZED_401 })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a another user', async function () {
|
|
|
|
await makeGetRequest({ url: server.url, path, token: accessTokenUser, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct params', async function () {
|
|
|
|
await makeGetRequest({ url: server.url, path, token: server.accessToken, expectedStatus: HttpStatusCode.OK_200 })
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-24 13:41:30 -04:00
|
|
|
describe('When deleting a video channel', function () {
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
2021-07-09 05:21:30 -04:00
|
|
|
await command.delete({ token: 'coucou', channelName: 'super_channel', expectedStatus: HttpStatusCode.UNAUTHORIZED_401 })
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with another authenticated user', async function () {
|
2021-07-09 05:21:30 -04:00
|
|
|
await command.delete({ token: accessTokenUser, channelName: 'super_channel', expectedStatus: HttpStatusCode.FORBIDDEN_403 })
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
2018-04-24 11:05:32 -04:00
|
|
|
it('Should fail with an unknown video channel id', async function () {
|
2021-07-09 05:21:30 -04:00
|
|
|
await command.delete({ channelName: 'super_channel2', expectedStatus: HttpStatusCode.NOT_FOUND_404 })
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct parameters', async function () {
|
2021-07-09 05:21:30 -04:00
|
|
|
await command.delete({ channelName: 'super_channel' })
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail to delete the last user video channel', async function () {
|
2021-07-09 05:21:30 -04:00
|
|
|
await command.delete({ channelName: 'root_channel', expectedStatus: HttpStatusCode.CONFLICT_409 })
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests([ server ])
|
2017-10-24 13:41:30 -04:00
|
|
|
})
|
|
|
|
})
|