]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/utils/videos/video-abuses.ts
BEARKING CHANGE: Update videos API response
[github/Chocobozzz/PeerTube.git] / server / tests / utils / videos / video-abuses.ts
1 import * as request from 'supertest'
2
3 function reportVideoAbuse (url: string, token: string, videoId: number | string, reason: string, specialStatus = 204) {
4 const path = '/api/v1/videos/' + videoId + '/abuse'
5
6 return request(url)
7 .post(path)
8 .set('Accept', 'application/json')
9 .set('Authorization', 'Bearer ' + token)
10 .send({ reason })
11 .expect(specialStatus)
12 }
13
14 function getVideoAbusesList (url: string, token: string) {
15 const path = '/api/v1/videos/abuse'
16
17 return request(url)
18 .get(path)
19 .query({ sort: 'createdAt' })
20 .set('Accept', 'application/json')
21 .set('Authorization', 'Bearer ' + token)
22 .expect(200)
23 .expect('Content-Type', /json/)
24 }
25
26 // ---------------------------------------------------------------------------
27
28 export {
29 reportVideoAbuse,
30 getVideoAbusesList
31 }