]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/videos/video-comments.ts
We don't need to import mocha
[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
19149d45 3import * as chai 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
C
14
15const expect = chai.expect
16
e2e22e40 17describe('Test video comments', function () {
254d3579 18 let server: PeerTubeServer
12edc149
C
19 let videoId: number
20 let videoUUID: string
21 let threadId: number
4cb6d457 22 let replyToDeleteId: number
d3ea8975 23
32c68d67
RK
24 let userAccessTokenServer1: string
25
12edc149
C
26 let command: CommentsCommand
27
d3ea8975 28 before(async function () {
e212f887 29 this.timeout(30000)
d3ea8975 30
254d3579 31 server = await createSingleServer(1)
d3ea8975
C
32
33 await setAccessTokensToServers([ server ])
34
89d241a7 35 const { id, uuid } = await server.videos.upload()
d23dd9fb
C
36 videoUUID = uuid
37 videoId = id
cf117aaa 38
d0800f76 39 await setDefaultChannelAvatar(server)
40 await setDefaultAccountAvatar(server)
32c68d67 41
89d241a7 42 userAccessTokenServer1 = await server.users.generateUserAndToken('user1')
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')
68 expect(comment.account.host).to.equal('localhost:' + server.port)
69 expect(comment.account.url).to.equal('http://localhost:' + server.port + '/accounts/root')
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')
90 expect(comment.account.host).to.equal('localhost:' + server.port)
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
f1273314 172 it('Should delete a reply', async function () {
12edc149 173 await command.delete({ videoId, commentId: replyToDeleteId })
4cb6d457 174
9d6b9d10 175 {
12edc149 176 const body = await command.listThreads({ videoId: videoUUID, sort: 'createdAt' })
4cb6d457 177
12edc149
C
178 expect(body.total).to.equal(3)
179 expect(body.totalNotDeletedComments).to.equal(5)
9d6b9d10 180 }
4cb6d457 181
9d6b9d10 182 {
12edc149 183 const tree = await command.getThread({ videoId: videoUUID, threadId })
4cb6d457 184
9d6b9d10
C
185 expect(tree.comment.text).equal('my super first comment')
186 expect(tree.children).to.have.lengthOf(2)
187
188 const firstChild = tree.children[0]
189 expect(firstChild.comment.text).to.equal('my super answer to thread 1')
190 expect(firstChild.children).to.have.lengthOf(1)
191
192 const childOfFirstChild = firstChild.children[0]
193 expect(childOfFirstChild.comment.text).to.equal('my super answer to answer of thread 1')
194 expect(childOfFirstChild.children).to.have.lengthOf(0)
69222afa 195
9d6b9d10
C
196 const deletedChildOfFirstChild = tree.children[1]
197 expect(deletedChildOfFirstChild.comment.text).to.equal('')
198 expect(deletedChildOfFirstChild.comment.isDeleted).to.be.true
199 expect(deletedChildOfFirstChild.comment.deletedAt).to.not.be.null
200 expect(deletedChildOfFirstChild.comment.account).to.be.null
201 expect(deletedChildOfFirstChild.children).to.have.lengthOf(0)
202 }
f1273314 203 })
4cb6d457 204
f1273314 205 it('Should delete a complete thread', async function () {
12edc149
C
206 await command.delete({ videoId, commentId: threadId })
207
208 const body = await command.listThreads({ videoId: videoUUID, sort: 'createdAt' })
209 expect(body.total).to.equal(3)
210 expect(body.data).to.be.an('array')
211 expect(body.data).to.have.lengthOf(3)
212
213 expect(body.data[0].text).to.equal('')
214 expect(body.data[0].isDeleted).to.be.true
215 expect(body.data[0].deletedAt).to.not.be.null
216 expect(body.data[0].account).to.be.null
217 expect(body.data[0].totalReplies).to.equal(2)
218 expect(body.data[1].text).to.equal('super thread 2')
219 expect(body.data[1].totalReplies).to.equal(0)
220 expect(body.data[2].text).to.equal('super thread 3')
221 expect(body.data[2].totalReplies).to.equal(0)
f1273314 222 })
4cb6d457 223
f1273314 224 it('Should count replies from the video author correctly', async function () {
12edc149
C
225 await command.createThread({ videoId: videoUUID, text: 'my super first comment' })
226
227 const { data } = await command.listThreads({ videoId: videoUUID })
228 const threadId2 = data[0].threadId
f1273314
C
229
230 const text2 = 'a first answer to thread 4 by a third party'
12edc149 231 await command.addReply({ token: userAccessTokenServer1, videoId, toCommentId: threadId2, text: text2 })
f1273314
C
232
233 const text3 = 'my second answer to thread 4'
12edc149 234 await command.addReply({ videoId, toCommentId: threadId2, text: text3 })
f1273314 235
12edc149 236 const tree = await command.getThread({ videoId: videoUUID, threadId: threadId2 })
f1273314
C
237 expect(tree.comment.totalReplies).to.equal(tree.comment.totalRepliesFromVideoAuthor + 1)
238 })
4cb6d457
C
239 })
240
f1273314 241 describe('All instance comments', function () {
f1273314
C
242
243 it('Should list instance comments as admin', async function () {
12edc149 244 const { data } = await command.listForAdmin({ start: 0, count: 1 })
f1273314 245
12edc149 246 expect(data[0].text).to.equal('my second answer to thread 4')
f1273314
C
247 })
248
249 it('Should filter instance comments by isLocal', async function () {
12edc149 250 const { total, data } = await command.listForAdmin({ isLocal: false })
32c68d67 251
12edc149 252 expect(data).to.have.lengthOf(0)
f1273314
C
253 expect(total).to.equal(0)
254 })
255
0e6cd1c0
C
256 it('Should filter instance comments by onLocalVideo', async function () {
257 {
258 const { total, data } = await command.listForAdmin({ onLocalVideo: false })
259
260 expect(data).to.have.lengthOf(0)
261 expect(total).to.equal(0)
262 }
263
264 {
265 const { total, data } = await command.listForAdmin({ onLocalVideo: true })
266
267 expect(data).to.not.have.lengthOf(0)
268 expect(total).to.not.equal(0)
269 }
270 })
271
f1273314 272 it('Should search instance comments by account', async function () {
12edc149 273 const { total, data } = await command.listForAdmin({ searchAccount: 'user' })
f1273314 274
12edc149 275 expect(data).to.have.lengthOf(1)
f1273314
C
276 expect(total).to.equal(1)
277
12edc149 278 expect(data[0].text).to.equal('a first answer to thread 4 by a third party')
f1273314 279 })
32c68d67 280
f1273314
C
281 it('Should search instance comments by video', async function () {
282 {
12edc149 283 const { total, data } = await command.listForAdmin({ searchVideo: 'video' })
32c68d67 284
12edc149 285 expect(data).to.have.lengthOf(7)
f1273314
C
286 expect(total).to.equal(7)
287 }
32c68d67 288
f1273314 289 {
12edc149 290 const { total, data } = await command.listForAdmin({ searchVideo: 'hello' })
f1273314 291
12edc149 292 expect(data).to.have.lengthOf(0)
f1273314
C
293 expect(total).to.equal(0)
294 }
295 })
296
297 it('Should search instance comments', async function () {
12edc149 298 const { total, data } = await command.listForAdmin({ search: 'super thread 3' })
f1273314 299
f1273314 300 expect(total).to.equal(1)
12edc149
C
301
302 expect(data).to.have.lengthOf(1)
303 expect(data[0].text).to.equal('super thread 3')
f1273314 304 })
32c68d67
RK
305 })
306
7c3b7976
C
307 after(async function () {
308 await cleanupTests([ server ])
d3ea8975
C
309 })
310})