1
0
Fork 0
peertube/shared/utils/server/follows.ts

80 lines
2.1 KiB
TypeScript
Raw Normal View History

2017-11-16 16:16:42 +00:00
import * as request from 'supertest'
2017-11-17 10:35:10 +00:00
import { ServerInfo } from './servers'
import { waitJobs } from './jobs'
2017-11-16 16:16:42 +00:00
function getFollowersListPaginationAndSort (url: string, start: number, count: number, sort: string, search?: string) {
2017-11-17 10:35:10 +00:00
const path = '/api/v1/server/followers'
2017-11-16 16:16:42 +00:00
return request(url)
.get(path)
.query({ start })
.query({ count })
.query({ sort })
.query({ search })
2017-11-16 16:16:42 +00:00
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
function getFollowingListPaginationAndSort (url: string, start: number, count: number, sort: string, search?: string) {
2017-11-17 10:35:10 +00:00
const path = '/api/v1/server/following'
2017-11-16 16:16:42 +00:00
return request(url)
.get(path)
.query({ start })
.query({ count })
.query({ sort })
.query({ search })
2017-11-16 16:16:42 +00:00
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
async function follow (follower: string, following: string[], accessToken: string, expectedStatus = 204) {
2017-11-17 14:20:42 +00:00
const path = '/api/v1/server/following'
2017-11-16 16:16:42 +00:00
2017-11-17 10:35:10 +00:00
const followingHosts = following.map(f => f.replace(/^http:\/\//, ''))
2017-11-16 16:16:42 +00:00
const res = await request(follower)
.post(path)
.set('Accept', 'application/json')
.set('Authorization', 'Bearer ' + accessToken)
2017-11-17 10:35:10 +00:00
.send({ 'hosts': followingHosts })
2017-11-16 16:16:42 +00:00
.expect(expectedStatus)
return res
}
2017-12-14 16:38:41 +00:00
async function unfollow (url: string, accessToken: string, target: ServerInfo, expectedStatus = 204) {
const path = '/api/v1/server/following/' + target.host
2017-11-21 12:43:29 +00:00
const res = await request(url)
.delete(path)
.set('Accept', 'application/json')
.set('Authorization', 'Bearer ' + accessToken)
.expect(expectedStatus)
return res
}
2017-11-17 10:35:10 +00:00
async function doubleFollow (server1: ServerInfo, server2: ServerInfo) {
await Promise.all([
follow(server1.url, [ server2.url ], server1.accessToken),
follow(server2.url, [ server1.url ], server2.accessToken)
])
// Wait request propagation
await waitJobs([ server1, server2 ])
2017-11-17 10:35:10 +00:00
return true
}
2017-11-16 16:16:42 +00:00
// ---------------------------------------------------------------------------
export {
getFollowersListPaginationAndSort,
getFollowingListPaginationAndSort,
2017-11-21 12:43:29 +00:00
unfollow,
2017-11-17 10:35:10 +00:00
follow,
doubleFollow
2017-11-16 16:16:42 +00:00
}