]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/server/handle-down.ts
Merge branch 'release/v1.2.0'
[github/Chocobozzz/PeerTube.git] / server / tests / api / server / handle-down.ts
CommitLineData
2ccaeeb3
C
1/* tslint:disable:no-unused-expression */
2
3import * as chai from 'chai'
4import 'mocha'
cc6373e6 5import { JobState, Video } from '../../../../shared/models'
2ccaeeb3 6import { VideoPrivacy } from '../../../../shared/models/videos'
7bc29171 7import { VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model'
ae28cdf3 8
2ccaeeb3 9import {
9639bd17 10 completeVideoCheck,
94831479 11 flushAndRunMultipleServers,
a4101923 12 getVideo,
94831479 13 getVideosList,
a4101923 14 immutableAssign,
94831479 15 killallServers,
a4101923 16 reRunServer,
94831479
C
17 ServerInfo,
18 setAccessTokensToServers,
a4101923 19 unfollow,
ae28cdf3 20 updateVideo,
a4101923 21 uploadVideo,
2ccaeeb3 22 wait
9639bd17 23} from '../../../../shared/utils'
24import { follow, getFollowersListPaginationAndSort } from '../../../../shared/utils/server/follows'
25import { getJobsListPaginationAndSort, waitJobs } from '../../../../shared/utils/server/jobs'
7bc29171 26import {
94831479
C
27 addVideoCommentReply,
28 addVideoCommentThread,
29 getVideoCommentThreads,
7bc29171 30 getVideoThreadComments
9639bd17 31} from '../../../../shared/utils/videos/video-comments'
2ccaeeb3
C
32
33const expect = chai.expect
34
35describe('Test handle downs', function () {
36 let servers: ServerInfo[] = []
7bc29171
C
37 let threadIdServer1: number
38 let threadIdServer2: number
39 let commentIdServer1: number
40 let commentIdServer2: number
cc6373e6
C
41 let missedVideo1: Video
42 let missedVideo2: Video
43 let unlistedVideo: Video
2ccaeeb3
C
44
45 const videoAttributes = {
46 name: 'my super name for server 1',
47 category: 5,
48 licence: 4,
9d3ef9fe 49 language: 'ja',
2ccaeeb3 50 nsfw: true,
7bc29171 51 privacy: VideoPrivacy.PUBLIC,
2ccaeeb3 52 description: 'my super description for server 1',
2422c46b 53 support: 'my super support text for server 1',
2ccaeeb3
C
54 tags: [ 'tag1p1', 'tag2p1' ],
55 fixture: 'video_short1.webm'
56 }
57
7bc29171
C
58 const unlistedVideoAttributes = immutableAssign(videoAttributes, {
59 privacy: VideoPrivacy.UNLISTED
60 })
61
2ccaeeb3
C
62 const checkAttributes = {
63 name: 'my super name for server 1',
64 category: 5,
65 licence: 4,
9d3ef9fe 66 language: 'ja',
2ccaeeb3
C
67 nsfw: true,
68 description: 'my super description for server 1',
2422c46b 69 support: 'my super support text for server 1',
b64c950a
C
70 account: {
71 name: 'root',
72 host: 'localhost:9001'
73 },
2ccaeeb3
C
74 isLocal: false,
75 duration: 10,
76 tags: [ 'tag1p1', 'tag2p1' ],
77 privacy: VideoPrivacy.PUBLIC,
78 commentsEnabled: true,
79 channel: {
f6eebcb3
C
80 name: 'root_channel',
81 displayName: 'Main root channel',
2ccaeeb3
C
82 description: '',
83 isLocal: false
84 },
85 fixture: 'video_short1.webm',
86 files: [
87 {
88 resolution: 720,
89 size: 572456
90 }
91 ]
92 }
93
7bc29171
C
94 const unlistedCheckAttributes = immutableAssign(checkAttributes, {
95 privacy: VideoPrivacy.UNLISTED
96 })
97
2ccaeeb3 98 before(async function () {
e212f887 99 this.timeout(30000)
2ccaeeb3 100
cc6373e6 101 servers = await flushAndRunMultipleServers(3)
2ccaeeb3
C
102
103 // Get the access tokens
104 await setAccessTokensToServers(servers)
105 })
106
107 it('Should remove followers that are often down', async function () {
108 this.timeout(60000)
109
cc6373e6 110 // Server 2 and 3 follow server 1
2ccaeeb3 111 await follow(servers[1].url, [ servers[0].url ], servers[1].accessToken)
cc6373e6 112 await follow(servers[2].url, [ servers[0].url ], servers[2].accessToken)
2ccaeeb3 113
3cd0734f 114 await waitJobs(servers)
2ccaeeb3 115
cc6373e6 116 // Upload a video to server 1
2ccaeeb3
C
117 await uploadVideo(servers[0].url, servers[0].accessToken, videoAttributes)
118
3cd0734f 119 await waitJobs(servers)
2ccaeeb3 120
cc6373e6 121 // And check all servers have this video
2ccaeeb3
C
122 for (const server of servers) {
123 const res = await getVideosList(server.url)
124 expect(res.body.data).to.be.an('array')
125 expect(res.body.data).to.have.lengthOf(1)
126 }
127
cc6373e6 128 // Kill server 2
2ccaeeb3
C
129 killallServers([ servers[1] ])
130
131 // Remove server 2 follower
132 for (let i = 0; i < 10; i++) {
cc6373e6 133 await uploadVideo(servers[ 0 ].url, servers[ 0 ].accessToken, videoAttributes)
7bc29171
C
134 }
135
3cd0734f 136 await waitJobs(servers[0])
6502c3d4 137
cc6373e6
C
138 // Kill server 3
139 killallServers([ servers[2] ])
140
141 const resLastVideo1 = await uploadVideo(servers[ 0 ].url, servers[ 0 ].accessToken, videoAttributes)
142 missedVideo1 = resLastVideo1.body.video
143
144 const resLastVideo2 = await uploadVideo(servers[ 0 ].url, servers[ 0 ].accessToken, videoAttributes)
145 missedVideo2 = resLastVideo2.body.video
146
147 // Unlisted video
148 let resVideo = await uploadVideo(servers[ 0 ].url, servers[ 0 ].accessToken, unlistedVideoAttributes)
149 unlistedVideo = resVideo.body.video
6502c3d4 150
7bc29171
C
151 // Add comments to video 2
152 {
153 const text = 'thread 1'
cc6373e6 154 let resComment = await addVideoCommentThread(servers[0].url, servers[0].accessToken, missedVideo2.uuid, text)
7bc29171
C
155 let comment = resComment.body.comment
156 threadIdServer1 = comment.id
157
cc6373e6 158 resComment = await addVideoCommentReply(servers[0].url, servers[0].accessToken, missedVideo2.uuid, comment.id, 'comment 1-1')
7bc29171
C
159 comment = resComment.body.comment
160
cc6373e6 161 resComment = await addVideoCommentReply(servers[0].url, servers[0].accessToken, missedVideo2.uuid, comment.id, 'comment 1-2')
7bc29171 162 commentIdServer1 = resComment.body.comment.id
2ccaeeb3
C
163 }
164
3cd0734f
C
165 await waitJobs(servers[0])
166 // Wait scheduler
9a4a9b6c 167 await wait(11000)
2ccaeeb3 168
cc6373e6
C
169 // Only server 3 is still a follower of server 1
170 const res = await getFollowersListPaginationAndSort(servers[0].url, 0, 2, 'createdAt')
2ccaeeb3 171 expect(res.body.data).to.be.an('array')
cc6373e6
C
172 expect(res.body.data).to.have.lengthOf(1)
173 expect(res.body.data[0].follower.host).to.equal('localhost:9003')
2ccaeeb3
C
174 })
175
176 it('Should not have pending/processing jobs anymore', async function () {
94831479 177 const states: JobState[] = [ 'waiting', 'active' ]
2ccaeeb3 178
94a5ff8a
C
179 for (const state of states) {
180 const res = await getJobsListPaginationAndSort(servers[ 0 ].url, servers[ 0 ].accessToken, state,0, 50, '-createdAt')
181 expect(res.body.data).to.have.length(0)
2ccaeeb3
C
182 }
183 })
184
cc6373e6 185 it('Should re-follow server 1', async function () {
cf7a61b5 186 this.timeout(35000)
7bc29171
C
187
188 await reRunServer(servers[1])
cc6373e6
C
189 await reRunServer(servers[2])
190
191 await unfollow(servers[1].url, servers[1].accessToken, servers[0])
192 await waitJobs(servers)
2ccaeeb3
C
193
194 await follow(servers[1].url, [ servers[0].url ], servers[1].accessToken)
195
3cd0734f 196 await waitJobs(servers)
2ccaeeb3 197
cc6373e6 198 const res = await getFollowersListPaginationAndSort(servers[0].url, 0, 2, 'createdAt')
2ccaeeb3 199 expect(res.body.data).to.be.an('array')
cc6373e6 200 expect(res.body.data).to.have.lengthOf(2)
2ccaeeb3
C
201 })
202
8cf99873 203 it('Should send an update to server 3, and automatically fetch the video', async function () {
7bc29171 204 this.timeout(15000)
2ccaeeb3 205
cc6373e6
C
206 const res1 = await getVideosList(servers[2].url)
207 expect(res1.body.data).to.be.an('array')
208 expect(res1.body.data).to.have.lengthOf(11)
209
8cf99873
C
210 await updateVideo(servers[0].url, servers[0].accessToken, missedVideo1.uuid, { })
211 await updateVideo(servers[0].url, servers[0].accessToken, unlistedVideo.uuid, { })
2ccaeeb3 212
3cd0734f 213 await waitJobs(servers)
2ccaeeb3 214
cc6373e6 215 const res = await getVideosList(servers[2].url)
7bc29171 216 expect(res.body.data).to.be.an('array')
cc6373e6
C
217 // 1 video is unlisted
218 expect(res.body.data).to.have.lengthOf(12)
7bc29171 219
cc6373e6
C
220 // Check unlisted video
221 const resVideo = await getVideo(servers[2].url, unlistedVideo.uuid)
7bc29171
C
222 expect(resVideo.body).not.to.be.undefined
223
cc6373e6 224 await completeVideoCheck(servers[2].url, resVideo.body, unlistedCheckAttributes)
7bc29171
C
225 })
226
cc6373e6 227 it('Should send comments on a video to server 3, and automatically fetch the video', async function () {
7bc29171 228 this.timeout(25000)
2ccaeeb3 229
cc6373e6 230 await addVideoCommentReply(servers[0].url, servers[0].accessToken, missedVideo2.uuid, commentIdServer1, 'comment 1-3')
7bc29171 231
3cd0734f 232 await waitJobs(servers)
7bc29171 233
cc6373e6 234 const resVideo = await getVideo(servers[2].url, missedVideo2.uuid)
7bc29171
C
235 expect(resVideo.body).not.to.be.undefined
236
7bc29171 237 {
cc6373e6 238 let resComment = await getVideoCommentThreads(servers[2].url, missedVideo2.uuid, 0, 5)
7bc29171
C
239 expect(resComment.body.data).to.be.an('array')
240 expect(resComment.body.data).to.have.lengthOf(1)
241
242 threadIdServer2 = resComment.body.data[0].id
243
cc6373e6 244 resComment = await getVideoThreadComments(servers[2].url, missedVideo2.uuid, threadIdServer2)
7bc29171
C
245
246 const tree: VideoCommentThreadTree = resComment.body
247 expect(tree.comment.text).equal('thread 1')
248 expect(tree.children).to.have.lengthOf(1)
249
250 const firstChild = tree.children[0]
251 expect(firstChild.comment.text).to.equal('comment 1-1')
252 expect(firstChild.children).to.have.lengthOf(1)
253
254 const childOfFirstChild = firstChild.children[0]
255 expect(childOfFirstChild.comment.text).to.equal('comment 1-2')
256 expect(childOfFirstChild.children).to.have.lengthOf(1)
257
258 const childOfChildFirstChild = childOfFirstChild.children[0]
259 expect(childOfChildFirstChild.comment.text).to.equal('comment 1-3')
260 expect(childOfChildFirstChild.children).to.have.lengthOf(0)
261
262 commentIdServer2 = childOfChildFirstChild.comment.id
263 }
264 })
265
266 it('Should correctly reply to the comment', async function () {
267 this.timeout(15000)
268
cc6373e6 269 await addVideoCommentReply(servers[2].url, servers[2].accessToken, missedVideo2.uuid, commentIdServer2, 'comment 1-4')
7bc29171 270
3cd0734f 271 await waitJobs(servers)
7bc29171
C
272
273 {
cc6373e6 274 const resComment = await getVideoThreadComments(servers[0].url, missedVideo2.uuid, threadIdServer1)
7bc29171
C
275
276 const tree: VideoCommentThreadTree = resComment.body
277 expect(tree.comment.text).equal('thread 1')
278 expect(tree.children).to.have.lengthOf(1)
279
280 const firstChild = tree.children[0]
281 expect(firstChild.comment.text).to.equal('comment 1-1')
282 expect(firstChild.children).to.have.lengthOf(1)
283
284 const childOfFirstChild = firstChild.children[0]
285 expect(childOfFirstChild.comment.text).to.equal('comment 1-2')
286 expect(childOfFirstChild.children).to.have.lengthOf(1)
287
288 const childOfChildFirstChild = childOfFirstChild.children[0]
289 expect(childOfChildFirstChild.comment.text).to.equal('comment 1-3')
290 expect(childOfChildFirstChild.children).to.have.lengthOf(1)
291
292 const childOfChildOfChildOfFirstChild = childOfChildFirstChild.children[0]
293 expect(childOfChildOfChildOfFirstChild.comment.text).to.equal('comment 1-4')
294 expect(childOfChildOfChildOfFirstChild.children).to.have.lengthOf(0)
295 }
2ccaeeb3
C
296 })
297
298 after(async function () {
299 killallServers(servers)
2ccaeeb3
C
300 })
301})