aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/videos/video-comments.ts
blob: d6e07c5b3945dbba0d31dc603a709202fef87e40 (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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/* tslint:disable:no-unused-expression */

import * as chai from 'chai'
import 'mocha'
import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model'
import { testImage } from '../../utils'
import {
  dateIsValid,
  flushTests,
  killallServers,
  runServer,
  ServerInfo,
  setAccessTokensToServers,
  updateMyAvatar,
  uploadVideo
} from '../../utils/index'
import {
  addVideoCommentReply,
  addVideoCommentThread,
  deleteVideoComment,
  getVideoCommentThreads,
  getVideoThreadComments
} from '../../utils/videos/video-comments'

const expect = chai.expect

describe('Test video comments', function () {
  let server: ServerInfo
  let videoId
  let videoUUID
  let threadId
  let replyToDeleteId: number

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

    await flushTests()

    server = await runServer(1)

    await setAccessTokensToServers([ server ])

    const res = await uploadVideo(server.url, server.accessToken, {})
    videoUUID = res.body.video.uuid
    videoId = res.body.video.id

    await updateMyAvatar({
      url: server.url,
      accessToken: server.accessToken,
      fixture: 'avatar.png'
    })
  })

  it('Should not have threads on this video', async function () {
    const res = await getVideoCommentThreads(server.url, videoUUID, 0, 5)

    expect(res.body.total).to.equal(0)
    expect(res.body.data).to.be.an('array')
    expect(res.body.data).to.have.lengthOf(0)
  })

  it('Should create a thread in this video', async function () {
    const text = 'my super first comment'

    const res = await addVideoCommentThread(server.url, server.accessToken, videoUUID, text)
    const comment = res.body.comment

    expect(comment.inReplyToCommentId).to.be.null
    expect(comment.text).equal('my super first comment')
    expect(comment.videoId).to.equal(videoId)
    expect(comment.id).to.equal(comment.threadId)
    expect(comment.account.name).to.equal('root')
    expect(comment.account.host).to.equal('localhost:9001')
    expect(comment.account.url).to.equal('http://localhost:9001/accounts/root')
    expect(comment.totalReplies).to.equal(0)
    expect(dateIsValid(comment.createdAt as string)).to.be.true
    expect(dateIsValid(comment.updatedAt as string)).to.be.true
  })

  it('Should list threads of this video', async function () {
    const res = await getVideoCommentThreads(server.url, videoUUID, 0, 5)

    expect(res.body.total).to.equal(1)
    expect(res.body.data).to.be.an('array')
    expect(res.body.data).to.have.lengthOf(1)

    const comment: VideoComment = res.body.data[0]
    expect(comment.inReplyToCommentId).to.be.null
    expect(comment.text).equal('my super first comment')
    expect(comment.videoId).to.equal(videoId)
    expect(comment.id).to.equal(comment.threadId)
    expect(comment.account.name).to.equal('root')
    expect(comment.account.host).to.equal('localhost:9001')

    await testImage(server.url, 'avatar-resized', comment.account.avatar.path, '.png')

    expect(comment.totalReplies).to.equal(0)
    expect(dateIsValid(comment.createdAt as string)).to.be.true
    expect(dateIsValid(comment.updatedAt as string)).to.be.true

    threadId = comment.threadId
  })

  it('Should get all the thread created', async function () {
    const res = await getVideoThreadComments(server.url, videoUUID, threadId)

    const rootComment = res.body.comment
    expect(rootComment.inReplyToCommentId).to.be.null
    expect(rootComment.text).equal('my super first comment')
    expect(rootComment.videoId).to.equal(videoId)
    expect(dateIsValid(rootComment.createdAt as string)).to.be.true
    expect(dateIsValid(rootComment.updatedAt as string)).to.be.true
  })

  it('Should create multiple replies in this thread', async function () {
    const text1 = 'my super answer to thread 1'
    const childCommentRes = await addVideoCommentReply(server.url, server.accessToken, videoId, threadId, text1)
    const childCommentId = childCommentRes.body.comment.id

    const text2 = 'my super answer to answer of thread 1'
    await addVideoCommentReply(server.url, server.accessToken, videoId, childCommentId, text2)

    const text3 = 'my second answer to thread 1'
    await addVideoCommentReply(server.url, server.accessToken, videoId, threadId, text3)
  })

  it('Should get correctly the replies', async function () {
    const res = await getVideoThreadComments(server.url, videoUUID, threadId)

    const tree: VideoCommentThreadTree = res.body
    expect(tree.comment.text).equal('my super first comment')
    expect(tree.children).to.have.lengthOf(2)

    const firstChild = tree.children[0]
    expect(firstChild.comment.text).to.equal('my super answer to thread 1')
    expect(firstChild.children).to.have.lengthOf(1)

    const childOfFirstChild = firstChild.children[0]
    expect(childOfFirstChild.comment.text).to.equal('my super answer to answer of thread 1')
    expect(childOfFirstChild.children).to.have.lengthOf(0)

    const secondChild = tree.children[1]
    expect(secondChild.comment.text).to.equal('my second answer to thread 1')
    expect(secondChild.children).to.have.lengthOf(0)

    replyToDeleteId = secondChild.comment.id
  })

  it('Should create other threads', async function () {
    const text1 = 'super thread 2'
    await addVideoCommentThread(server.url, server.accessToken, videoUUID, text1)

    const text2 = 'super thread 3'
    await addVideoCommentThread(server.url, server.accessToken, videoUUID, text2)
  })

  it('Should list the threads', async function () {
    const res = await getVideoCommentThreads(server.url, videoUUID, 0, 5, 'createdAt')

    expect(res.body.total).to.equal(3)
    expect(res.body.data).to.be.an('array')
    expect(res.body.data).to.have.lengthOf(3)

    expect(res.body.data[0].text).to.equal('my super first comment')
    expect(res.body.data[0].totalReplies).to.equal(3)
    expect(res.body.data[1].text).to.equal('super thread 2')
    expect(res.body.data[1].totalReplies).to.equal(0)
    expect(res.body.data[2].text).to.equal('super thread 3')
    expect(res.body.data[2].totalReplies).to.equal(0)
  })

  it('Should delete a reply', async function () {
    await deleteVideoComment(server.url, server.accessToken, videoId, replyToDeleteId)

    const res = await getVideoThreadComments(server.url, videoUUID, threadId)

    const tree: VideoCommentThreadTree = res.body
    expect(tree.comment.text).equal('my super first comment')
    expect(tree.children).to.have.lengthOf(1)

    const firstChild = tree.children[0]
    expect(firstChild.comment.text).to.equal('my super answer to thread 1')
    expect(firstChild.children).to.have.lengthOf(1)

    const childOfFirstChild = firstChild.children[0]
    expect(childOfFirstChild.comment.text).to.equal('my super answer to answer of thread 1')
    expect(childOfFirstChild.children).to.have.lengthOf(0)
  })

  it('Should delete a complete thread', async function () {
    await deleteVideoComment(server.url, server.accessToken, videoId, threadId)

    const res = await getVideoCommentThreads(server.url, videoUUID, 0, 5, 'createdAt')
    expect(res.body.total).to.equal(2)
    expect(res.body.data).to.be.an('array')
    expect(res.body.data).to.have.lengthOf(2)

    expect(res.body.data[0].text).to.equal('super thread 2')
    expect(res.body.data[0].totalReplies).to.equal(0)
    expect(res.body.data[1].text).to.equal('super thread 3')
    expect(res.body.data[1].totalReplies).to.equal(0)
  })

  after(async function () {
    killallServers([ server ])
  })
})