]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/videos/video-comments.ts
Fix CI using 127.0.0.1 for tests
[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')
12edc149 41
89d241a7 42 command = server.comments
d3ea8975
C
43 })
44
f1273314 45 describe('User comments', function () {
d3ea8975 46
f1273314 47 it('Should not have threads on this video', async function () {
12edc149 48 const body = await command.listThreads({ videoId: videoUUID })
d3ea8975 49
12edc149
C
50 expect(body.total).to.equal(0)
51 expect(body.totalNotDeletedComments).to.equal(0)
52 expect(body.data).to.be.an('array')
53 expect(body.data).to.have.lengthOf(0)
f1273314 54 })
d3ea8975 55
f1273314
C
56 it('Should create a thread in this video', async function () {
57 const text = 'my super first comment'
58
12edc149 59 const comment = await command.createThread({ videoId: videoUUID, text })
f1273314
C
60
61 expect(comment.inReplyToCommentId).to.be.null
62 expect(comment.text).equal('my super first comment')
63 expect(comment.videoId).to.equal(videoId)
64 expect(comment.id).to.equal(comment.threadId)
65 expect(comment.account.name).to.equal('root')
2732eeff
C
66 expect(comment.account.host).to.equal(server.host)
67 expect(comment.account.url).to.equal(server.url + '/accounts/root')
f1273314
C
68 expect(comment.totalReplies).to.equal(0)
69 expect(comment.totalRepliesFromVideoAuthor).to.equal(0)
70 expect(dateIsValid(comment.createdAt as string)).to.be.true
71 expect(dateIsValid(comment.updatedAt as string)).to.be.true
72 })
d3ea8975 73
f1273314 74 it('Should list threads of this video', async function () {
12edc149 75 const body = await command.listThreads({ videoId: videoUUID })
d3ea8975 76
12edc149
C
77 expect(body.total).to.equal(1)
78 expect(body.totalNotDeletedComments).to.equal(1)
79 expect(body.data).to.be.an('array')
80 expect(body.data).to.have.lengthOf(1)
cf117aaa 81
12edc149 82 const comment = body.data[0]
f1273314
C
83 expect(comment.inReplyToCommentId).to.be.null
84 expect(comment.text).equal('my super first comment')
85 expect(comment.videoId).to.equal(videoId)
86 expect(comment.id).to.equal(comment.threadId)
87 expect(comment.account.name).to.equal('root')
2732eeff 88 expect(comment.account.host).to.equal(server.host)
cf117aaa 89
d0800f76 90 for (const avatar of comment.account.avatars) {
91 await testImage(server.url, `avatar-resized-${avatar.width}x${avatar.width}`, avatar.path, '.png')
92 }
d3ea8975 93
f1273314
C
94 expect(comment.totalReplies).to.equal(0)
95 expect(comment.totalRepliesFromVideoAuthor).to.equal(0)
96 expect(dateIsValid(comment.createdAt as string)).to.be.true
97 expect(dateIsValid(comment.updatedAt as string)).to.be.true
d3ea8975 98
f1273314
C
99 threadId = comment.threadId
100 })
d3ea8975 101
f1273314 102 it('Should get all the thread created', async function () {
12edc149 103 const body = await command.getThread({ videoId: videoUUID, threadId })
d3ea8975 104
12edc149 105 const rootComment = body.comment
f1273314
C
106 expect(rootComment.inReplyToCommentId).to.be.null
107 expect(rootComment.text).equal('my super first comment')
108 expect(rootComment.videoId).to.equal(videoId)
109 expect(dateIsValid(rootComment.createdAt as string)).to.be.true
110 expect(dateIsValid(rootComment.updatedAt as string)).to.be.true
111 })
d3ea8975 112
f1273314
C
113 it('Should create multiple replies in this thread', async function () {
114 const text1 = 'my super answer to thread 1'
12edc149
C
115 const created = await command.addReply({ videoId, toCommentId: threadId, text: text1 })
116 const childCommentId = created.id
d3ea8975 117
f1273314 118 const text2 = 'my super answer to answer of thread 1'
12edc149 119 await command.addReply({ videoId, toCommentId: childCommentId, text: text2 })
d3ea8975 120
f1273314 121 const text3 = 'my second answer to thread 1'
12edc149 122 await command.addReply({ videoId, toCommentId: threadId, text: text3 })
f1273314 123 })
d3ea8975 124
f1273314 125 it('Should get correctly the replies', async function () {
12edc149 126 const tree = await command.getThread({ videoId: videoUUID, threadId })
d3ea8975 127
f1273314
C
128 expect(tree.comment.text).equal('my super first comment')
129 expect(tree.children).to.have.lengthOf(2)
d3ea8975 130
f1273314
C
131 const firstChild = tree.children[0]
132 expect(firstChild.comment.text).to.equal('my super answer to thread 1')
133 expect(firstChild.children).to.have.lengthOf(1)
d3ea8975 134
f1273314
C
135 const childOfFirstChild = firstChild.children[0]
136 expect(childOfFirstChild.comment.text).to.equal('my super answer to answer of thread 1')
137 expect(childOfFirstChild.children).to.have.lengthOf(0)
d3ea8975 138
f1273314
C
139 const secondChild = tree.children[1]
140 expect(secondChild.comment.text).to.equal('my second answer to thread 1')
141 expect(secondChild.children).to.have.lengthOf(0)
4cb6d457 142
f1273314
C
143 replyToDeleteId = secondChild.comment.id
144 })
d3ea8975 145
f1273314
C
146 it('Should create other threads', async function () {
147 const text1 = 'super thread 2'
12edc149 148 await command.createThread({ videoId: videoUUID, text: text1 })
d3ea8975 149
f1273314 150 const text2 = 'super thread 3'
12edc149 151 await command.createThread({ videoId: videoUUID, text: text2 })
f1273314 152 })
d3ea8975 153
f1273314 154 it('Should list the threads', async function () {
12edc149
C
155 const body = await command.listThreads({ videoId: videoUUID, sort: 'createdAt' })
156
157 expect(body.total).to.equal(3)
158 expect(body.totalNotDeletedComments).to.equal(6)
159 expect(body.data).to.be.an('array')
160 expect(body.data).to.have.lengthOf(3)
161
162 expect(body.data[0].text).to.equal('my super first comment')
163 expect(body.data[0].totalReplies).to.equal(3)
164 expect(body.data[1].text).to.equal('super thread 2')
165 expect(body.data[1].totalReplies).to.equal(0)
166 expect(body.data[2].text).to.equal('super thread 3')
167 expect(body.data[2].totalReplies).to.equal(0)
f1273314 168 })
d3ea8975 169
f1273314 170 it('Should delete a reply', async function () {
12edc149 171 await command.delete({ videoId, commentId: replyToDeleteId })
4cb6d457 172
9d6b9d10 173 {
12edc149 174 const body = await command.listThreads({ videoId: videoUUID, sort: 'createdAt' })
4cb6d457 175
12edc149
C
176 expect(body.total).to.equal(3)
177 expect(body.totalNotDeletedComments).to.equal(5)
9d6b9d10 178 }
4cb6d457 179
9d6b9d10 180 {
12edc149 181 const tree = await command.getThread({ videoId: videoUUID, threadId })
4cb6d457 182
9d6b9d10
C
183 expect(tree.comment.text).equal('my super first comment')
184 expect(tree.children).to.have.lengthOf(2)
185
186 const firstChild = tree.children[0]
187 expect(firstChild.comment.text).to.equal('my super answer to thread 1')
188 expect(firstChild.children).to.have.lengthOf(1)
189
190 const childOfFirstChild = firstChild.children[0]
191 expect(childOfFirstChild.comment.text).to.equal('my super answer to answer of thread 1')
192 expect(childOfFirstChild.children).to.have.lengthOf(0)
69222afa 193
9d6b9d10
C
194 const deletedChildOfFirstChild = tree.children[1]
195 expect(deletedChildOfFirstChild.comment.text).to.equal('')
196 expect(deletedChildOfFirstChild.comment.isDeleted).to.be.true
197 expect(deletedChildOfFirstChild.comment.deletedAt).to.not.be.null
198 expect(deletedChildOfFirstChild.comment.account).to.be.null
199 expect(deletedChildOfFirstChild.children).to.have.lengthOf(0)
200 }
f1273314 201 })
4cb6d457 202
f1273314 203 it('Should delete a complete thread', async function () {
12edc149
C
204 await command.delete({ videoId, commentId: threadId })
205
206 const body = await command.listThreads({ videoId: videoUUID, sort: 'createdAt' })
207 expect(body.total).to.equal(3)
208 expect(body.data).to.be.an('array')
209 expect(body.data).to.have.lengthOf(3)
210
211 expect(body.data[0].text).to.equal('')
212 expect(body.data[0].isDeleted).to.be.true
213 expect(body.data[0].deletedAt).to.not.be.null
214 expect(body.data[0].account).to.be.null
215 expect(body.data[0].totalReplies).to.equal(2)
216 expect(body.data[1].text).to.equal('super thread 2')
217 expect(body.data[1].totalReplies).to.equal(0)
218 expect(body.data[2].text).to.equal('super thread 3')
219 expect(body.data[2].totalReplies).to.equal(0)
f1273314 220 })
4cb6d457 221
f1273314 222 it('Should count replies from the video author correctly', async function () {
12edc149
C
223 await command.createThread({ videoId: videoUUID, text: 'my super first comment' })
224
225 const { data } = await command.listThreads({ videoId: videoUUID })
226 const threadId2 = data[0].threadId
f1273314
C
227
228 const text2 = 'a first answer to thread 4 by a third party'
12edc149 229 await command.addReply({ token: userAccessTokenServer1, videoId, toCommentId: threadId2, text: text2 })
f1273314
C
230
231 const text3 = 'my second answer to thread 4'
12edc149 232 await command.addReply({ videoId, toCommentId: threadId2, text: text3 })
f1273314 233
12edc149 234 const tree = await command.getThread({ videoId: videoUUID, threadId: threadId2 })
f1273314
C
235 expect(tree.comment.totalReplies).to.equal(tree.comment.totalRepliesFromVideoAuthor + 1)
236 })
4cb6d457
C
237 })
238
f1273314 239 describe('All instance comments', function () {
f1273314
C
240
241 it('Should list instance comments as admin', async function () {
12edc149 242 const { data } = await command.listForAdmin({ start: 0, count: 1 })
f1273314 243
12edc149 244 expect(data[0].text).to.equal('my second answer to thread 4')
f1273314
C
245 })
246
247 it('Should filter instance comments by isLocal', async function () {
12edc149 248 const { total, data } = await command.listForAdmin({ isLocal: false })
32c68d67 249
12edc149 250 expect(data).to.have.lengthOf(0)
f1273314
C
251 expect(total).to.equal(0)
252 })
253
0e6cd1c0
C
254 it('Should filter instance comments by onLocalVideo', async function () {
255 {
256 const { total, data } = await command.listForAdmin({ onLocalVideo: false })
257
258 expect(data).to.have.lengthOf(0)
259 expect(total).to.equal(0)
260 }
261
262 {
263 const { total, data } = await command.listForAdmin({ onLocalVideo: true })
264
265 expect(data).to.not.have.lengthOf(0)
266 expect(total).to.not.equal(0)
267 }
268 })
269
f1273314 270 it('Should search instance comments by account', async function () {
12edc149 271 const { total, data } = await command.listForAdmin({ searchAccount: 'user' })
f1273314 272
12edc149 273 expect(data).to.have.lengthOf(1)
f1273314
C
274 expect(total).to.equal(1)
275
12edc149 276 expect(data[0].text).to.equal('a first answer to thread 4 by a third party')
f1273314 277 })
32c68d67 278
f1273314
C
279 it('Should search instance comments by video', async function () {
280 {
12edc149 281 const { total, data } = await command.listForAdmin({ searchVideo: 'video' })
32c68d67 282
12edc149 283 expect(data).to.have.lengthOf(7)
f1273314
C
284 expect(total).to.equal(7)
285 }
32c68d67 286
f1273314 287 {
12edc149 288 const { total, data } = await command.listForAdmin({ searchVideo: 'hello' })
f1273314 289
12edc149 290 expect(data).to.have.lengthOf(0)
f1273314
C
291 expect(total).to.equal(0)
292 }
293 })
294
295 it('Should search instance comments', async function () {
12edc149 296 const { total, data } = await command.listForAdmin({ search: 'super thread 3' })
f1273314 297
f1273314 298 expect(total).to.equal(1)
12edc149
C
299
300 expect(data).to.have.lengthOf(1)
301 expect(data[0].text).to.equal('super thread 3')
f1273314 302 })
32c68d67
RK
303 })
304
7c3b7976
C
305 after(async function () {
306 await cleanupTests([ server ])
d3ea8975
C
307 })
308})