]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/utils/follows.ts
Fix public video we set to public or unlisted
[github/Chocobozzz/PeerTube.git] / server / tests / utils / follows.ts
CommitLineData
4610bc5b 1import * as request from 'supertest'
4610bc5b 2import { wait } from './miscs'
afffe988 3import { ServerInfo } from './servers'
4610bc5b
C
4
5function getFollowersListPaginationAndSort (url: string, start: number, count: number, sort: string) {
afffe988 6 const path = '/api/v1/server/followers'
4610bc5b
C
7
8 return request(url)
9 .get(path)
10 .query({ start })
11 .query({ count })
12 .query({ sort })
13 .set('Accept', 'application/json')
14 .expect(200)
15 .expect('Content-Type', /json/)
16}
17
18function getFollowingListPaginationAndSort (url: string, start: number, count: number, sort: string) {
afffe988 19 const path = '/api/v1/server/following'
4610bc5b
C
20
21 return request(url)
22 .get(path)
23 .query({ start })
24 .query({ count })
25 .query({ sort })
26 .set('Accept', 'application/json')
27 .expect(200)
28 .expect('Content-Type', /json/)
29}
30
31async function follow (follower: string, following: string[], accessToken: string, expectedStatus = 204) {
9a27cdc2 32 const path = '/api/v1/server/following'
4610bc5b 33
afffe988 34 const followingHosts = following.map(f => f.replace(/^http:\/\//, ''))
4610bc5b
C
35 const res = await request(follower)
36 .post(path)
37 .set('Accept', 'application/json')
38 .set('Authorization', 'Bearer ' + accessToken)
afffe988 39 .send({ 'hosts': followingHosts })
4610bc5b
C
40 .expect(expectedStatus)
41
4610bc5b
C
42 return res
43}
44
afffe988
C
45async function doubleFollow (server1: ServerInfo, server2: ServerInfo) {
46 await Promise.all([
47 follow(server1.url, [ server2.url ], server1.accessToken),
48 follow(server2.url, [ server1.url ], server2.accessToken)
49 ])
50
572f8d3d
C
51 // Wait request propagation
52 await wait(20000)
53
afffe988
C
54 return true
55}
56
4610bc5b
C
57// ---------------------------------------------------------------------------
58
59export {
60 getFollowersListPaginationAndSort,
61 getFollowingListPaginationAndSort,
afffe988
C
62 follow,
63 doubleFollow
4610bc5b 64}