diff options
Diffstat (limited to 'server/tests/utils/videos/video-abuses.ts')
-rw-r--r-- | server/tests/utils/videos/video-abuses.ts | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/server/tests/utils/videos/video-abuses.ts b/server/tests/utils/videos/video-abuses.ts new file mode 100644 index 000000000..f00809234 --- /dev/null +++ b/server/tests/utils/videos/video-abuses.ts | |||
@@ -0,0 +1,31 @@ | |||
1 | import * as request from 'supertest' | ||
2 | |||
3 | function reportVideoAbuse (url: string, token: string, videoId: number, 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 | } | ||