aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/check-params/video-files.ts
blob: 48b10d2b585c58914ed1df5754d33dbea23d40cc (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
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */

import 'mocha'
import { cleanupTests, createMultipleServers, PeerTubeServer, setAccessTokensToServers, waitJobs } from '@shared/extra-utils'
import { HttpStatusCode, UserRole } from '@shared/models'

describe('Test videos files', function () {
  let servers: PeerTubeServer[]
  let webtorrentId: string
  let hlsId: string
  let remoteId: string
  let userToken: string
  let moderatorToken: string
  let validId1: string
  let validId2: string

  // ---------------------------------------------------------------

  before(async function () {
    this.timeout(150_000)

    servers = await createMultipleServers(2)
    await setAccessTokensToServers(servers)

    userToken = await servers[0].users.generateUserAndToken('user', UserRole.USER)
    moderatorToken = await servers[0].users.generateUserAndToken('moderator', UserRole.MODERATOR)

    {
      await servers[0].config.enableTranscoding(true, true)

      {
        const { uuid } = await servers[0].videos.quickUpload({ name: 'both 1' })
        validId1 = uuid
      }

      {
        const { uuid } = await servers[0].videos.quickUpload({ name: 'both 2' })
        validId2 = uuid
      }
    }

    await waitJobs(servers)

    {
      await servers[0].config.enableTranscoding(false, true)
      const { uuid } = await servers[0].videos.quickUpload({ name: 'hls' })
      hlsId = uuid
    }

    await waitJobs(servers)

    {
      await servers[0].config.enableTranscoding(false, true)
      const { uuid } = await servers[0].videos.quickUpload({ name: 'webtorrent' })
      webtorrentId = uuid
    }

    await waitJobs(servers)
  })

  it('Should not delete files of a remote video', async function () {
    await servers[0].videos.removeHLSFiles({ videoId: remoteId, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
    await servers[0].videos.removeWebTorrentFiles({ videoId: remoteId, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
  })

  it('Should not delete files by a non admin user', async function () {
    const expectedStatus = HttpStatusCode.FORBIDDEN_403

    await servers[0].videos.removeHLSFiles({ videoId: validId1, token: userToken, expectedStatus })
    await servers[0].videos.removeHLSFiles({ videoId: validId1, token: moderatorToken, expectedStatus })

    await servers[0].videos.removeWebTorrentFiles({ videoId: validId1, token: userToken, expectedStatus })
    await servers[0].videos.removeWebTorrentFiles({ videoId: validId1, token: moderatorToken, expectedStatus })
  })

  it('Should not delete files if the files are not available', async function () {
    await servers[0].videos.removeHLSFiles({ videoId: hlsId, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
    await servers[0].videos.removeWebTorrentFiles({ videoId: webtorrentId, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
  })

  it('Should not delete files if no both versions are available', async function () {
    await servers[0].videos.removeHLSFiles({ videoId: hlsId, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
    await servers[0].videos.removeWebTorrentFiles({ videoId: webtorrentId, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
  })

  it('Should not delete files if no both versions are available', async function () {
    await servers[0].videos.removeHLSFiles({ videoId: hlsId, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
    await servers[0].videos.removeWebTorrentFiles({ videoId: webtorrentId, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
  })

  it('Should delete files if both versions are available', async function () {
    await servers[0].videos.removeHLSFiles({ videoId: validId1 })
    await servers[0].videos.removeWebTorrentFiles({ videoId: validId2 })
  })

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