1
0
Fork 0
peertube/server/tests/api/videos/videos-views-cleaner.ts

109 lines
2.9 KiB
TypeScript
Raw Normal View History

2020-01-31 15:56:52 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2019-04-11 15:33:36 +00:00
import * as chai from 'chai'
import 'mocha'
import {
2020-01-31 15:56:52 +00:00
cleanupTests,
closeAllSequelize,
countVideoViewsOf,
doubleFollow,
2019-04-11 15:33:36 +00:00
flushAndRunMultipleServers,
killallServers,
reRunServer,
ServerInfo,
setAccessTokensToServers,
2020-01-31 15:56:52 +00:00
uploadVideoAndGetId,
viewVideo,
wait,
waitJobs
} from '../../../../shared/extra-utils'
2019-04-11 15:33:36 +00:00
const expect = chai.expect
describe('Test video views cleaner', function () {
let servers: ServerInfo[]
let videoIdServer1: string
let videoIdServer2: string
before(async function () {
2020-12-11 09:36:05 +00:00
this.timeout(120000)
2019-04-11 15:33:36 +00:00
servers = await flushAndRunMultipleServers(2)
await setAccessTokensToServers(servers)
await doubleFollow(servers[0], servers[1])
videoIdServer1 = (await uploadVideoAndGetId({ server: servers[0], videoName: 'video server 1' })).uuid
videoIdServer2 = (await uploadVideoAndGetId({ server: servers[1], videoName: 'video server 2' })).uuid
await waitJobs(servers)
await viewVideo(servers[0].url, videoIdServer1)
await viewVideo(servers[1].url, videoIdServer1)
await viewVideo(servers[0].url, videoIdServer2)
await viewVideo(servers[1].url, videoIdServer2)
await waitJobs(servers)
})
it('Should not clean old video views', async function () {
this.timeout(50000)
killallServers([ servers[0] ])
await reRunServer(servers[0], { views: { videos: { remote: { max_age: '10 days' } } } })
await wait(6000)
// Should still have views
{
for (const server of servers) {
2019-04-26 06:50:52 +00:00
const total = await countVideoViewsOf(server.internalServerNumber, videoIdServer1)
2020-11-06 15:43:43 +00:00
expect(total).to.equal(2, 'Server ' + server.serverNumber + ' does not have the correct amount of views')
2019-04-11 15:33:36 +00:00
}
}
{
for (const server of servers) {
2019-04-26 06:50:52 +00:00
const total = await countVideoViewsOf(server.internalServerNumber, videoIdServer2)
2020-11-06 15:43:43 +00:00
expect(total).to.equal(2, 'Server ' + server.serverNumber + ' does not have the correct amount of views')
2019-04-11 15:33:36 +00:00
}
}
})
it('Should clean old video views', async function () {
this.timeout(50000)
killallServers([ servers[0] ])
await reRunServer(servers[0], { views: { videos: { remote: { max_age: '5 seconds' } } } })
await wait(6000)
// Should still have views
{
for (const server of servers) {
2019-04-26 06:50:52 +00:00
const total = await countVideoViewsOf(server.internalServerNumber, videoIdServer1)
2019-04-11 15:33:36 +00:00
expect(total).to.equal(2)
}
}
{
2019-04-26 06:50:52 +00:00
const totalServer1 = await countVideoViewsOf(servers[0].internalServerNumber, videoIdServer2)
2019-04-11 15:33:36 +00:00
expect(totalServer1).to.equal(0)
2019-04-26 06:50:52 +00:00
const totalServer2 = await countVideoViewsOf(servers[1].internalServerNumber, videoIdServer2)
2019-04-11 15:33:36 +00:00
expect(totalServer2).to.equal(2)
}
})
2019-04-24 13:10:37 +00:00
after(async function () {
2019-04-26 06:50:52 +00:00
await closeAllSequelize(servers)
2019-04-24 13:10:37 +00:00
await cleanupTests(servers)
2019-04-11 15:33:36 +00:00
})
})