]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/check-params/video-channels.ts
Merge branch 'release/3.1.0' into develop
[github/Chocobozzz/PeerTube.git] / server / tests / api / check-params / video-channels.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
5f04dd2f 2
5f04dd2f 3import * as chai from 'chai'
11ba2ab3
C
4import { omit } from 'lodash'
5import 'mocha'
5f04dd2f 6import {
7c3b7976 7 cleanupTests,
48dce1c9
C
8 createUser,
9 deleteVideoChannel,
7c3b7976 10 flushAndRunServer,
ad9e39fb 11 getAccountVideoChannelsList,
48dce1c9 12 immutableAssign,
48dce1c9
C
13 makeGetRequest,
14 makePostBodyRequest,
52d9f792
C
15 makePutBodyRequest,
16 makeUploadRequest,
48dce1c9
C
17 ServerInfo,
18 setAccessTokensToServers,
19 userLogin
94565d52 20} from '../../../../shared/extra-utils'
9639bd17 21import {
22 checkBadCountPagination,
23 checkBadSortPagination,
24 checkBadStartPagination
94565d52 25} from '../../../../shared/extra-utils/requests/check-api-params'
52d9f792 26import { join } from 'path'
7d14d4d2 27import { VideoChannelUpdate } from '../../../../shared/models/videos'
2d53be02 28import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
11ba2ab3
C
29
30const expect = chai.expect
5f04dd2f 31
08c1efbe 32describe('Test video channels API validator', function () {
48dce1c9 33 const videoChannelPath = '/api/v1/video-channels'
5f04dd2f 34 let server: ServerInfo
5f04dd2f
C
35 let accessTokenUser: string
36
37 // ---------------------------------------------------------------
38
39 before(async function () {
e212f887 40 this.timeout(30000)
5f04dd2f 41
210feb6c 42 server = await flushAndRunServer(1)
5f04dd2f
C
43
44 await setAccessTokensToServers([ server ])
45
5f04dd2f
C
46 const user = {
47 username: 'fake',
48 password: 'fake_password'
49 }
6b738c7a
C
50
51 {
1eddc9a7 52 await createUser({ url: server.url, accessToken: server.accessToken, username: user.username, password: user.password })
6b738c7a
C
53 accessTokenUser = await userLogin(server, user)
54 }
5f04dd2f
C
55 })
56
57 describe('When listing a video channels', function () {
58 it('Should fail with a bad start pagination', async function () {
48dce1c9 59 await checkBadStartPagination(server.url, videoChannelPath, server.accessToken)
5f04dd2f
C
60 })
61
62 it('Should fail with a bad count pagination', async function () {
48dce1c9 63 await checkBadCountPagination(server.url, videoChannelPath, server.accessToken)
5f04dd2f
C
64 })
65
66 it('Should fail with an incorrect sort', async function () {
48dce1c9 67 await checkBadSortPagination(server.url, videoChannelPath, server.accessToken)
5f04dd2f
C
68 })
69 })
70
d50acfab 71 describe('When listing account video channels', function () {
91b66319
C
72 const accountChannelPath = '/api/v1/accounts/fake/video-channels'
73
74 it('Should fail with a bad start pagination', async function () {
75 await checkBadStartPagination(server.url, accountChannelPath, server.accessToken)
76 })
77
78 it('Should fail with a bad count pagination', async function () {
79 await checkBadCountPagination(server.url, accountChannelPath, server.accessToken)
80 })
81
82 it('Should fail with an incorrect sort', async function () {
83 await checkBadSortPagination(server.url, accountChannelPath, server.accessToken)
84 })
85
d50acfab 86 it('Should fail with a unknown account', async function () {
2d53be02 87 await getAccountVideoChannelsList({ url: server.url, accountName: 'unknown', specialStatus: HttpStatusCode.NOT_FOUND_404 })
91b66319
C
88 })
89
90 it('Should succeed with the correct parameters', async function () {
91 await makeGetRequest({
92 url: server.url,
93 path: accountChannelPath,
2d53be02 94 statusCodeExpected: HttpStatusCode.OK_200
91b66319 95 })
5f04dd2f
C
96 })
97 })
98
99 describe('When adding a video channel', function () {
11ba2ab3 100 const baseCorrectParams = {
8a19bee1 101 name: 'super_channel',
08c1efbe 102 displayName: 'hello',
2422c46b
C
103 description: 'super description',
104 support: 'super support text'
11ba2ab3 105 }
48dce1c9 106
5f04dd2f 107 it('Should fail with a non authenticated user', async function () {
cc918ac3
C
108 await makePostBodyRequest({
109 url: server.url,
110 path: videoChannelPath,
111 token: 'none',
112 fields: baseCorrectParams,
2d53be02 113 statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401
cc918ac3 114 })
5f04dd2f
C
115 })
116
117 it('Should fail with nothing', async function () {
118 const fields = {}
cc918ac3 119 await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
5f04dd2f
C
120 })
121
8a19bee1
C
122 it('Should fail without a name', async function () {
123 const fields = omit(baseCorrectParams, 'name')
124 await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
125 })
126
127 it('Should fail with a bad name', async function () {
128 const fields = immutableAssign(baseCorrectParams, { name: 'super name' })
129 await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
130 })
131
08c1efbe
C
132 it('Should fail without a name', async function () {
133 const fields = omit(baseCorrectParams, 'displayName')
cc918ac3 134 await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
5f04dd2f
C
135 })
136
137 it('Should fail with a long name', async function () {
08c1efbe 138 const fields = immutableAssign(baseCorrectParams, { displayName: 'super'.repeat(25) })
cc918ac3 139 await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
5f04dd2f
C
140 })
141
142 it('Should fail with a long description', async function () {
d23e6a1c 143 const fields = immutableAssign(baseCorrectParams, { description: 'super'.repeat(201) })
cc918ac3 144 await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
5f04dd2f
C
145 })
146
2422c46b 147 it('Should fail with a long support text', async function () {
d23e6a1c 148 const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(201) })
cc918ac3 149 await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
2422c46b
C
150 })
151
5f04dd2f 152 it('Should succeed with the correct parameters', async function () {
11ba2ab3
C
153 await makePostBodyRequest({
154 url: server.url,
cc918ac3 155 path: videoChannelPath,
11ba2ab3
C
156 token: server.accessToken,
157 fields: baseCorrectParams,
2d53be02 158 statusCodeExpected: HttpStatusCode.OK_200
11ba2ab3 159 })
5f04dd2f 160 })
601527d7
C
161
162 it('Should fail when adding a channel with the same username', async function () {
163 await makePostBodyRequest({
164 url: server.url,
165 path: videoChannelPath,
166 token: server.accessToken,
167 fields: baseCorrectParams,
2d53be02 168 statusCodeExpected: HttpStatusCode.CONFLICT_409
601527d7
C
169 })
170 })
5f04dd2f
C
171 })
172
173 describe('When updating a video channel', function () {
7d14d4d2 174 const baseCorrectParams: VideoChannelUpdate = {
08c1efbe 175 displayName: 'hello',
7d14d4d2
C
176 description: 'super description',
177 support: 'toto',
178 bulkVideosSupportUpdate: false
11ba2ab3 179 }
6b738c7a 180 let path: string
11ba2ab3 181
5f04dd2f 182 before(async function () {
8a19bee1 183 path = videoChannelPath + '/super_channel'
5f04dd2f
C
184 })
185
186 it('Should fail with a non authenticated user', async function () {
11ba2ab3
C
187 await makePutBodyRequest({
188 url: server.url,
48dce1c9 189 path,
11ba2ab3
C
190 token: 'hi',
191 fields: baseCorrectParams,
2d53be02 192 statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401
11ba2ab3 193 })
5f04dd2f
C
194 })
195
196 it('Should fail with another authenticated user', async function () {
5f04dd2f
C
197 await makePutBodyRequest({
198 url: server.url,
48dce1c9 199 path,
5f04dd2f 200 token: accessTokenUser,
11ba2ab3 201 fields: baseCorrectParams,
2d53be02 202 statusCodeExpected: HttpStatusCode.FORBIDDEN_403
5f04dd2f
C
203 })
204 })
205
206 it('Should fail with a long name', async function () {
08c1efbe 207 const fields = immutableAssign(baseCorrectParams, { displayName: 'super'.repeat(25) })
48dce1c9 208 await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields })
5f04dd2f
C
209 })
210
211 it('Should fail with a long description', async function () {
d23e6a1c 212 const fields = immutableAssign(baseCorrectParams, { description: 'super'.repeat(201) })
48dce1c9 213 await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields })
5f04dd2f
C
214 })
215
2422c46b 216 it('Should fail with a long support text', async function () {
d23e6a1c 217 const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(201) })
48dce1c9 218 await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields })
2422c46b
C
219 })
220
7d14d4d2
C
221 it('Should fail with a bad bulkVideosSupportUpdate field', async function () {
222 const fields = immutableAssign(baseCorrectParams, { bulkVideosSupportUpdate: 'super' })
223 await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields })
224 })
225
5f04dd2f 226 it('Should succeed with the correct parameters', async function () {
5f04dd2f
C
227 await makePutBodyRequest({
228 url: server.url,
48dce1c9 229 path,
5f04dd2f 230 token: server.accessToken,
11ba2ab3 231 fields: baseCorrectParams,
2d53be02 232 statusCodeExpected: HttpStatusCode.NO_CONTENT_204
5f04dd2f
C
233 })
234 })
235 })
236
4bbfc6c6
C
237 describe('When updating video channel avatar', function () {
238 let path: string
239
240 before(async function () {
8a19bee1 241 path = videoChannelPath + '/super_channel'
4bbfc6c6
C
242 })
243
244 it('Should fail with an incorrect input file', async function () {
245 const fields = {}
246 const attaches = {
a1587156 247 avatarfile: join(__dirname, '..', '..', 'fixtures', 'video_short.mp4')
4bbfc6c6
C
248 }
249 await makeUploadRequest({ url: server.url, path: path + '/avatar/pick', token: server.accessToken, fields, attaches })
250 })
251
252 it('Should fail with a big file', async function () {
253 const fields = {}
254 const attaches = {
a1587156 255 avatarfile: join(__dirname, '..', '..', 'fixtures', 'avatar-big.png')
4bbfc6c6
C
256 }
257 await makeUploadRequest({ url: server.url, path: path + '/avatar/pick', token: server.accessToken, fields, attaches })
258 })
259
260 it('Should fail with an unauthenticated user', async function () {
261 const fields = {}
262 const attaches = {
a1587156 263 avatarfile: join(__dirname, '..', '..', 'fixtures', 'avatar.png')
4bbfc6c6
C
264 }
265 await makeUploadRequest({
266 url: server.url,
267 path: path + '/avatar/pick',
268 fields,
269 attaches,
2d53be02 270 statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401
4bbfc6c6
C
271 })
272 })
273
274 it('Should succeed with the correct params', async function () {
275 const fields = {}
276 const attaches = {
a1587156 277 avatarfile: join(__dirname, '..', '..', 'fixtures', 'avatar.png')
4bbfc6c6
C
278 }
279 await makeUploadRequest({
280 url: server.url,
281 path: path + '/avatar/pick',
282 token: server.accessToken,
283 fields,
284 attaches,
2d53be02 285 statusCodeExpected: HttpStatusCode.OK_200
4bbfc6c6
C
286 })
287 })
288 })
289
5f04dd2f 290 describe('When getting a video channel', function () {
5f04dd2f 291 it('Should return the list of the video channels with nothing', async function () {
11ba2ab3
C
292 const res = await makeGetRequest({
293 url: server.url,
cc918ac3 294 path: videoChannelPath,
2d53be02 295 statusCodeExpected: HttpStatusCode.OK_200
11ba2ab3 296 })
5f04dd2f
C
297
298 expect(res.body.data).to.be.an('array')
299 })
300
5f04dd2f 301 it('Should return 404 with an incorrect video channel', async function () {
11ba2ab3
C
302 await makeGetRequest({
303 url: server.url,
8a19bee1 304 path: videoChannelPath + '/super_channel2',
2d53be02 305 statusCodeExpected: HttpStatusCode.NOT_FOUND_404
11ba2ab3 306 })
5f04dd2f
C
307 })
308
309 it('Should succeed with the correct parameters', async function () {
11ba2ab3
C
310 await makeGetRequest({
311 url: server.url,
8a19bee1 312 path: videoChannelPath + '/super_channel',
2d53be02 313 statusCodeExpected: HttpStatusCode.OK_200
11ba2ab3 314 })
5f04dd2f
C
315 })
316 })
317
318 describe('When deleting a video channel', function () {
5f04dd2f 319 it('Should fail with a non authenticated user', async function () {
2d53be02 320 await deleteVideoChannel(server.url, 'coucou', 'super_channel', HttpStatusCode.UNAUTHORIZED_401)
5f04dd2f
C
321 })
322
323 it('Should fail with another authenticated user', async function () {
2d53be02 324 await deleteVideoChannel(server.url, accessTokenUser, 'super_channel', HttpStatusCode.FORBIDDEN_403)
5f04dd2f
C
325 })
326
48dce1c9 327 it('Should fail with an unknown video channel id', async function () {
2d53be02 328 await deleteVideoChannel(server.url, server.accessToken, 'super_channel2', HttpStatusCode.NOT_FOUND_404)
5f04dd2f
C
329 })
330
331 it('Should succeed with the correct parameters', async function () {
8a19bee1 332 await deleteVideoChannel(server.url, server.accessToken, 'super_channel')
5f04dd2f
C
333 })
334
335 it('Should fail to delete the last user video channel', async function () {
2d53be02 336 await deleteVideoChannel(server.url, server.accessToken, 'root_channel', HttpStatusCode.CONFLICT_409)
5f04dd2f
C
337 })
338 })
339
7c3b7976
C
340 after(async function () {
341 await cleanupTests([ server ])
5f04dd2f
C
342 })
343})