]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/check-params/jobs.ts
Accept actors with url objects instead of string
[github/Chocobozzz/PeerTube.git] / server / tests / api / check-params / jobs.ts
CommitLineData
5cd80545
C
1/* tslint:disable:no-unused-expression */
2
3import 'mocha'
5cd80545 4
11ba2ab3 5import { createUser, flushTests, killallServers, runServer, ServerInfo, setAccessTokensToServers, userLogin } from '../../utils'
93e4a311
C
6import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
7import { makeGetRequest } from '../../utils/requests/requests'
5cd80545
C
8
9describe('Test jobs API validators', function () {
10 const path = '/api/v1/jobs/'
11 let server: ServerInfo
12 let userAccessToken = ''
13
14 // ---------------------------------------------------------------
15
16 before(async function () {
17 this.timeout(120000)
18
19 await flushTests()
20
21 server = await runServer(1)
22
23 await setAccessTokensToServers([ server ])
24
25 const user = {
26 username: 'user1',
27 password: 'my super password'
28 }
29 await createUser(server.url, server.accessToken, user.username, user.password)
eec63bbc 30 userAccessToken = await userLogin(server, user)
5cd80545
C
31 })
32
33 describe('When listing jobs', function () {
34 it('Should fail with a bad start pagination', async function () {
93e4a311 35 await checkBadStartPagination(server.url, path, server.accessToken)
5cd80545
C
36 })
37
38 it('Should fail with a bad count pagination', async function () {
93e4a311 39 await checkBadCountPagination(server.url, path, server.accessToken)
5cd80545
C
40 })
41
42 it('Should fail with an incorrect sort', async function () {
93e4a311 43 await checkBadSortPagination(server.url, path, server.accessToken)
5cd80545
C
44 })
45
46 it('Should fail with a non authenticated user', async function () {
93e4a311
C
47 await makeGetRequest({
48 url: server.url,
49 path,
50 statusCodeExpected: 401
51 })
5cd80545
C
52 })
53
54 it('Should fail with a non admin user', async function () {
93e4a311
C
55 await makeGetRequest({
56 url: server.url,
57 path,
58 token: userAccessToken,
59 statusCodeExpected: 403
60 })
5cd80545
C
61 })
62 })
63
64 after(async function () {
65 killallServers([ server ])
66
67 // Keep the logs if the test failed
68 if (this['ok']) {
69 await flushTests()
70 }
71 })
72})