2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2017-11-30 04:51:13 -05:00
|
|
|
|
|
|
|
import 'mocha'
|
|
|
|
|
2018-10-29 12:48:31 -04:00
|
|
|
import {
|
2020-01-31 10:56:52 -05:00
|
|
|
cleanupTests,
|
2018-10-29 12:48:31 -04:00
|
|
|
createUser,
|
2019-04-24 04:53:40 -04:00
|
|
|
flushAndRunServer,
|
2018-10-29 12:48:31 -04:00
|
|
|
ServerInfo,
|
|
|
|
setAccessTokensToServers,
|
2020-01-31 10:56:52 -05:00
|
|
|
userLogin
|
2019-04-15 09:26:15 -04:00
|
|
|
} from '../../../../shared/extra-utils'
|
2018-10-29 12:48:31 -04:00
|
|
|
import {
|
|
|
|
checkBadCountPagination,
|
|
|
|
checkBadSortPagination,
|
|
|
|
checkBadStartPagination
|
2019-04-15 09:26:15 -04:00
|
|
|
} from '../../../../shared/extra-utils/requests/check-api-params'
|
|
|
|
import { makeGetRequest } from '../../../../shared/extra-utils/requests/requests'
|
2020-12-07 08:32:36 -05:00
|
|
|
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
|
2017-11-30 04:51:13 -05:00
|
|
|
|
|
|
|
describe('Test jobs API validators', function () {
|
2018-01-25 09:05:18 -05:00
|
|
|
const path = '/api/v1/jobs/failed'
|
2017-11-30 04:51:13 -05:00
|
|
|
let server: ServerInfo
|
|
|
|
let userAccessToken = ''
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
2019-04-24 04:53:40 -04:00
|
|
|
server = await flushAndRunServer(1)
|
2017-11-30 04:51:13 -05:00
|
|
|
|
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
|
|
|
const user = {
|
|
|
|
username: 'user1',
|
|
|
|
password: 'my super password'
|
|
|
|
}
|
2019-04-15 04:49:46 -04:00
|
|
|
await createUser({ url: server.url, accessToken: server.accessToken, username: user.username, password: user.password })
|
2017-12-28 08:29:57 -05:00
|
|
|
userAccessToken = await userLogin(server, user)
|
2017-11-30 04:51:13 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('When listing jobs', function () {
|
2018-01-25 09:05:18 -05:00
|
|
|
|
|
|
|
it('Should fail with a bad state', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
token: server.accessToken,
|
|
|
|
path: path + 'ade'
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-12-04 08:49:59 -05:00
|
|
|
it('Should fail with an incorrect job type', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
token: server.accessToken,
|
|
|
|
path,
|
|
|
|
query: {
|
|
|
|
jobType: 'toto'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-11-30 04:51:13 -05:00
|
|
|
it('Should fail with a bad start pagination', async function () {
|
2017-12-28 08:40:11 -05:00
|
|
|
await checkBadStartPagination(server.url, path, server.accessToken)
|
2017-11-30 04:51:13 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad count pagination', async function () {
|
2017-12-28 08:40:11 -05:00
|
|
|
await checkBadCountPagination(server.url, path, server.accessToken)
|
2017-11-30 04:51:13 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect sort', async function () {
|
2017-12-28 08:40:11 -05:00
|
|
|
await checkBadSortPagination(server.url, path, server.accessToken)
|
2017-11-30 04:51:13 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
2017-12-28 08:40:11 -05:00
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401
|
2017-12-28 08:40:11 -05:00
|
|
|
})
|
2017-11-30 04:51:13 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a non admin user', async function () {
|
2017-12-28 08:40:11 -05:00
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: userAccessToken,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.FORBIDDEN_403
|
2017-12-28 08:40:11 -05:00
|
|
|
})
|
2017-11-30 04:51:13 -05:00
|
|
|
})
|
2019-12-04 08:49:59 -05:00
|
|
|
|
2017-11-30 04:51:13 -05:00
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests([ server ])
|
2017-11-30 04:51:13 -05:00
|
|
|
})
|
|
|
|
})
|