diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-16 10:42:24 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-20 15:27:18 +0200 |
commit | c0e8b12e7fd554ba4d2ceb0c4900804c6a4c63ea (patch) | |
tree | baf29753ac5d4598643e3bee719f8df0cc36c59d /server/tests/api/check-params/config.ts | |
parent | 08642a765ea514a00f159db898edf14c376fbe6c (diff) | |
download | PeerTube-c0e8b12e7fd554ba4d2ceb0c4900804c6a4c63ea.tar.gz PeerTube-c0e8b12e7fd554ba4d2ceb0c4900804c6a4c63ea.tar.zst PeerTube-c0e8b12e7fd554ba4d2ceb0c4900804c6a4c63ea.zip |
Refactor requests
Diffstat (limited to 'server/tests/api/check-params/config.ts')
-rw-r--r-- | server/tests/api/check-params/config.ts | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/server/tests/api/check-params/config.ts b/server/tests/api/check-params/config.ts index 1756d58ee..c3438917e 100644 --- a/server/tests/api/check-params/config.ts +++ b/server/tests/api/check-params/config.ts | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | import 'mocha' | 3 | import 'mocha' |
4 | import { omit } from 'lodash' | 4 | import { omit } from 'lodash' |
5 | import { HttpStatusCode } from '@shared/core-utils' | 5 | import { HttpStatusCode } from '@shared/models' |
6 | import { | 6 | import { |
7 | cleanupTests, | 7 | cleanupTests, |
8 | createSingleServer, | 8 | createSingleServer, |
@@ -214,7 +214,7 @@ describe('Test config API validators', function () { | |||
214 | await makeGetRequest({ | 214 | await makeGetRequest({ |
215 | url: server.url, | 215 | url: server.url, |
216 | path, | 216 | path, |
217 | statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401 | 217 | expectedStatus: HttpStatusCode.UNAUTHORIZED_401 |
218 | }) | 218 | }) |
219 | }) | 219 | }) |
220 | 220 | ||
@@ -223,7 +223,7 @@ describe('Test config API validators', function () { | |||
223 | url: server.url, | 223 | url: server.url, |
224 | path, | 224 | path, |
225 | token: userAccessToken, | 225 | token: userAccessToken, |
226 | statusCodeExpected: HttpStatusCode.FORBIDDEN_403 | 226 | expectedStatus: HttpStatusCode.FORBIDDEN_403 |
227 | }) | 227 | }) |
228 | }) | 228 | }) |
229 | }) | 229 | }) |
@@ -234,7 +234,7 @@ describe('Test config API validators', function () { | |||
234 | url: server.url, | 234 | url: server.url, |
235 | path, | 235 | path, |
236 | fields: updateParams, | 236 | fields: updateParams, |
237 | statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401 | 237 | expectedStatus: HttpStatusCode.UNAUTHORIZED_401 |
238 | }) | 238 | }) |
239 | }) | 239 | }) |
240 | 240 | ||
@@ -244,7 +244,7 @@ describe('Test config API validators', function () { | |||
244 | path, | 244 | path, |
245 | fields: updateParams, | 245 | fields: updateParams, |
246 | token: userAccessToken, | 246 | token: userAccessToken, |
247 | statusCodeExpected: HttpStatusCode.FORBIDDEN_403 | 247 | expectedStatus: HttpStatusCode.FORBIDDEN_403 |
248 | }) | 248 | }) |
249 | }) | 249 | }) |
250 | 250 | ||
@@ -256,7 +256,7 @@ describe('Test config API validators', function () { | |||
256 | path, | 256 | path, |
257 | fields: newUpdateParams, | 257 | fields: newUpdateParams, |
258 | token: server.accessToken, | 258 | token: server.accessToken, |
259 | statusCodeExpected: HttpStatusCode.BAD_REQUEST_400 | 259 | expectedStatus: HttpStatusCode.BAD_REQUEST_400 |
260 | }) | 260 | }) |
261 | }) | 261 | }) |
262 | 262 | ||
@@ -274,7 +274,7 @@ describe('Test config API validators', function () { | |||
274 | path, | 274 | path, |
275 | fields: newUpdateParams, | 275 | fields: newUpdateParams, |
276 | token: server.accessToken, | 276 | token: server.accessToken, |
277 | statusCodeExpected: HttpStatusCode.BAD_REQUEST_400 | 277 | expectedStatus: HttpStatusCode.BAD_REQUEST_400 |
278 | }) | 278 | }) |
279 | }) | 279 | }) |
280 | 280 | ||
@@ -295,7 +295,7 @@ describe('Test config API validators', function () { | |||
295 | path, | 295 | path, |
296 | fields: newUpdateParams, | 296 | fields: newUpdateParams, |
297 | token: server.accessToken, | 297 | token: server.accessToken, |
298 | statusCodeExpected: HttpStatusCode.BAD_REQUEST_400 | 298 | expectedStatus: HttpStatusCode.BAD_REQUEST_400 |
299 | }) | 299 | }) |
300 | }) | 300 | }) |
301 | 301 | ||
@@ -318,7 +318,7 @@ describe('Test config API validators', function () { | |||
318 | path, | 318 | path, |
319 | fields: newUpdateParams, | 319 | fields: newUpdateParams, |
320 | token: server.accessToken, | 320 | token: server.accessToken, |
321 | statusCodeExpected: HttpStatusCode.BAD_REQUEST_400 | 321 | expectedStatus: HttpStatusCode.BAD_REQUEST_400 |
322 | }) | 322 | }) |
323 | }) | 323 | }) |
324 | 324 | ||
@@ -328,7 +328,7 @@ describe('Test config API validators', function () { | |||
328 | path, | 328 | path, |
329 | fields: updateParams, | 329 | fields: updateParams, |
330 | token: server.accessToken, | 330 | token: server.accessToken, |
331 | statusCodeExpected: HttpStatusCode.OK_200 | 331 | expectedStatus: HttpStatusCode.OK_200 |
332 | }) | 332 | }) |
333 | }) | 333 | }) |
334 | }) | 334 | }) |
@@ -338,7 +338,7 @@ describe('Test config API validators', function () { | |||
338 | await makeDeleteRequest({ | 338 | await makeDeleteRequest({ |
339 | url: server.url, | 339 | url: server.url, |
340 | path, | 340 | path, |
341 | statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401 | 341 | expectedStatus: HttpStatusCode.UNAUTHORIZED_401 |
342 | }) | 342 | }) |
343 | }) | 343 | }) |
344 | 344 | ||
@@ -347,7 +347,7 @@ describe('Test config API validators', function () { | |||
347 | url: server.url, | 347 | url: server.url, |
348 | path, | 348 | path, |
349 | token: userAccessToken, | 349 | token: userAccessToken, |
350 | statusCodeExpected: HttpStatusCode.FORBIDDEN_403 | 350 | expectedStatus: HttpStatusCode.FORBIDDEN_403 |
351 | }) | 351 | }) |
352 | }) | 352 | }) |
353 | }) | 353 | }) |