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

65 lines
1.7 KiB
TypeScript
Raw Normal View History

2017-11-16 16:16:42 +00:00
import * as request from 'supertest'
import { wait } from './miscs'
2017-11-17 10:35:10 +00:00
import { ServerInfo } from './servers'
2017-11-16 16:16:42 +00:00
function getFollowersListPaginationAndSort (url: string, start: number, count: number, sort: 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 })
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
function getFollowingListPaginationAndSort (url: string, start: number, count: number, sort: 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 })
.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-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 wait(20000)
2017-11-17 10:35:10 +00:00
return true
}
2017-11-16 16:16:42 +00:00
// ---------------------------------------------------------------------------
export {
getFollowersListPaginationAndSort,
getFollowingListPaginationAndSort,
2017-11-17 10:35:10 +00:00
follow,
doubleFollow
2017-11-16 16:16:42 +00:00
}