aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/redundancy/manage-redundancy.ts
blob: b607900f881b62303da5d0517a4409c8af4ad07b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */

import * as chai from 'chai'
import {
  cleanupTests,
  createMultipleServers,
  doubleFollow,
  PeerTubeServer,
  RedundancyCommand,
  setAccessTokensToServers,
  waitJobs
} from '@shared/server-commands'
import { VideoPrivacy, VideoRedundanciesTarget } from '@shared/models'

const expect = chai.expect

describe('Test manage videos redundancy', function () {
  const targets: VideoRedundanciesTarget[] = [ 'my-videos', 'remote-videos' ]

  let servers: PeerTubeServer[]
  let video1Server2UUID: string
  let video2Server2UUID: string
  let redundanciesToRemove: number[] = []

  let commands: RedundancyCommand[]

  before(async function () {
    this.timeout(120000)

    const config = {
      transcoding: {
        hls: {
          enabled: true
        }
      },
      redundancy: {
        videos: {
          check_interval: '1 second',
          strategies: [
            {
              strategy: 'recently-added',
              min_lifetime: '1 hour',
              size: '10MB',
              min_views: 0
            }
          ]
        }
      }
    }
    servers = await createMultipleServers(3, config)

    // Get the access tokens
    await setAccessTokensToServers(servers)

    commands = servers.map(s => s.redundancy)

    {
      const { uuid } = await servers[1].videos.upload({ attributes: { name: 'video 1 server 2' } })
      video1Server2UUID = uuid
    }

    {
      const { uuid } = await servers[1].videos.upload({ attributes: { name: 'video 2 server 2' } })
      video2Server2UUID = uuid
    }

    await waitJobs(servers)

    // Server 1 and server 2 follow each other
    await doubleFollow(servers[0], servers[1])
    await doubleFollow(servers[0], servers[2])
    await commands[0].updateRedundancy({ host: servers[1].host, redundancyAllowed: true })

    await waitJobs(servers)
  })

  it('Should not have redundancies on server 3', async function () {
    for (const target of targets) {
      const body = await commands[2].listVideos({ target })

      expect(body.total).to.equal(0)
      expect(body.data).to.have.lengthOf(0)
    }
  })

  it('Should correctly list followings by redundancy', async function () {
    const body = await servers[0].follows.getFollowings({ sort: '-redundancyAllowed' })

    expect(body.total).to.equal(2)
    expect(body.data).to.have.lengthOf(2)

    expect(body.data[0].following.host).to.equal(servers[1].host)
    expect(body.data[1].following.host).to.equal(servers[2].host)
  })

  it('Should not have "remote-videos" redundancies on server 2', async function () {
    this.timeout(120000)

    await waitJobs(servers)
    await servers[0].servers.waitUntilLog('Duplicated ', 10)
    await waitJobs(servers)

    const body = await commands[1].listVideos({ target: 'remote-videos' })

    expect(body.total).to.equal(0)
    expect(body.data).to.have.lengthOf(0)
  })

  it('Should have "my-videos" redundancies on server 2', async function () {
    this.timeout(120000)

    const body = await commands[1].listVideos({ target: 'my-videos' })
    expect(body.total).to.equal(2)

    const videos = body.data
    expect(videos).to.have.lengthOf(2)

    const videos1 = videos.find(v => v.uuid === video1Server2UUID)
    const videos2 = videos.find(v => v.uuid === video2Server2UUID)

    expect(videos1.name).to.equal('video 1 server 2')
    expect(videos2.name).to.equal('video 2 server 2')

    expect(videos1.redundancies.files).to.have.lengthOf(4)
    expect(videos1.redundancies.streamingPlaylists).to.have.lengthOf(1)

    const redundancies = videos1.redundancies.files.concat(videos1.redundancies.streamingPlaylists)

    for (const r of redundancies) {
      expect(r.strategy).to.be.null
      expect(r.fileUrl).to.exist
      expect(r.createdAt).to.exist
      expect(r.updatedAt).to.exist
      expect(r.expiresOn).to.exist
    }
  })

  it('Should not have "my-videos" redundancies on server 1', async function () {
    const body = await commands[0].listVideos({ target: 'my-videos' })

    expect(body.total).to.equal(0)
    expect(body.data).to.have.lengthOf(0)
  })

  it('Should have "remote-videos" redundancies on server 1', async function () {
    this.timeout(120000)

    const body = await commands[0].listVideos({ target: 'remote-videos' })
    expect(body.total).to.equal(2)

    const videos = body.data
    expect(videos).to.have.lengthOf(2)

    const videos1 = videos.find(v => v.uuid === video1Server2UUID)
    const videos2 = videos.find(v => v.uuid === video2Server2UUID)

    expect(videos1.name).to.equal('video 1 server 2')
    expect(videos2.name).to.equal('video 2 server 2')

    expect(videos1.redundancies.files).to.have.lengthOf(4)
    expect(videos1.redundancies.streamingPlaylists).to.have.lengthOf(1)

    const redundancies = videos1.redundancies.files.concat(videos1.redundancies.streamingPlaylists)

    for (const r of redundancies) {
      expect(r.strategy).to.equal('recently-added')
      expect(r.fileUrl).to.exist
      expect(r.createdAt).to.exist
      expect(r.updatedAt).to.exist
      expect(r.expiresOn).to.exist
    }
  })

  it('Should correctly paginate and sort results', async function () {
    {
      const body = await commands[0].listVideos({
        target: 'remote-videos',
        sort: 'name',
        start: 0,
        count: 2
      })

      const videos = body.data
      expect(videos[0].name).to.equal('video 1 server 2')
      expect(videos[1].name).to.equal('video 2 server 2')
    }

    {
      const body = await commands[0].listVideos({
        target: 'remote-videos',
        sort: '-name',
        start: 0,
        count: 2
      })

      const videos = body.data
      expect(videos[0].name).to.equal('video 2 server 2')
      expect(videos[1].name).to.equal('video 1 server 2')
    }

    {
      const body = await commands[0].listVideos({
        target: 'remote-videos',
        sort: '-name',
        start: 1,
        count: 1
      })

      expect(body.data[0].name).to.equal('video 1 server 2')
    }
  })

  it('Should manually add a redundancy and list it', async function () {
    this.timeout(120000)

    const uuid = (await servers[1].videos.quickUpload({ name: 'video 3 server 2', privacy: VideoPrivacy.UNLISTED })).uuid
    await waitJobs(servers)
    const videoId = await servers[0].videos.getId({ uuid })

    await commands[0].addVideo({ videoId })

    await waitJobs(servers)
    await servers[0].servers.waitUntilLog('Duplicated ', 15)
    await waitJobs(servers)

    {
      const body = await commands[0].listVideos({
        target: 'remote-videos',
        sort: '-name',
        start: 0,
        count: 5
      })

      const video = body.data[0]

      expect(video.name).to.equal('video 3 server 2')
      expect(video.redundancies.files).to.have.lengthOf(4)
      expect(video.redundancies.streamingPlaylists).to.have.lengthOf(1)

      const redundancies = video.redundancies.files.concat(video.redundancies.streamingPlaylists)

      for (const r of redundancies) {
        redundanciesToRemove.push(r.id)

        expect(r.strategy).to.equal('manual')
        expect(r.fileUrl).to.exist
        expect(r.createdAt).to.exist
        expect(r.updatedAt).to.exist
        expect(r.expiresOn).to.be.null
      }
    }

    const body = await commands[1].listVideos({
      target: 'my-videos',
      sort: '-name',
      start: 0,
      count: 5
    })

    const video = body.data[0]
    expect(video.name).to.equal('video 3 server 2')
    expect(video.redundancies.files).to.have.lengthOf(4)
    expect(video.redundancies.streamingPlaylists).to.have.lengthOf(1)

    const redundancies = video.redundancies.files.concat(video.redundancies.streamingPlaylists)

    for (const r of redundancies) {
      expect(r.strategy).to.be.null
      expect(r.fileUrl).to.exist
      expect(r.createdAt).to.exist
      expect(r.updatedAt).to.exist
      expect(r.expiresOn).to.be.null
    }
  })

  it('Should manually remove a redundancy and remove it from the list', async function () {
    this.timeout(120000)

    for (const redundancyId of redundanciesToRemove) {
      await commands[0].removeVideo({ redundancyId })
    }

    {
      const body = await commands[0].listVideos({
        target: 'remote-videos',
        sort: '-name',
        start: 0,
        count: 5
      })

      const videos = body.data

      expect(videos).to.have.lengthOf(2)

      const video = videos[0]
      expect(video.name).to.equal('video 2 server 2')
      expect(video.redundancies.files).to.have.lengthOf(4)
      expect(video.redundancies.streamingPlaylists).to.have.lengthOf(1)

      const redundancies = video.redundancies.files.concat(video.redundancies.streamingPlaylists)

      redundanciesToRemove = redundancies.map(r => r.id)
    }
  })

  it('Should remove another (auto) redundancy', async function () {
    for (const redundancyId of redundanciesToRemove) {
      await commands[0].removeVideo({ redundancyId })
    }

    const body = await commands[0].listVideos({
      target: 'remote-videos',
      sort: '-name',
      start: 0,
      count: 5
    })

    const videos = body.data
    expect(videos).to.have.lengthOf(1)
    expect(videos[0].name).to.equal('video 1 server 2')
  })

  after(async function () {
    await cleanupTests(servers)
  })
})