From 54363cffa4ac0bae1c986ef636e8687eb642f4a0 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 16 Dec 2020 10:36:15 +0100 Subject: Fix stats tests --- server/tests/api/server/stats.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'server/tests') diff --git a/server/tests/api/server/stats.ts b/server/tests/api/server/stats.ts index 9f785a80e..b752da743 100644 --- a/server/tests/api/server/stats.ts +++ b/server/tests/api/server/stats.ts @@ -135,7 +135,7 @@ describe('Test stats (excluding redundancy)', function () { }) it('Should correctly count video file sizes if transcoding is enabled', async function () { - this.timeout(20000) + this.timeout(60000) await updateCustomSubConfig(servers[0].url, servers[0].accessToken, { transcoding: { @@ -179,6 +179,12 @@ describe('Test stats (excluding redundancy)', function () { it('Should have the correct AP stats', async function () { this.timeout(60000) + await updateCustomSubConfig(servers[0].url, servers[0].accessToken, { + transcoding: { + enabled: false + } + }) + for (let i = 0; i < 10; i++) { await uploadVideo(servers[0].url, servers[0].accessToken, { name: 'video' }) } @@ -191,7 +197,6 @@ describe('Test stats (excluding redundancy)', function () { const res2 = await getStats(servers[1].url) const second: ServerStats = res2.body - expect(second.totalActivityPubMessagesWaiting).to.equal(0) expect(second.totalActivityPubMessagesProcessed).to.be.greaterThan(first.totalActivityPubMessagesProcessed) await wait(5000) @@ -199,6 +204,7 @@ describe('Test stats (excluding redundancy)', function () { const res3 = await getStats(servers[1].url) const third: ServerStats = res3.body + expect(third.totalActivityPubMessagesWaiting).to.equal(0) expect(third.activityPubMessagesProcessedPerSecond).to.be.lessThan(second.activityPubMessagesProcessedPerSecond) }) -- cgit v1.2.3