95 lines
2.6 KiB
TypeScript
95 lines
2.6 KiB
TypeScript
import * as request from 'supertest'
|
|
|
|
type VideoChannelAttributes = {
|
|
name?: string
|
|
description?: string
|
|
}
|
|
|
|
function getVideoChannelsList (url: string, start: number, count: number, sort?: string) {
|
|
const path = '/api/v1/videos/channels'
|
|
|
|
const req = request(url)
|
|
.get(path)
|
|
.query({ start: start })
|
|
.query({ count: count })
|
|
|
|
if (sort) req.query({ sort })
|
|
|
|
return req.set('Accept', 'application/json')
|
|
.expect(200)
|
|
.expect('Content-Type', /json/)
|
|
}
|
|
|
|
function getAuthorVideoChannelsList (url: string, authorId: number | string) {
|
|
const path = '/api/v1/videos/authors/' + authorId + '/channels'
|
|
|
|
return request(url)
|
|
.get(path)
|
|
.set('Accept', 'application/json')
|
|
.expect(200)
|
|
.expect('Content-Type', /json/)
|
|
}
|
|
|
|
function addVideoChannel (url: string, token: string, videoChannelAttributesArg: VideoChannelAttributes, expectedStatus = 204) {
|
|
const path = '/api/v1/videos/channels'
|
|
|
|
// Default attributes
|
|
let attributes = {
|
|
name: 'my super video channel',
|
|
description: 'my super channel description'
|
|
}
|
|
attributes = Object.assign(attributes, videoChannelAttributesArg)
|
|
|
|
return request(url)
|
|
.post(path)
|
|
.send(attributes)
|
|
.set('Accept', 'application/json')
|
|
.set('Authorization', 'Bearer ' + token)
|
|
.expect(expectedStatus)
|
|
}
|
|
|
|
function updateVideoChannel (url: string, token: string, channelId: number, attributes: VideoChannelAttributes, expectedStatus = 204) {
|
|
const body = {}
|
|
const path = '/api/v1/videos/channels/' + channelId
|
|
|
|
if (attributes.name) body['name'] = attributes.name
|
|
if (attributes.description) body['description'] = attributes.description
|
|
|
|
return request(url)
|
|
.put(path)
|
|
.send(body)
|
|
.set('Accept', 'application/json')
|
|
.set('Authorization', 'Bearer ' + token)
|
|
.expect(expectedStatus)
|
|
}
|
|
|
|
function deleteVideoChannel (url: string, token: string, channelId: number, expectedStatus = 204) {
|
|
const path = '/api/v1/videos/channels/'
|
|
|
|
return request(url)
|
|
.delete(path + channelId)
|
|
.set('Accept', 'application/json')
|
|
.set('Authorization', 'Bearer ' + token)
|
|
.expect(expectedStatus)
|
|
}
|
|
|
|
function getVideoChannel (url: string, channelId: number) {
|
|
const path = '/api/v1/videos/channels/' + channelId
|
|
|
|
return request(url)
|
|
.get(path)
|
|
.set('Accept', 'application/json')
|
|
.expect(200)
|
|
.expect('Content-Type', /json/)
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
getVideoChannelsList,
|
|
getAuthorVideoChannelsList,
|
|
addVideoChannel,
|
|
updateVideoChannel,
|
|
deleteVideoChannel,
|
|
getVideoChannel
|
|
}
|