From 2d53be0267acc49cda46707b885096193a1f4e9c Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Mon, 7 Dec 2020 14:32:36 +0100 Subject: replace numbers with typed http status codes (#3409) --- .../extra-utils/videos/video-change-ownership.ts | 26 ++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) (limited to 'shared/extra-utils/videos/video-change-ownership.ts') diff --git a/shared/extra-utils/videos/video-change-ownership.ts b/shared/extra-utils/videos/video-change-ownership.ts index 371d02000..ef82a7636 100644 --- a/shared/extra-utils/videos/video-change-ownership.ts +++ b/shared/extra-utils/videos/video-change-ownership.ts @@ -1,6 +1,13 @@ import * as request from 'supertest' +import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes' -function changeVideoOwnership (url: string, token: string, videoId: number | string, username, expectedStatus = 204) { +function changeVideoOwnership ( + url: string, + token: string, + videoId: number | string, + username, + expectedStatus = HttpStatusCode.NO_CONTENT_204 +) { const path = '/api/v1/videos/' + videoId + '/give-ownership' return request(url) @@ -19,11 +26,17 @@ function getVideoChangeOwnershipList (url: string, token: string) { .query({ sort: '-createdAt' }) .set('Accept', 'application/json') .set('Authorization', 'Bearer ' + token) - .expect(200) + .expect(HttpStatusCode.OK_200) .expect('Content-Type', /json/) } -function acceptChangeOwnership (url: string, token: string, ownershipId: string, channelId: number, expectedStatus = 204) { +function acceptChangeOwnership ( + url: string, + token: string, + ownershipId: string, + channelId: number, + expectedStatus = HttpStatusCode.NO_CONTENT_204 +) { const path = '/api/v1/videos/ownership/' + ownershipId + '/accept' return request(url) @@ -34,7 +47,12 @@ function acceptChangeOwnership (url: string, token: string, ownershipId: string, .expect(expectedStatus) } -function refuseChangeOwnership (url: string, token: string, ownershipId: string, expectedStatus = 204) { +function refuseChangeOwnership ( + url: string, + token: string, + ownershipId: string, + expectedStatus = HttpStatusCode.NO_CONTENT_204 +) { const path = '/api/v1/videos/ownership/' + ownershipId + '/refuse' return request(url) -- cgit v1.2.3