PeerTube/server/tests/api/server/stats.ts

103 lines
3.5 KiB
TypeScript
Raw Normal View History

2018-02-28 18:04:46 +01:00
/* tslint:disable:no-unused-expression */
import * as chai from 'chai'
import 'mocha'
import { ServerStats } from '../../../../shared/models/server/server-stats.model'
import {
2019-04-24 15:10:37 +02:00
cleanupTests,
2018-02-28 18:04:46 +01:00
createUser,
doubleFollow,
flushAndRunMultipleServers,
follow,
killallServers,
ServerInfo,
uploadVideo,
viewVideo,
wait
} from '../../../../shared/extra-utils'
import { flushTests, setAccessTokensToServers } from '../../../../shared/extra-utils/index'
import { getStats } from '../../../../shared/extra-utils/server/stats'
import { addVideoCommentThread } from '../../../../shared/extra-utils/videos/video-comments'
import { waitJobs } from '../../../../shared/extra-utils/server/jobs'
2018-02-28 18:04:46 +01:00
const expect = chai.expect
2018-09-14 14:57:59 +02:00
describe('Test stats (excluding redundancy)', function () {
2018-02-28 18:04:46 +01:00
let servers: ServerInfo[] = []
before(async function () {
this.timeout(60000)
servers = await flushAndRunMultipleServers(3)
await setAccessTokensToServers(servers)
await doubleFollow(servers[0], servers[1])
const user = {
username: 'user1',
password: 'super_password'
}
2019-04-15 10:49:46 +02:00
await createUser({ url: servers[ 0 ].url, accessToken: servers[ 0 ].accessToken, username: user.username, password: user.password })
2018-02-28 18:04:46 +01:00
2019-01-15 09:45:54 +01:00
const resVideo = await uploadVideo(servers[0].url, servers[0].accessToken, { fixture: 'video_short.webm' })
2018-02-28 18:04:46 +01:00
const videoUUID = resVideo.body.video.uuid
await addVideoCommentThread(servers[0].url, servers[0].accessToken, videoUUID, 'comment')
await viewVideo(servers[0].url, videoUUID)
2018-08-29 16:26:25 +02:00
// Wait the video views repeatable job
await wait(8000)
2018-02-28 18:04:46 +01:00
await follow(servers[2].url, [ servers[0].url ], servers[2].accessToken)
await waitJobs(servers)
2018-02-28 18:04:46 +01:00
})
it('Should have the correct stats on instance 1', async function () {
const res = await getStats(servers[0].url)
const data: ServerStats = res.body
expect(data.totalLocalVideoComments).to.equal(1)
expect(data.totalLocalVideos).to.equal(1)
expect(data.totalLocalVideoViews).to.equal(1)
2019-01-15 09:45:54 +01:00
expect(data.totalLocalVideoFilesSize).to.equal(218910)
2018-02-28 18:04:46 +01:00
expect(data.totalUsers).to.equal(2)
expect(data.totalVideoComments).to.equal(1)
expect(data.totalVideos).to.equal(1)
expect(data.totalInstanceFollowers).to.equal(2)
expect(data.totalInstanceFollowing).to.equal(1)
})
it('Should have the correct stats on instance 2', async function () {
const res = await getStats(servers[1].url)
const data: ServerStats = res.body
expect(data.totalLocalVideoComments).to.equal(0)
expect(data.totalLocalVideos).to.equal(0)
expect(data.totalLocalVideoViews).to.equal(0)
expect(data.totalLocalVideoFilesSize).to.equal(0)
2018-02-28 18:04:46 +01:00
expect(data.totalUsers).to.equal(1)
expect(data.totalVideoComments).to.equal(1)
expect(data.totalVideos).to.equal(1)
expect(data.totalInstanceFollowers).to.equal(1)
expect(data.totalInstanceFollowing).to.equal(1)
})
it('Should have the correct stats on instance 3', async function () {
const res = await getStats(servers[2].url)
const data: ServerStats = res.body
expect(data.totalLocalVideoComments).to.equal(0)
expect(data.totalLocalVideos).to.equal(0)
expect(data.totalLocalVideoViews).to.equal(0)
expect(data.totalUsers).to.equal(1)
expect(data.totalVideoComments).to.equal(1)
expect(data.totalVideos).to.equal(1)
expect(data.totalInstanceFollowing).to.equal(1)
expect(data.totalInstanceFollowers).to.equal(0)
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests(servers)
2018-02-28 18:04:46 +01:00
})
})