66 lines
2.1 KiB
TypeScript
66 lines
2.1 KiB
TypeScript
import * as request from 'supertest'
|
|
|
|
function addVideoToBlacklist (url: string, token: string, videoId: number | string, reason?: string, specialStatus = 204) {
|
|
const path = '/api/v1/videos/' + videoId + '/blacklist'
|
|
|
|
return request(url)
|
|
.post(path)
|
|
.send({ reason })
|
|
.set('Accept', 'application/json')
|
|
.set('Authorization', 'Bearer ' + token)
|
|
.expect(specialStatus)
|
|
}
|
|
|
|
function updateVideoBlacklist (url: string, token: string, videoId: number, reason?: string, specialStatus = 204) {
|
|
const path = '/api/v1/videos/' + videoId + '/blacklist'
|
|
|
|
return request(url)
|
|
.put(path)
|
|
.send({ reason })
|
|
.set('Accept', 'application/json')
|
|
.set('Authorization', 'Bearer ' + token)
|
|
.expect(specialStatus)}
|
|
|
|
function removeVideoFromBlacklist (url: string, token: string, videoId: number | string, specialStatus = 204) {
|
|
const path = '/api/v1/videos/' + videoId + '/blacklist'
|
|
|
|
return request(url)
|
|
.delete(path)
|
|
.set('Accept', 'application/json')
|
|
.set('Authorization', 'Bearer ' + token)
|
|
.expect(specialStatus)
|
|
}
|
|
|
|
function getBlacklistedVideosList (url: string, token: string, specialStatus = 200) {
|
|
const path = '/api/v1/videos/blacklist/'
|
|
|
|
return request(url)
|
|
.get(path)
|
|
.query({ sort: 'createdAt' })
|
|
.set('Accept', 'application/json')
|
|
.set('Authorization', 'Bearer ' + token)
|
|
.expect(specialStatus)
|
|
.expect('Content-Type', /json/)
|
|
}
|
|
|
|
function getSortedBlacklistedVideosList (url: string, token: string, sort: string, specialStatus = 200) {
|
|
const path = '/api/v1/videos/blacklist/'
|
|
|
|
return request(url)
|
|
.get(path)
|
|
.query({ sort: sort })
|
|
.set('Accept', 'application/json')
|
|
.set('Authorization', 'Bearer ' + token)
|
|
.expect(specialStatus)
|
|
.expect('Content-Type', /json/)
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
addVideoToBlacklist,
|
|
removeVideoFromBlacklist,
|
|
getBlacklistedVideosList,
|
|
getSortedBlacklistedVideosList,
|
|
updateVideoBlacklist
|
|
}
|