aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/tests/src/api/server/jobs.ts
blob: 3d60b1431f6142b9ea0e0de084956f123dc106c4 (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
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */

import { expect } from 'chai'
import { dateIsValid } from '@tests/shared/checks.js'
import { wait } from '@peertube/peertube-core-utils'
import {
  cleanupTests,
  createMultipleServers,
  doubleFollow,
  PeerTubeServer,
  setAccessTokensToServers,
  waitJobs
} from '@peertube/peertube-server-commands'

describe('Test jobs', function () {
  let servers: PeerTubeServer[]

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

    servers = await createMultipleServers(2)

    await setAccessTokensToServers(servers)

    // Server 1 and server 2 follow each other
    await doubleFollow(servers[0], servers[1])
  })

  it('Should create some jobs', async function () {
    this.timeout(240000)

    await servers[1].videos.upload({ attributes: { name: 'video1' } })
    await servers[1].videos.upload({ attributes: { name: 'video2' } })

    await waitJobs(servers)
  })

  it('Should list jobs', async function () {
    const body = await servers[1].jobs.list({ state: 'completed' })
    expect(body.total).to.be.above(2)
    expect(body.data).to.have.length.above(2)
  })

  it('Should list jobs with sort, pagination and job type', async function () {
    {
      const body = await servers[1].jobs.list({
        state: 'completed',
        start: 1,
        count: 2,
        sort: 'createdAt'
      })
      expect(body.total).to.be.above(2)
      expect(body.data).to.have.lengthOf(2)

      let job = body.data[0]
      // Skip repeat jobs
      if (job.type === 'videos-views-stats') job = body.data[1]

      expect(job.state).to.equal('completed')
      expect(dateIsValid(job.createdAt as string)).to.be.true
      expect(dateIsValid(job.processedOn as string)).to.be.true
      expect(dateIsValid(job.finishedOn as string)).to.be.true
    }

    {
      const body = await servers[1].jobs.list({
        state: 'completed',
        start: 0,
        count: 100,
        sort: 'createdAt',
        jobType: 'activitypub-http-broadcast'
      })
      expect(body.total).to.be.above(2)

      for (const j of body.data) {
        expect(j.type).to.equal('activitypub-http-broadcast')
      }
    }
  })

  it('Should list all jobs', async function () {
    const body = await servers[1].jobs.list()
    expect(body.total).to.be.above(2)

    const jobs = body.data
    expect(jobs).to.have.length.above(2)

    expect(jobs.find(j => j.state === 'completed')).to.not.be.undefined
  })

  it('Should pause the job queue', async function () {
    this.timeout(120000)

    const { uuid } = await servers[1].videos.upload({ attributes: { name: 'video2' } })
    await waitJobs(servers)

    await servers[1].jobs.pauseJobQueue()
    await servers[1].videos.runTranscoding({ videoId: uuid, transcodingType: 'hls' })

    await wait(5000)

    {
      const body = await servers[1].jobs.list({ state: 'waiting', jobType: 'video-transcoding' })
      // waiting includes waiting-children
      expect(body.data).to.have.lengthOf(4)
    }

    {
      const body = await servers[1].jobs.list({ state: 'waiting-children', jobType: 'video-transcoding' })
      expect(body.data).to.have.lengthOf(1)
    }
  })

  it('Should resume the job queue', async function () {
    this.timeout(120000)

    await servers[1].jobs.resumeJobQueue()

    await waitJobs(servers)

    const body = await servers[1].jobs.list({ state: 'waiting', jobType: 'video-transcoding' })
    expect(body.data).to.have.lengthOf(0)
  })

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