PeerTube/server/tests/api/server/jobs.ts

64 lines
2.2 KiB
TypeScript
Raw Normal View History

2017-11-30 10:51:13 +01:00
/* tslint:disable:no-unused-expression */
import * as chai from 'chai'
import 'mocha'
2019-04-24 15:10:37 +02:00
import { cleanupTests, killallServers, ServerInfo, setAccessTokensToServers } from '../../../../shared/extra-utils/index'
import { doubleFollow } from '../../../../shared/extra-utils/server/follows'
import { getJobsList, getJobsListPaginationAndSort, waitJobs } from '../../../../shared/extra-utils/server/jobs'
import { flushAndRunMultipleServers } from '../../../../shared/extra-utils/server/servers'
import { uploadVideo } from '../../../../shared/extra-utils/videos/videos'
import { dateIsValid } from '../../../../shared/extra-utils/miscs/miscs'
2019-07-29 11:59:29 +02:00
import { Job } from '../../../../shared/models/server'
2017-11-30 10:51:13 +01:00
const expect = chai.expect
describe('Test jobs', function () {
let servers: ServerInfo[]
before(async function () {
this.timeout(30000)
servers = await flushAndRunMultipleServers(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 () {
2019-05-17 11:56:12 +02:00
this.timeout(60000)
2017-11-30 10:51:13 +01:00
await uploadVideo(servers[1].url, servers[1].accessToken, { name: 'video1' })
await uploadVideo(servers[1].url, servers[1].accessToken, { name: 'video2' })
await waitJobs(servers)
2017-11-30 10:51:13 +01:00
})
it('Should list jobs', async function () {
2018-07-10 17:02:20 +02:00
const res = await getJobsList(servers[1].url, servers[1].accessToken, 'completed')
2017-11-30 10:51:13 +01:00
expect(res.body.total).to.be.above(2)
expect(res.body.data).to.have.length.above(2)
})
it('Should list jobs with sort and pagination', async function () {
2018-09-26 14:46:54 +02:00
const res = await getJobsListPaginationAndSort(servers[1].url, servers[1].accessToken, 'completed', 1, 2, 'createdAt')
2017-11-30 10:51:13 +01:00
expect(res.body.total).to.be.above(2)
2018-09-26 14:46:54 +02:00
expect(res.body.data).to.have.lengthOf(2)
2017-11-30 10:51:13 +01:00
2018-09-19 17:42:16 +02:00
let job = res.body.data[0]
// Skip repeat jobs
if (job.type === 'videos-views') job = res.body.data[1]
2018-07-10 17:02:20 +02:00
expect(job.state).to.equal('completed')
2019-07-29 11:59:29 +02:00
expect(job.type.startsWith('activitypub-')).to.be.true
2017-11-30 10:51:13 +01:00
expect(dateIsValid(job.createdAt)).to.be.true
2018-07-10 17:02:20 +02:00
expect(dateIsValid(job.processedOn)).to.be.true
expect(dateIsValid(job.finishedOn)).to.be.true
2017-11-30 10:51:13 +01:00
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests(servers)
2017-11-30 10:51:13 +01:00
})
})