1
0
Fork 0
peertube/server/tests/utils/videos/video-channels.ts

112 lines
3.0 KiB
TypeScript
Raw Normal View History

2017-10-24 17:41:30 +00:00
import * as request from 'supertest'
type VideoChannelAttributes = {
name?: string
description?: string
support?: string
2017-10-24 17:41:30 +00:00
}
function getVideoChannelsList (url: string, start: number, count: number, sort?: string) {
2018-04-24 15:05:32 +00:00
const path = '/api/v1/video-channels'
2017-10-24 17:41:30 +00:00
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/)
}
2017-12-28 15:26:28 +00:00
function getAccountVideoChannelsList (url: string, accountId: number | string, specialStatus = 200) {
2018-04-24 15:05:32 +00:00
const path = '/api/v1/accounts/' + accountId + '/video-channels'
2017-10-24 17:41:30 +00:00
return request(url)
.get(path)
.set('Accept', 'application/json')
2017-12-28 15:26:28 +00:00
.expect(specialStatus)
2017-10-24 17:41:30 +00:00
.expect('Content-Type', /json/)
}
2018-04-24 15:05:32 +00:00
function addVideoChannel (
url: string,
token: string,
2018-04-25 08:21:38 +00:00
accountId: number | string,
2018-04-24 15:05:32 +00:00
videoChannelAttributesArg: VideoChannelAttributes,
expectedStatus = 200
) {
const path = '/api/v1/accounts/' + accountId + '/video-channels/'
2017-10-24 17:41:30 +00:00
// Default attributes
let attributes = {
name: 'my super video channel',
description: 'my super channel description',
support: 'my super channel support'
2017-10-24 17:41:30 +00:00
}
attributes = Object.assign(attributes, videoChannelAttributesArg)
return request(url)
.post(path)
.send(attributes)
.set('Accept', 'application/json')
.set('Authorization', 'Bearer ' + token)
.expect(expectedStatus)
}
2018-04-24 15:05:32 +00:00
function updateVideoChannel (
url: string,
token: string,
2018-04-25 08:21:38 +00:00
accountId: number | string,
channelId: number | string,
2018-04-24 15:05:32 +00:00
attributes: VideoChannelAttributes,
expectedStatus = 204
) {
2017-10-24 17:41:30 +00:00
const body = {}
2018-04-24 15:05:32 +00:00
const path = '/api/v1/accounts/' + accountId + '/video-channels/' + channelId
2017-10-24 17:41:30 +00:00
if (attributes.name) body['name'] = attributes.name
if (attributes.description) body['description'] = attributes.description
if (attributes.support) body['support'] = attributes.support
2017-10-24 17:41:30 +00:00
return request(url)
.put(path)
.send(body)
.set('Accept', 'application/json')
.set('Authorization', 'Bearer ' + token)
.expect(expectedStatus)
}
2018-04-25 08:21:38 +00:00
function deleteVideoChannel (url: string, token: string, accountId: number | string, channelId: number | string, expectedStatus = 204) {
2018-04-24 15:05:32 +00:00
const path = '/api/v1/accounts/' + accountId + '/video-channels/' + channelId
2017-10-24 17:41:30 +00:00
return request(url)
2018-04-24 15:05:32 +00:00
.delete(path)
2017-10-24 17:41:30 +00:00
.set('Accept', 'application/json')
.set('Authorization', 'Bearer ' + token)
.expect(expectedStatus)
}
2018-04-25 08:21:38 +00:00
function getVideoChannel (url: string, accountId: number | string, channelId: number | string) {
2018-04-24 15:05:32 +00:00
const path = '/api/v1/accounts/' + accountId + '/video-channels/' + channelId
2017-10-24 17:41:30 +00:00
return request(url)
.get(path)
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
// ---------------------------------------------------------------------------
export {
getVideoChannelsList,
2017-11-17 11:05:59 +00:00
getAccountVideoChannelsList,
2017-10-24 17:41:30 +00:00
addVideoChannel,
updateVideoChannel,
deleteVideoChannel,
getVideoChannel
}