31 lines
894 B
TypeScript
31 lines
894 B
TypeScript
import * as request from 'supertest'
|
|
|
|
function reportVideoAbuse (url: string, token: string, videoId: number | string, reason: string, specialStatus = 204) {
|
|
const path = '/api/v1/videos/' + videoId + '/abuse'
|
|
|
|
return request(url)
|
|
.post(path)
|
|
.set('Accept', 'application/json')
|
|
.set('Authorization', 'Bearer ' + token)
|
|
.send({ reason })
|
|
.expect(specialStatus)
|
|
}
|
|
|
|
function getVideoAbusesList (url: string, token: string) {
|
|
const path = '/api/v1/videos/abuse'
|
|
|
|
return request(url)
|
|
.get(path)
|
|
.query({ sort: 'createdAt' })
|
|
.set('Accept', 'application/json')
|
|
.set('Authorization', 'Bearer ' + token)
|
|
.expect(200)
|
|
.expect('Content-Type', /json/)
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
reportVideoAbuse,
|
|
getVideoAbusesList
|
|
}
|