2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2019-04-10 09:26:33 -04:00
|
|
|
|
|
|
|
import 'mocha'
|
|
|
|
|
|
|
|
import {
|
2020-01-31 10:56:52 -05:00
|
|
|
cleanupTests,
|
2019-04-10 09:26:33 -04:00
|
|
|
createUser,
|
2019-04-24 04:53:40 -04:00
|
|
|
flushAndRunServer,
|
2019-04-10 09:26:33 -04:00
|
|
|
ServerInfo,
|
2021-07-13 05:05:15 -04:00
|
|
|
setAccessTokensToServers
|
2019-04-15 09:26:15 -04:00
|
|
|
} from '../../../../shared/extra-utils'
|
|
|
|
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'
|
2019-04-10 09:26:33 -04:00
|
|
|
|
|
|
|
describe('Test logs API validators', function () {
|
|
|
|
const path = '/api/v1/server/logs'
|
|
|
|
let server: ServerInfo
|
|
|
|
let userAccessToken = ''
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
2019-04-24 04:53:40 -04:00
|
|
|
server = await flushAndRunServer(1)
|
2019-04-10 09:26:33 -04: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 })
|
2021-07-13 05:05:15 -04:00
|
|
|
userAccessToken = await server.loginCommand.getAccessToken(user)
|
2019-04-10 09:26:33 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('When getting logs', function () {
|
|
|
|
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401
|
2019-04-10 09:26:33 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a non admin user', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: userAccessToken,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.FORBIDDEN_403
|
2019-04-10 09:26:33 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a missing startDate query', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.BAD_REQUEST_400
|
2019-04-10 09:26:33 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad startDate query', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
query: { startDate: 'toto' },
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.BAD_REQUEST_400
|
2019-04-10 09:26:33 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad endDate query', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
query: { startDate: new Date().toISOString(), endDate: 'toto' },
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.BAD_REQUEST_400
|
2019-04-10 09:26:33 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad level parameter', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
query: { startDate: new Date().toISOString(), level: 'toto' },
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.BAD_REQUEST_400
|
2019-04-10 09:26:33 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct params', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
query: { startDate: new Date().toISOString() },
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.OK_200
|
2019-04-10 09:26:33 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests([ server ])
|
2019-04-10 09:26:33 -04:00
|
|
|
})
|
|
|
|
})
|