aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/views/videos-views-cleaner.ts
blob: e28f826684271cab903e2ab6923ea3d9f47ccaa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */

import * as chai from 'chai'
import { wait } from '@shared/core-utils'
import {
  cleanupTests,
  createMultipleServers,
  doubleFollow,
  killallServers,
  PeerTubeServer,
  setAccessTokensToServers,
  waitJobs
} from '@shared/server-commands'

const expect = chai.expect

describe('Test video views cleaner', function () {
  let servers: PeerTubeServer[]

  let videoIdServer1: string
  let videoIdServer2: string

  before(async function () {
    this.timeout(120000)

    servers = await createMultipleServers(2)
    await setAccessTokensToServers(servers)

    await doubleFollow(servers[0], servers[1])

    videoIdServer1 = (await servers[0].videos.quickUpload({ name: 'video server 1' })).uuid
    videoIdServer2 = (await servers[1].videos.quickUpload({ name: 'video server 2' })).uuid

    await waitJobs(servers)

    await servers[0].views.simulateView({ id: videoIdServer1 })
    await servers[1].views.simulateView({ id: videoIdServer1 })
    await servers[0].views.simulateView({ id: videoIdServer2 })
    await servers[1].views.simulateView({ id: videoIdServer2 })

    await waitJobs(servers)
  })

  it('Should not clean old video views', async function () {
    this.timeout(50000)

    await killallServers([ servers[0] ])

    await servers[0].run({ views: { videos: { remote: { max_age: '10 days' } } } })

    await wait(6000)

    // Should still have views

    {
      for (const server of servers) {
        const total = await server.sql.countVideoViewsOf(videoIdServer1)
        expect(total).to.equal(2, 'Server ' + server.serverNumber + ' does not have the correct amount of views')
      }
    }

    {
      for (const server of servers) {
        const total = await server.sql.countVideoViewsOf(videoIdServer2)
        expect(total).to.equal(2, 'Server ' + server.serverNumber + ' does not have the correct amount of views')
      }
    }
  })

  it('Should clean old video views', async function () {
    this.timeout(50000)

    await killallServers([ servers[0] ])

    await servers[0].run({ views: { videos: { remote: { max_age: '5 seconds' } } } })

    await wait(6000)

    // Should still have views

    {
      for (const server of servers) {
        const total = await server.sql.countVideoViewsOf(videoIdServer1)
        expect(total).to.equal(2)
      }
    }

    {
      const totalServer1 = await servers[0].sql.countVideoViewsOf(videoIdServer2)
      expect(totalServer1).to.equal(0)

      const totalServer2 = await servers[1].sql.countVideoViewsOf(videoIdServer2)
      expect(totalServer2).to.equal(2)
    }
  })

  after(async function () {
    await cleanupTests(servers)
  })
})