X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fapi%2Fserver%2Fstats.ts;h=637525ff8c97c9b6b8d84d152c7f264bd8b1540c;hb=8b6f0fd53d12faf54a58602a8bcfab05e8b5947b;hp=c207bb5f00196e649e163458c62766e06d2cbab9;hpb=a3b7421abb4192e215aa280418b62e96958c5e42;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/api/server/stats.ts b/server/tests/api/server/stats.ts index c207bb5f0..637525ff8 100644 --- a/server/tests/api/server/stats.ts +++ b/server/tests/api/server/stats.ts @@ -9,10 +9,11 @@ import { doubleFollow, flushAndRunMultipleServers, follow, - ServerInfo, + ServerInfo, unfollow, uploadVideo, viewVideo, - wait + wait, + userLogin } from '../../../../shared/extra-utils' import { setAccessTokensToServers } from '../../../../shared/extra-utils/index' import { getStats } from '../../../../shared/extra-utils/server/stats' @@ -23,6 +24,10 @@ const expect = chai.expect describe('Test stats (excluding redundancy)', function () { let servers: ServerInfo[] = [] + const user = { + username: 'user1', + password: 'super_password' + } before(async function () { this.timeout(60000) @@ -31,10 +36,6 @@ describe('Test stats (excluding redundancy)', function () { await doubleFollow(servers[0], servers[1]) - const user = { - username: 'user1', - password: 'super_password' - } await createUser({ url: servers[0].url, accessToken: servers[0].accessToken, username: user.username, password: user.password }) const resVideo = await uploadVideo(servers[0].url, servers[0].accessToken, { fixture: 'video_short.webm' }) @@ -95,6 +96,40 @@ describe('Test stats (excluding redundancy)', function () { expect(data.totalInstanceFollowers).to.equal(0) }) + it('Should have the correct total videos stats after an unfollow', async function () { + this.timeout(15000) + + await unfollow(servers[2].url, servers[2].accessToken, servers[0]) + await waitJobs(servers) + + const res = await getStats(servers[2].url) + const data: ServerStats = res.body + + expect(data.totalVideos).to.equal(0) + }) + + it('Should have the correct active users stats', async function () { + const server = servers[0] + + { + const res = await getStats(server.url) + const data: ServerStats = res.body + expect(data.totalDailyActiveUsers).to.equal(1) + expect(data.totalWeeklyActiveUsers).to.equal(1) + expect(data.totalMonthlyActiveUsers).to.equal(1) + } + + { + await userLogin(server, user) + + const res = await getStats(server.url) + const data: ServerStats = res.body + expect(data.totalDailyActiveUsers).to.equal(2) + expect(data.totalWeeklyActiveUsers).to.equal(2) + expect(data.totalMonthlyActiveUsers).to.equal(2) + } + }) + after(async function () { await cleanupTests(servers) })