]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/videos/video-comments.ts
Merge branch 'release/5.1.0' into develop
[github/Chocobozzz/PeerTube.git] / server / tests / api / videos / video-comments.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
d3ea8975 2
86347717 3import { expect } from 'chai'
c55e3d72 4import { dateIsValid, testImage } from '@server/tests/shared'
d0800f76 5import {
6 cleanupTests,
7 CommentsCommand,
8 createSingleServer,
9 PeerTubeServer,
10 setAccessTokensToServers,
11 setDefaultAccountAvatar,
12 setDefaultChannelAvatar
13} from '@shared/server-commands'
d3ea8975 14
e2e22e40 15describe('Test video comments', function () {
254d3579 16 let server: PeerTubeServer
12edc149
C
17 let videoId: number
18 let videoUUID: string
19 let threadId: number
4cb6d457 20 let replyToDeleteId: number
d3ea8975 21
32c68d67
RK
22 let userAccessTokenServer1: string
23
12edc149
C
24 let command: CommentsCommand
25
d3ea8975 26 before(async function () {
e212f887 27 this.timeout(30000)
d3ea8975 28
254d3579 29 server = await createSingleServer(1)
d3ea8975
C
30
31 await setAccessTokensToServers([ server ])
32
89d241a7 33 const { id, uuid } = await server.videos.upload()
d23dd9fb
C
34 videoUUID = uuid
35 videoId = id
cf117aaa 36
d0800f76 37 await setDefaultChannelAvatar(server)
38 await setDefaultAccountAvatar(server)
32c68d67 39
89d241a7 40 userAccessTokenServer1 = await server.users.generateUserAndToken('user1')
a8749f7c
C
41 await setDefaultChannelAvatar(server, 'user1_channel')
42 await setDefaultAccountAvatar(server, userAccessTokenServer1)
12edc149 43
89d241a7 44 command = server.comments
d3ea8975
C
45 })
46
f1273314 47 describe('User comments', function () {
d3ea8975 48
f1273314 49 it('Should not have threads on this video', async function () {
12edc149 50 const body = await command.listThreads({ videoId: videoUUID })
d3ea8975 51
12edc149
C
52 expect(body.total).to.equal(0)
53 expect(body.totalNotDeletedComments).to.equal(0)
54 expect(body.data).to.be.an('array')
55 expect(body.data).to.have.lengthOf(0)
f1273314 56 })
d3ea8975 57
f1273314
C
58 it('Should create a thread in this video', async function () {
59 const text = 'my super first comment'
60
12edc149 61 const comment = await command.createThread({ videoId: videoUUID, text })
f1273314
C
62
63 expect(comment.inReplyToCommentId).to.be.null
64 expect(comment.text).equal('my super first comment')
65 expect(comment.videoId).to.equal(videoId)
66 expect(comment.id).to.equal(comment.threadId)
67 expect(comment.account.name).to.equal('root')
2732eeff
C
68 expect(comment.account.host).to.equal(server.host)
69 expect(comment.account.url).to.equal(server.url + '/accounts/root')
f1273314
C
70 expect(comment.totalReplies).to.equal(0)
71 expect(comment.totalRepliesFromVideoAuthor).to.equal(0)
72 expect(dateIsValid(comment.createdAt as string)).to.be.true
73 expect(dateIsValid(comment.updatedAt as string)).to.be.true
74 })
d3ea8975 75
f1273314 76 it('Should list threads of this video', async function () {
12edc149 77 const body = await command.listThreads({ videoId: videoUUID })
d3ea8975 78
12edc149
C
79 expect(body.total).to.equal(1)
80 expect(body.totalNotDeletedComments).to.equal(1)
81 expect(body.data).to.be.an('array')
82 expect(body.data).to.have.lengthOf(1)
cf117aaa 83
12edc149 84 const comment = body.data[0]
f1273314
C
85 expect(comment.inReplyToCommentId).to.be.null
86 expect(comment.text).equal('my super first comment')
87 expect(comment.videoId).to.equal(videoId)
88 expect(comment.id).to.equal(comment.threadId)
89 expect(comment.account.name).to.equal('root')
2732eeff 90 expect(comment.account.host).to.equal(server.host)
cf117aaa 91
d0800f76 92 for (const avatar of comment.account.avatars) {
93 await testImage(server.url, `avatar-resized-${avatar.width}x${avatar.width}`, avatar.path, '.png')
94 }
d3ea8975 95
f1273314
C
96 expect(comment.totalReplies).to.equal(0)
97 expect(comment.totalRepliesFromVideoAuthor).to.equal(0)
98 expect(dateIsValid(comment.createdAt as string)).to.be.true
99 expect(dateIsValid(comment.updatedAt as string)).to.be.true
d3ea8975 100
f1273314
C
101 threadId = comment.threadId
102 })
d3ea8975 103
f1273314 104 it('Should get all the thread created', async function () {
12edc149 105 const body = await command.getThread({ videoId: videoUUID, threadId })
d3ea8975 106
12edc149 107 const rootComment = body.comment
f1273314
C
108 expect(rootComment.inReplyToCommentId).to.be.null
109 expect(rootComment.text).equal('my super first comment')
110 expect(rootComment.videoId).to.equal(videoId)
111 expect(dateIsValid(rootComment.createdAt as string)).to.be.true
112 expect(dateIsValid(rootComment.updatedAt as string)).to.be.true
113 })
d3ea8975 114
f1273314
C
115 it('Should create multiple replies in this thread', async function () {
116 const text1 = 'my super answer to thread 1'
12edc149
C
117 const created = await command.addReply({ videoId, toCommentId: threadId, text: text1 })
118 const childCommentId = created.id
d3ea8975 119
f1273314 120 const text2 = 'my super answer to answer of thread 1'
12edc149 121 await command.addReply({ videoId, toCommentId: childCommentId, text: text2 })
d3ea8975 122
f1273314 123 const text3 = 'my second answer to thread 1'
12edc149 124 await command.addReply({ videoId, toCommentId: threadId, text: text3 })
f1273314 125 })
d3ea8975 126
f1273314 127 it('Should get correctly the replies', async function () {
12edc149 128 const tree = await command.getThread({ videoId: videoUUID, threadId })
d3ea8975 129
f1273314
C
130 expect(tree.comment.text).equal('my super first comment')
131 expect(tree.children).to.have.lengthOf(2)
d3ea8975 132
f1273314
C
133 const firstChild = tree.children[0]
134 expect(firstChild.comment.text).to.equal('my super answer to thread 1')
135 expect(firstChild.children).to.have.lengthOf(1)
d3ea8975 136
f1273314
C
137 const childOfFirstChild = firstChild.children[0]
138 expect(childOfFirstChild.comment.text).to.equal('my super answer to answer of thread 1')
139 expect(childOfFirstChild.children).to.have.lengthOf(0)
d3ea8975 140
f1273314
C
141 const secondChild = tree.children[1]
142 expect(secondChild.comment.text).to.equal('my second answer to thread 1')
143 expect(secondChild.children).to.have.lengthOf(0)
4cb6d457 144
f1273314
C
145 replyToDeleteId = secondChild.comment.id
146 })
d3ea8975 147
f1273314
C
148 it('Should create other threads', async function () {
149 const text1 = 'super thread 2'
12edc149 150 await command.createThread({ videoId: videoUUID, text: text1 })
d3ea8975 151
f1273314 152 const text2 = 'super thread 3'
12edc149 153 await command.createThread({ videoId: videoUUID, text: text2 })
f1273314 154 })
d3ea8975 155
f1273314 156 it('Should list the threads', async function () {
12edc149
C
157 const body = await command.listThreads({ videoId: videoUUID, sort: 'createdAt' })
158
159 expect(body.total).to.equal(3)
160 expect(body.totalNotDeletedComments).to.equal(6)
161 expect(body.data).to.be.an('array')
162 expect(body.data).to.have.lengthOf(3)
163
164 expect(body.data[0].text).to.equal('my super first comment')
165 expect(body.data[0].totalReplies).to.equal(3)
166 expect(body.data[1].text).to.equal('super thread 2')
167 expect(body.data[1].totalReplies).to.equal(0)
168 expect(body.data[2].text).to.equal('super thread 3')
169 expect(body.data[2].totalReplies).to.equal(0)
f1273314 170 })
d3ea8975 171
0b96a0fb
C
172 it('Should list the and sort them by total replies', async function () {
173 const body = await command.listThreads({ videoId: videoUUID, sort: 'totalReplies' })
174
175 expect(body.data[2].text).to.equal('my super first comment')
176 expect(body.data[2].totalReplies).to.equal(3)
177 })
178
f1273314 179 it('Should delete a reply', async function () {
12edc149 180 await command.delete({ videoId, commentId: replyToDeleteId })
4cb6d457 181
9d6b9d10 182 {
12edc149 183 const body = await command.listThreads({ videoId: videoUUID, sort: 'createdAt' })
4cb6d457 184
12edc149
C
185 expect(body.total).to.equal(3)
186 expect(body.totalNotDeletedComments).to.equal(5)
9d6b9d10 187 }
4cb6d457 188
9d6b9d10 189 {
12edc149 190 const tree = await command.getThread({ videoId: videoUUID, threadId })
4cb6d457 191
9d6b9d10
C
192 expect(tree.comment.text).equal('my super first comment')
193 expect(tree.children).to.have.lengthOf(2)
194
195 const firstChild = tree.children[0]
196 expect(firstChild.comment.text).to.equal('my super answer to thread 1')
197 expect(firstChild.children).to.have.lengthOf(1)
198
199 const childOfFirstChild = firstChild.children[0]
200 expect(childOfFirstChild.comment.text).to.equal('my super answer to answer of thread 1')
201 expect(childOfFirstChild.children).to.have.lengthOf(0)
69222afa 202
9d6b9d10
C
203 const deletedChildOfFirstChild = tree.children[1]
204 expect(deletedChildOfFirstChild.comment.text).to.equal('')
205 expect(deletedChildOfFirstChild.comment.isDeleted).to.be.true
206 expect(deletedChildOfFirstChild.comment.deletedAt).to.not.be.null
207 expect(deletedChildOfFirstChild.comment.account).to.be.null
208 expect(deletedChildOfFirstChild.children).to.have.lengthOf(0)
209 }
f1273314 210 })
4cb6d457 211
f1273314 212 it('Should delete a complete thread', async function () {
12edc149
C
213 await command.delete({ videoId, commentId: threadId })
214
215 const body = await command.listThreads({ videoId: videoUUID, sort: 'createdAt' })
216 expect(body.total).to.equal(3)
217 expect(body.data).to.be.an('array')
218 expect(body.data).to.have.lengthOf(3)
219
220 expect(body.data[0].text).to.equal('')
221 expect(body.data[0].isDeleted).to.be.true
222 expect(body.data[0].deletedAt).to.not.be.null
223 expect(body.data[0].account).to.be.null
224 expect(body.data[0].totalReplies).to.equal(2)
225 expect(body.data[1].text).to.equal('super thread 2')
226 expect(body.data[1].totalReplies).to.equal(0)
227 expect(body.data[2].text).to.equal('super thread 3')
228 expect(body.data[2].totalReplies).to.equal(0)
f1273314 229 })
4cb6d457 230
f1273314 231 it('Should count replies from the video author correctly', async function () {
12edc149
C
232 await command.createThread({ videoId: videoUUID, text: 'my super first comment' })
233
234 const { data } = await command.listThreads({ videoId: videoUUID })
235 const threadId2 = data[0].threadId
f1273314
C
236
237 const text2 = 'a first answer to thread 4 by a third party'
12edc149 238 await command.addReply({ token: userAccessTokenServer1, videoId, toCommentId: threadId2, text: text2 })
f1273314
C
239
240 const text3 = 'my second answer to thread 4'
12edc149 241 await command.addReply({ videoId, toCommentId: threadId2, text: text3 })
f1273314 242
12edc149 243 const tree = await command.getThread({ videoId: videoUUID, threadId: threadId2 })
cde3d90d
C
244 expect(tree.comment.totalRepliesFromVideoAuthor).to.equal(1)
245 expect(tree.comment.totalReplies).to.equal(2)
f1273314 246 })
4cb6d457
C
247 })
248
f1273314 249 describe('All instance comments', function () {
f1273314
C
250
251 it('Should list instance comments as admin', async function () {
a8749f7c
C
252 {
253 const { data, total } = await command.listForAdmin({ start: 0, count: 1 })
254
255 expect(total).to.equal(7)
256 expect(data).to.have.lengthOf(1)
257 expect(data[0].text).to.equal('my second answer to thread 4')
258 expect(data[0].account.name).to.equal('root')
259 expect(data[0].account.displayName).to.equal('root')
260 expect(data[0].account.avatars).to.have.lengthOf(2)
261 }
262
263 {
264 const { data, total } = await command.listForAdmin({ start: 1, count: 2 })
265
266 expect(total).to.equal(7)
267 expect(data).to.have.lengthOf(2)
f1273314 268
a8749f7c
C
269 expect(data[0].account.avatars).to.have.lengthOf(2)
270 expect(data[1].account.avatars).to.have.lengthOf(2)
271 }
f1273314
C
272 })
273
274 it('Should filter instance comments by isLocal', async function () {
12edc149 275 const { total, data } = await command.listForAdmin({ isLocal: false })
32c68d67 276
12edc149 277 expect(data).to.have.lengthOf(0)
f1273314
C
278 expect(total).to.equal(0)
279 })
280
0e6cd1c0
C
281 it('Should filter instance comments by onLocalVideo', async function () {
282 {
283 const { total, data } = await command.listForAdmin({ onLocalVideo: false })
284
285 expect(data).to.have.lengthOf(0)
286 expect(total).to.equal(0)
287 }
288
289 {
290 const { total, data } = await command.listForAdmin({ onLocalVideo: true })
291
292 expect(data).to.not.have.lengthOf(0)
293 expect(total).to.not.equal(0)
294 }
295 })
296
f1273314 297 it('Should search instance comments by account', async function () {
12edc149 298 const { total, data } = await command.listForAdmin({ searchAccount: 'user' })
f1273314 299
12edc149 300 expect(data).to.have.lengthOf(1)
f1273314
C
301 expect(total).to.equal(1)
302
12edc149 303 expect(data[0].text).to.equal('a first answer to thread 4 by a third party')
f1273314 304 })
32c68d67 305
f1273314
C
306 it('Should search instance comments by video', async function () {
307 {
12edc149 308 const { total, data } = await command.listForAdmin({ searchVideo: 'video' })
32c68d67 309
12edc149 310 expect(data).to.have.lengthOf(7)
f1273314
C
311 expect(total).to.equal(7)
312 }
32c68d67 313
f1273314 314 {
12edc149 315 const { total, data } = await command.listForAdmin({ searchVideo: 'hello' })
f1273314 316
12edc149 317 expect(data).to.have.lengthOf(0)
f1273314
C
318 expect(total).to.equal(0)
319 }
320 })
321
322 it('Should search instance comments', async function () {
12edc149 323 const { total, data } = await command.listForAdmin({ search: 'super thread 3' })
f1273314 324
f1273314 325 expect(total).to.equal(1)
12edc149
C
326
327 expect(data).to.have.lengthOf(1)
328 expect(data[0].text).to.equal('super thread 3')
f1273314 329 })
32c68d67
RK
330 })
331
7c3b7976
C
332 after(async function () {
333 await cleanupTests([ server ])
d3ea8975
C
334 })
335})