2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-01-03 10:38:50 -05:00
|
|
|
|
|
|
|
import 'mocha'
|
|
|
|
|
2019-04-24 05:54:23 -04:00
|
|
|
import { cleanupTests, flushAndRunServer, ServerInfo } 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 { getAccount } from '../../../../shared/extra-utils/users/accounts'
|
2020-12-08 15:16:10 -05:00
|
|
|
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
|
2018-01-03 10:38:50 -05:00
|
|
|
|
2019-01-28 05:45:40 -05:00
|
|
|
describe('Test accounts API validators', function () {
|
2018-01-03 10:38:50 -05:00
|
|
|
const path = '/api/v1/accounts/'
|
|
|
|
let server: ServerInfo
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
2018-01-18 12:10:45 -05:00
|
|
|
this.timeout(30000)
|
2018-01-03 10:38:50 -05:00
|
|
|
|
2019-04-24 04:53:40 -04:00
|
|
|
server = await flushAndRunServer(1)
|
2018-01-03 10:38:50 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('When listing accounts', function () {
|
|
|
|
it('Should fail with a bad start pagination', async function () {
|
|
|
|
await checkBadStartPagination(server.url, path, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad count pagination', async function () {
|
|
|
|
await checkBadCountPagination(server.url, path, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect sort', async function () {
|
|
|
|
await checkBadSortPagination(server.url, path, server.accessToken)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When getting an account', function () {
|
2018-05-25 03:57:16 -04:00
|
|
|
it('Should return 404 with a non existing name', async function () {
|
2020-12-08 15:16:10 -05:00
|
|
|
await getAccount(server.url, 'arfaze', HttpStatusCode.NOT_FOUND_404)
|
2018-01-03 10:38:50 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-24 05:54:23 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests([ server ])
|
2018-01-03 10:38:50 -05:00
|
|
|
})
|
|
|
|
})
|