]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/videos/video-comments.ts
266824d5864937b3c79e7d0f415e241519b256af
[github/Chocobozzz/PeerTube.git] / server / tests / api / videos / video-comments.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import 'mocha'
4 import * as chai from 'chai'
5 import {
6 cleanupTests,
7 CommentsCommand,
8 dateIsValid,
9 flushAndRunServer,
10 ServerInfo,
11 setAccessTokensToServers,
12 testImage,
13 uploadVideo
14 } from '@shared/extra-utils'
15
16 const expect = chai.expect
17
18 describe('Test video comments', function () {
19 let server: ServerInfo
20 let videoId: number
21 let videoUUID: string
22 let threadId: number
23 let replyToDeleteId: number
24
25 let userAccessTokenServer1: string
26
27 let command: CommentsCommand
28
29 before(async function () {
30 this.timeout(30000)
31
32 server = await flushAndRunServer(1)
33
34 await setAccessTokensToServers([ server ])
35
36 const res = await uploadVideo(server.url, server.accessToken, {})
37 videoUUID = res.body.video.uuid
38 videoId = res.body.video.id
39
40 await server.usersCommand.updateMyAvatar({ fixture: 'avatar.png' })
41
42 userAccessTokenServer1 = await server.usersCommand.generateUserAndToken('user1')
43
44 command = server.commentsCommand
45 })
46
47 describe('User comments', function () {
48
49 it('Should not have threads on this video', async function () {
50 const body = await command.listThreads({ videoId: videoUUID })
51
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)
56 })
57
58 it('Should create a thread in this video', async function () {
59 const text = 'my super first comment'
60
61 const comment = await command.createThread({ videoId: videoUUID, text })
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 })
75
76 it('Should list threads of this video', async function () {
77 const body = await command.listThreads({ videoId: videoUUID })
78
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)
83
84 const comment = body.data[0]
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)
91
92 await testImage(server.url, 'avatar-resized', comment.account.avatar.path, '.png')
93
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
98
99 threadId = comment.threadId
100 })
101
102 it('Should get all the thread created', async function () {
103 const body = await command.getThread({ videoId: videoUUID, threadId })
104
105 const rootComment = body.comment
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 })
112
113 it('Should create multiple replies in this thread', async function () {
114 const text1 = 'my super answer to thread 1'
115 const created = await command.addReply({ videoId, toCommentId: threadId, text: text1 })
116 const childCommentId = created.id
117
118 const text2 = 'my super answer to answer of thread 1'
119 await command.addReply({ videoId, toCommentId: childCommentId, text: text2 })
120
121 const text3 = 'my second answer to thread 1'
122 await command.addReply({ videoId, toCommentId: threadId, text: text3 })
123 })
124
125 it('Should get correctly the replies', async function () {
126 const tree = await command.getThread({ videoId: videoUUID, threadId })
127
128 expect(tree.comment.text).equal('my super first comment')
129 expect(tree.children).to.have.lengthOf(2)
130
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)
134
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)
138
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)
142
143 replyToDeleteId = secondChild.comment.id
144 })
145
146 it('Should create other threads', async function () {
147 const text1 = 'super thread 2'
148 await command.createThread({ videoId: videoUUID, text: text1 })
149
150 const text2 = 'super thread 3'
151 await command.createThread({ videoId: videoUUID, text: text2 })
152 })
153
154 it('Should list the threads', async function () {
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)
168 })
169
170 it('Should delete a reply', async function () {
171 await command.delete({ videoId, commentId: replyToDeleteId })
172
173 {
174 const body = await command.listThreads({ videoId: videoUUID, sort: 'createdAt' })
175
176 expect(body.total).to.equal(3)
177 expect(body.totalNotDeletedComments).to.equal(5)
178 }
179
180 {
181 const tree = await command.getThread({ videoId: videoUUID, threadId })
182
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)
193
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 }
201 })
202
203 it('Should delete a complete thread', async function () {
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)
220 })
221
222 it('Should count replies from the video author correctly', async function () {
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
227
228 const text2 = 'a first answer to thread 4 by a third party'
229 await command.addReply({ token: userAccessTokenServer1, videoId, toCommentId: threadId2, text: text2 })
230
231 const text3 = 'my second answer to thread 4'
232 await command.addReply({ videoId, toCommentId: threadId2, text: text3 })
233
234 const tree = await command.getThread({ videoId: videoUUID, threadId: threadId2 })
235 expect(tree.comment.totalReplies).to.equal(tree.comment.totalRepliesFromVideoAuthor + 1)
236 })
237 })
238
239 describe('All instance comments', function () {
240
241 it('Should list instance comments as admin', async function () {
242 const { data } = await command.listForAdmin({ start: 0, count: 1 })
243
244 expect(data[0].text).to.equal('my second answer to thread 4')
245 })
246
247 it('Should filter instance comments by isLocal', async function () {
248 const { total, data } = await command.listForAdmin({ isLocal: false })
249
250 expect(data).to.have.lengthOf(0)
251 expect(total).to.equal(0)
252 })
253
254 it('Should search instance comments by account', async function () {
255 const { total, data } = await command.listForAdmin({ searchAccount: 'user' })
256
257 expect(data).to.have.lengthOf(1)
258 expect(total).to.equal(1)
259
260 expect(data[0].text).to.equal('a first answer to thread 4 by a third party')
261 })
262
263 it('Should search instance comments by video', async function () {
264 {
265 const { total, data } = await command.listForAdmin({ searchVideo: 'video' })
266
267 expect(data).to.have.lengthOf(7)
268 expect(total).to.equal(7)
269 }
270
271 {
272 const { total, data } = await command.listForAdmin({ searchVideo: 'hello' })
273
274 expect(data).to.have.lengthOf(0)
275 expect(total).to.equal(0)
276 }
277 })
278
279 it('Should search instance comments', async function () {
280 const { total, data } = await command.listForAdmin({ search: 'super thread 3' })
281
282 expect(total).to.equal(1)
283
284 expect(data).to.have.lengthOf(1)
285 expect(data[0].text).to.equal('super thread 3')
286 })
287 })
288
289 after(async function () {
290 await cleanupTests([ server ])
291 })
292 })