]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/check-params/video-imports.ts
Try to fix docker build
[github/Chocobozzz/PeerTube.git] / server / tests / api / check-params / video-imports.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
5d08a6a7 2
5d08a6a7 3import 'mocha'
b488ba1e 4import { omit } from 'lodash'
c55e3d72
C
5import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination, FIXTURE_URLS } from '@server/tests/shared'
6import { buildAbsoluteFixturePath } from '@shared/core-utils'
7import { HttpStatusCode, VideoPrivacy } from '@shared/models'
5d08a6a7 8import {
7c3b7976 9 cleanupTests,
254d3579 10 createSingleServer,
5d08a6a7
C
11 makeGetRequest,
12 makePostBodyRequest,
13 makeUploadRequest,
254d3579 14 PeerTubeServer,
41d1d075 15 setAccessTokensToServers
bf54587a 16} from '@shared/server-commands'
5d08a6a7
C
17
18describe('Test video imports API validator', function () {
19 const path = '/api/v1/videos/imports'
254d3579 20 let server: PeerTubeServer
5d08a6a7 21 let userAccessToken = ''
5d08a6a7 22 let channelId: number
5d08a6a7
C
23
24 // ---------------------------------------------------------------
25
26 before(async function () {
27 this.timeout(30000)
28
254d3579 29 server = await createSingleServer(1)
5d08a6a7
C
30
31 await setAccessTokensToServers([ server ])
32
33 const username = 'user1'
34 const password = 'my super password'
89d241a7
C
35 await server.users.create({ username: username, password: password })
36 userAccessToken = await server.login.getAccessToken({ username, password })
5d08a6a7
C
37
38 {
89d241a7 39 const { videoChannels } = await server.users.getMyInfo()
7926c5f9 40 channelId = videoChannels[0].id
5d08a6a7
C
41 }
42 })
43
44 describe('When listing my video imports', function () {
45 const myPath = '/api/v1/users/me/videos/imports'
46
47 it('Should fail with a bad start pagination', async function () {
48 await checkBadStartPagination(server.url, myPath, server.accessToken)
49 })
50
51 it('Should fail with a bad count pagination', async function () {
52 await checkBadCountPagination(server.url, myPath, server.accessToken)
53 })
54
55 it('Should fail with an incorrect sort', async function () {
56 await checkBadSortPagination(server.url, myPath, server.accessToken)
57 })
58
59 it('Should success with the correct parameters', async function () {
c0e8b12e 60 await makeGetRequest({ url: server.url, path: myPath, expectedStatus: HttpStatusCode.OK_200, token: server.accessToken })
5d08a6a7
C
61 })
62 })
63
64 describe('When adding a video import', function () {
65 let baseCorrectParams
66
67 before(function () {
68 baseCorrectParams = {
59bbcced 69 targetUrl: FIXTURE_URLS.goodVideo,
5d08a6a7
C
70 name: 'my super name',
71 category: 5,
72 licence: 1,
73 language: 'pt',
74 nsfw: false,
75 commentsEnabled: true,
7f2cfe3a 76 downloadEnabled: true,
5d08a6a7
C
77 waitTranscoding: true,
78 description: 'my super description',
79 support: 'my super support text',
80 tags: [ 'tag1', 'tag2' ],
81 privacy: VideoPrivacy.PUBLIC,
c8861d5d 82 channelId
5d08a6a7
C
83 }
84 })
85
86 it('Should fail with nothing', async function () {
87 const fields = {}
88 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
89 })
90
590fb506
C
91 it('Should fail without a target url', async function () {
92 const fields = omit(baseCorrectParams, 'targetUrl')
2d53be02
RK
93 await makePostBodyRequest({
94 url: server.url,
95 path,
96 token: server.accessToken,
97 fields,
c0e8b12e 98 expectedStatus: HttpStatusCode.BAD_REQUEST_400
2d53be02 99 })
590fb506
C
100 })
101
102 it('Should fail with a bad target url', async function () {
6c5065a0 103 const fields = { ...baseCorrectParams, targetUrl: 'htt://hello' }
590fb506
C
104
105 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
106 })
107
5d08a6a7 108 it('Should fail with a long name', async function () {
6c5065a0 109 const fields = { ...baseCorrectParams, name: 'super'.repeat(65) }
5d08a6a7
C
110
111 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
112 })
113
114 it('Should fail with a bad category', async function () {
6c5065a0 115 const fields = { ...baseCorrectParams, category: 125 }
5d08a6a7
C
116
117 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
118 })
119
120 it('Should fail with a bad licence', async function () {
6c5065a0 121 const fields = { ...baseCorrectParams, licence: 125 }
5d08a6a7
C
122
123 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
124 })
125
126 it('Should fail with a bad language', async function () {
6c5065a0 127 const fields = { ...baseCorrectParams, language: 'a'.repeat(15) }
5d08a6a7
C
128
129 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
130 })
131
132 it('Should fail with a long description', async function () {
6c5065a0 133 const fields = { ...baseCorrectParams, description: 'super'.repeat(2500) }
5d08a6a7
C
134
135 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
136 })
137
138 it('Should fail with a long support text', async function () {
6c5065a0 139 const fields = { ...baseCorrectParams, support: 'super'.repeat(201) }
5d08a6a7
C
140
141 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
142 })
143
144 it('Should fail without a channel', async function () {
145 const fields = omit(baseCorrectParams, 'channelId')
146
147 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
148 })
149
150 it('Should fail with a bad channel', async function () {
6c5065a0 151 const fields = { ...baseCorrectParams, channelId: 545454 }
5d08a6a7
C
152
153 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
154 })
155
156 it('Should fail with another user channel', async function () {
157 const user = {
158 username: 'fake',
159 password: 'fake_password'
160 }
89d241a7 161 await server.users.create({ username: user.username, password: user.password })
5d08a6a7 162
89d241a7
C
163 const accessTokenUser = await server.login.getAccessToken(user)
164 const { videoChannels } = await server.users.getMyInfo({ token: accessTokenUser })
7926c5f9 165 const customChannelId = videoChannels[0].id
5d08a6a7 166
6c5065a0 167 const fields = { ...baseCorrectParams, channelId: customChannelId }
5d08a6a7
C
168
169 await makePostBodyRequest({ url: server.url, path, token: userAccessToken, fields })
170 })
171
172 it('Should fail with too many tags', async function () {
6c5065a0 173 const fields = { ...baseCorrectParams, tags: [ 'tag1', 'tag2', 'tag3', 'tag4', 'tag5', 'tag6' ] }
5d08a6a7
C
174
175 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
176 })
177
178 it('Should fail with a tag length too low', async function () {
6c5065a0 179 const fields = { ...baseCorrectParams, tags: [ 'tag1', 't' ] }
5d08a6a7
C
180
181 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
182 })
183
184 it('Should fail with a tag length too big', async function () {
6c5065a0 185 const fields = { ...baseCorrectParams, tags: [ 'tag1', 'my_super_tag_too_long_long_long_long_long_long' ] }
5d08a6a7
C
186
187 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
188 })
189
190 it('Should fail with an incorrect thumbnail file', async function () {
191 const fields = baseCorrectParams
192 const attaches = {
3d470a53 193 thumbnailfile: buildAbsoluteFixturePath('video_short.mp4')
5d08a6a7
C
194 }
195
196 await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
197 })
198
199 it('Should fail with a big thumbnail file', async function () {
200 const fields = baseCorrectParams
201 const attaches = {
3d470a53 202 thumbnailfile: buildAbsoluteFixturePath('preview-big.png')
5d08a6a7
C
203 }
204
205 await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
206 })
207
208 it('Should fail with an incorrect preview file', async function () {
209 const fields = baseCorrectParams
210 const attaches = {
3d470a53 211 previewfile: buildAbsoluteFixturePath('video_short.mp4')
5d08a6a7
C
212 }
213
214 await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
215 })
216
217 it('Should fail with a big preview file', async function () {
218 const fields = baseCorrectParams
219 const attaches = {
3d470a53 220 previewfile: buildAbsoluteFixturePath('preview-big.png')
5d08a6a7
C
221 }
222
223 await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
224 })
225
187501f8
C
226 it('Should fail with an invalid torrent file', async function () {
227 const fields = omit(baseCorrectParams, 'targetUrl')
228 const attaches = {
3d470a53 229 torrentfile: buildAbsoluteFixturePath('avatar-big.png')
187501f8
C
230 }
231
232 await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
233 })
234
235 it('Should fail with an invalid magnet URI', async function () {
236 let fields = omit(baseCorrectParams, 'targetUrl')
6c5065a0 237 fields = { ...fields, magnetUri: 'blabla' }
187501f8
C
238
239 await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
240 })
241
5d08a6a7 242 it('Should succeed with the correct parameters', async function () {
13b6dc1f 243 this.timeout(30000)
5d08a6a7 244
b488ba1e
C
245 await makePostBodyRequest({
246 url: server.url,
247 path,
248 token: server.accessToken,
249 fields: baseCorrectParams,
c0e8b12e 250 expectedStatus: HttpStatusCode.OK_200
b488ba1e 251 })
5d08a6a7
C
252 })
253
187501f8 254 it('Should forbid to import http videos', async function () {
89d241a7 255 await server.config.updateCustomSubConfig({
65e6e260
C
256 newConfig: {
257 import: {
258 videos: {
259 http: {
260 enabled: false
261 },
262 torrent: {
263 enabled: true
264 }
590fb506
C
265 }
266 }
267 }
268 })
269
270 await makePostBodyRequest({
271 url: server.url,
272 path,
273 token: server.accessToken,
274 fields: baseCorrectParams,
c0e8b12e 275 expectedStatus: HttpStatusCode.CONFLICT_409
590fb506
C
276 })
277 })
187501f8
C
278
279 it('Should forbid to import torrent videos', async function () {
89d241a7 280 await server.config.updateCustomSubConfig({
65e6e260
C
281 newConfig: {
282 import: {
283 videos: {
284 http: {
285 enabled: true
286 },
287 torrent: {
288 enabled: false
289 }
187501f8
C
290 }
291 }
292 }
293 })
294
295 let fields = omit(baseCorrectParams, 'targetUrl')
59bbcced 296 fields = { ...fields, magnetUri: FIXTURE_URLS.magnet }
187501f8 297
2d53be02
RK
298 await makePostBodyRequest({
299 url: server.url,
300 path,
301 token: server.accessToken,
302 fields,
c0e8b12e 303 expectedStatus: HttpStatusCode.CONFLICT_409
2d53be02 304 })
187501f8
C
305
306 fields = omit(fields, 'magnetUri')
307 const attaches = {
3d470a53 308 torrentfile: buildAbsoluteFixturePath('video-720p.torrent')
187501f8
C
309 }
310
2d53be02
RK
311 await makeUploadRequest({
312 url: server.url,
313 path,
314 token: server.accessToken,
315 fields,
316 attaches,
c0e8b12e 317 expectedStatus: HttpStatusCode.CONFLICT_409
2d53be02 318 })
187501f8 319 })
5d08a6a7
C
320 })
321
7c3b7976
C
322 after(async function () {
323 await cleanupTests([ server ])
5d08a6a7
C
324 })
325})