aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/server/bulk.ts
blob: c83bcfb226f3dab6360ac8a8eb27eafa3d09caa1 (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */

import 'mocha'
import * as chai from 'chai'
import {
  BulkCommand,
  cleanupTests,
  doubleFollow,
  flushAndRunMultipleServers,
  ServerInfo,
  setAccessTokensToServers,
  waitJobs
} from '@shared/extra-utils'

const expect = chai.expect

describe('Test bulk actions', function () {
  const commentsUser3: { videoId: number, commentId: number }[] = []

  let servers: ServerInfo[] = []
  let user1Token: string
  let user2Token: string
  let user3Token: string

  let bulkCommand: BulkCommand

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

    servers = await flushAndRunMultipleServers(2)

    // Get the access tokens
    await setAccessTokensToServers(servers)

    {
      const user = { username: 'user1', password: 'password' }
      await servers[0].usersCommand.create({ username: user.username, password: user.password })

      user1Token = await servers[0].loginCommand.getAccessToken(user)
    }

    {
      const user = { username: 'user2', password: 'password' }
      await servers[0].usersCommand.create({ username: user.username, password: user.password })

      user2Token = await servers[0].loginCommand.getAccessToken(user)
    }

    {
      const user = { username: 'user3', password: 'password' }
      await servers[1].usersCommand.create({ username: user.username, password: user.password })

      user3Token = await servers[1].loginCommand.getAccessToken(user)
    }

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

    bulkCommand = new BulkCommand(servers[0])
  })

  describe('Bulk remove comments', function () {
    async function checkInstanceCommentsRemoved () {
      {
        const { data } = await servers[0].videosCommand.list()

        // Server 1 should not have these comments anymore
        for (const video of data) {
          const { data } = await servers[0].commentsCommand.listThreads({ videoId: video.id })
          const comment = data.find(c => c.text === 'comment by user 3')

          expect(comment).to.not.exist
        }
      }

      {
        const { data } = await servers[1].videosCommand.list()

        // Server 1 should not have these comments on videos of server 1
        for (const video of data) {
          const { data } = await servers[1].commentsCommand.listThreads({ videoId: video.id })
          const comment = data.find(c => c.text === 'comment by user 3')

          if (video.account.host === 'localhost:' + servers[0].port) {
            expect(comment).to.not.exist
          } else {
            expect(comment).to.exist
          }
        }
      }
    }

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

      await servers[0].videosCommand.upload({ attributes: { name: 'video 1 server 1' } })
      await servers[0].videosCommand.upload({ attributes: { name: 'video 2 server 1' } })
      await servers[0].videosCommand.upload({ token: user1Token, attributes: { name: 'video 3 server 1' } })

      await servers[1].videosCommand.upload({ attributes: { name: 'video 1 server 2' } })

      await waitJobs(servers)

      {
        const { data } = await servers[0].videosCommand.list()
        for (const video of data) {
          await servers[0].commentsCommand.createThread({ videoId: video.id, text: 'comment by root server 1' })
          await servers[0].commentsCommand.createThread({ token: user1Token, videoId: video.id, text: 'comment by user 1' })
          await servers[0].commentsCommand.createThread({ token: user2Token, videoId: video.id, text: 'comment by user 2' })
        }
      }

      {
        const { data } = await servers[1].videosCommand.list()

        for (const video of data) {
          await servers[1].commentsCommand.createThread({ videoId: video.id, text: 'comment by root server 2' })

          const comment = await servers[1].commentsCommand.createThread({ token: user3Token, videoId: video.id, text: 'comment by user 3' })
          commentsUser3.push({ videoId: video.id, commentId: comment.id })
        }
      }

      await waitJobs(servers)
    })

    it('Should delete comments of an account on my videos', async function () {
      this.timeout(60000)

      await bulkCommand.removeCommentsOf({
        token: user1Token,
        attributes: {
          accountName: 'user2',
          scope: 'my-videos'
        }
      })

      await waitJobs(servers)

      for (const server of servers) {
        const { data } = await server.videosCommand.list()

        for (const video of data) {
          const { data } = await server.commentsCommand.listThreads({ videoId: video.id })
          const comment = data.find(c => c.text === 'comment by user 2')

          if (video.name === 'video 3 server 1') expect(comment).to.not.exist
          else expect(comment).to.exist
        }
      }
    })

    it('Should delete comments of an account on the instance', async function () {
      this.timeout(60000)

      await bulkCommand.removeCommentsOf({
        attributes: {
          accountName: 'user3@localhost:' + servers[1].port,
          scope: 'instance'
        }
      })

      await waitJobs(servers)

      await checkInstanceCommentsRemoved()
    })

    it('Should not re create the comment on video update', async function () {
      this.timeout(60000)

      for (const obj of commentsUser3) {
        await servers[1].commentsCommand.addReply({
          token: user3Token,
          videoId: obj.videoId,
          toCommentId: obj.commentId,
          text: 'comment by user 3 bis'
        })
      }

      await waitJobs(servers)

      await checkInstanceCommentsRemoved()
    })
  })

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