X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fapi%2Fcheck-params%2Faccounts.ts;h=4f79685bdff306c8f7820727cff8ecbfe84cd354;hb=7cd4d2ba10106c10602c86f74f55743ded588896;hp=351228754d53f21f17fd31e005c77e0484a31636;hpb=265ba139ebf56bbdc1c65f6ea4f367774c691fc0;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/api/check-params/accounts.ts b/server/tests/api/check-params/accounts.ts index 351228754..4f79685bd 100644 --- a/server/tests/api/check-params/accounts.ts +++ b/server/tests/api/check-params/accounts.ts @@ -2,22 +2,24 @@ import 'mocha' -import { flushTests, killallServers, runServer, ServerInfo } from '../../utils' -import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params' -import { getAccount } from '../../utils/users/accounts' - -describe('Test users API validators', function () { +import { cleanupTests, flushAndRunServer, ServerInfo } from '../../../../shared/extra-utils' +import { + checkBadCountPagination, + checkBadSortPagination, + checkBadStartPagination +} from '../../../../shared/extra-utils/requests/check-api-params' +import { getAccount } from '../../../../shared/extra-utils/users/accounts' + +describe('Test accounts API validators', function () { const path = '/api/v1/accounts/' let server: ServerInfo // --------------------------------------------------------------- before(async function () { - this.timeout(20000) - - await flushTests() + this.timeout(30000) - server = await runServer(1) + server = await flushAndRunServer(1) }) describe('When listing accounts', function () { @@ -35,17 +37,12 @@ describe('Test users API validators', function () { }) describe('When getting an account', function () { - it('Should return 404 with a non existing id', async function () { - await getAccount(server.url, 4545454, 404) + it('Should return 404 with a non existing name', async function () { + await getAccount(server.url, 'arfaze', 404) }) }) after(async function () { - killallServers([ server ]) - - // Keep the logs if the test failed - if (this['ok']) { - await flushTests() - } + await cleanupTests([ server ]) }) })