X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fextra-utils%2Fvideos%2Fvideo-change-ownership.ts;h=ef82a763635e1307540bd86a78a23228c950e707;hb=e3d15a6a9aed97a004d9dac1b7a6499d794e080a;hp=371d0200039977a5b0bfc7120ad7d604a7e5f914;hpb=97567dd81f508dd6295ac4d73d849aa2ce0a6549;p=github%2FChocobozzz%2FPeerTube.git 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)