1
0
Fork 0
peertube/server/tests/api/videos/video-comments.ts

336 lines
12 KiB
TypeScript
Raw Normal View History

2020-01-31 15:56:52 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2017-12-22 11:10:40 +00:00
2022-08-17 13:44:32 +00:00
import { expect } from 'chai'
import { dateIsValid, testImage } from '@server/tests/shared'
import {
cleanupTests,
CommentsCommand,
createSingleServer,
PeerTubeServer,
setAccessTokensToServers,
setDefaultAccountAvatar,
setDefaultChannelAvatar
} from '@shared/server-commands'
2017-12-22 11:10:40 +00:00
2017-12-27 09:12:18 +00:00
describe('Test video comments', function () {
2021-07-16 07:47:51 +00:00
let server: PeerTubeServer
2021-07-09 12:15:11 +00:00
let videoId: number
let videoUUID: string
let threadId: number
2018-01-04 10:19:16 +00:00
let replyToDeleteId: number
2017-12-22 11:10:40 +00:00
2020-01-03 12:36:34 +00:00
let userAccessTokenServer1: string
2021-07-09 12:15:11 +00:00
let command: CommentsCommand
2017-12-22 11:10:40 +00:00
before(async function () {
2023-05-19 12:05:14 +00:00
this.timeout(120000)
2017-12-22 11:10:40 +00:00
2021-07-16 07:47:51 +00:00
server = await createSingleServer(1)
2017-12-22 11:10:40 +00:00
await setAccessTokensToServers([ server ])
2021-07-16 07:04:35 +00:00
const { id, uuid } = await server.videos.upload()
2021-07-15 08:02:54 +00:00
videoUUID = uuid
videoId = id
2018-01-03 16:25:47 +00:00
await setDefaultChannelAvatar(server)
await setDefaultAccountAvatar(server)
2020-01-03 12:36:34 +00:00
2021-07-16 07:04:35 +00:00
userAccessTokenServer1 = await server.users.generateUserAndToken('user1')
2023-01-10 08:16:33 +00:00
await setDefaultChannelAvatar(server, 'user1_channel')
await setDefaultAccountAvatar(server, userAccessTokenServer1)
2021-07-09 12:15:11 +00:00
2021-07-16 07:04:35 +00:00
command = server.comments
2017-12-22 11:10:40 +00:00
})
2020-11-16 10:55:17 +00:00
describe('User comments', function () {
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
it('Should not have threads on this video', async function () {
2021-07-09 12:15:11 +00:00
const body = await command.listThreads({ videoId: videoUUID })
2017-12-22 11:10:40 +00:00
2021-07-09 12:15:11 +00:00
expect(body.total).to.equal(0)
expect(body.totalNotDeletedComments).to.equal(0)
expect(body.data).to.be.an('array')
expect(body.data).to.have.lengthOf(0)
2020-11-16 10:55:17 +00:00
})
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
it('Should create a thread in this video', async function () {
const text = 'my super first comment'
2021-07-09 12:15:11 +00:00
const comment = await command.createThread({ videoId: videoUUID, text })
2020-11-16 10:55:17 +00:00
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')
2022-12-09 10:14:47 +00:00
expect(comment.account.host).to.equal(server.host)
expect(comment.account.url).to.equal(server.url + '/accounts/root')
2020-11-16 10:55:17 +00:00
expect(comment.totalReplies).to.equal(0)
expect(comment.totalRepliesFromVideoAuthor).to.equal(0)
expect(dateIsValid(comment.createdAt as string)).to.be.true
expect(dateIsValid(comment.updatedAt as string)).to.be.true
})
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
it('Should list threads of this video', async function () {
2021-07-09 12:15:11 +00:00
const body = await command.listThreads({ videoId: videoUUID })
2017-12-22 11:10:40 +00:00
2021-07-09 12:15:11 +00:00
expect(body.total).to.equal(1)
expect(body.totalNotDeletedComments).to.equal(1)
expect(body.data).to.be.an('array')
expect(body.data).to.have.lengthOf(1)
2018-01-03 16:25:47 +00:00
2021-07-09 12:15:11 +00:00
const comment = body.data[0]
2020-11-16 10:55:17 +00:00
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')
2022-12-09 10:14:47 +00:00
expect(comment.account.host).to.equal(server.host)
2018-01-03 16:25:47 +00:00
for (const avatar of comment.account.avatars) {
await testImage(server.url, `avatar-resized-${avatar.width}x${avatar.width}`, avatar.path, '.png')
}
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
expect(comment.totalReplies).to.equal(0)
expect(comment.totalRepliesFromVideoAuthor).to.equal(0)
expect(dateIsValid(comment.createdAt as string)).to.be.true
expect(dateIsValid(comment.updatedAt as string)).to.be.true
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
threadId = comment.threadId
})
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
it('Should get all the thread created', async function () {
2021-07-09 12:15:11 +00:00
const body = await command.getThread({ videoId: videoUUID, threadId })
2017-12-22 11:10:40 +00:00
2021-07-09 12:15:11 +00:00
const rootComment = body.comment
2020-11-16 10:55:17 +00:00
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
})
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
it('Should create multiple replies in this thread', async function () {
const text1 = 'my super answer to thread 1'
2021-07-09 12:15:11 +00:00
const created = await command.addReply({ videoId, toCommentId: threadId, text: text1 })
const childCommentId = created.id
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
const text2 = 'my super answer to answer of thread 1'
2021-07-09 12:15:11 +00:00
await command.addReply({ videoId, toCommentId: childCommentId, text: text2 })
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
const text3 = 'my second answer to thread 1'
2021-07-09 12:15:11 +00:00
await command.addReply({ videoId, toCommentId: threadId, text: text3 })
2020-11-16 10:55:17 +00:00
})
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
it('Should get correctly the replies', async function () {
2021-07-09 12:15:11 +00:00
const tree = await command.getThread({ videoId: videoUUID, threadId })
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
expect(tree.comment.text).equal('my super first comment')
expect(tree.children).to.have.lengthOf(2)
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
const firstChild = tree.children[0]
expect(firstChild.comment.text).to.equal('my super answer to thread 1')
expect(firstChild.children).to.have.lengthOf(1)
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
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)
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
const secondChild = tree.children[1]
expect(secondChild.comment.text).to.equal('my second answer to thread 1')
expect(secondChild.children).to.have.lengthOf(0)
2018-01-04 10:19:16 +00:00
2020-11-16 10:55:17 +00:00
replyToDeleteId = secondChild.comment.id
})
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
it('Should create other threads', async function () {
const text1 = 'super thread 2'
2021-07-09 12:15:11 +00:00
await command.createThread({ videoId: videoUUID, text: text1 })
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
const text2 = 'super thread 3'
2021-07-09 12:15:11 +00:00
await command.createThread({ videoId: videoUUID, text: text2 })
2020-11-16 10:55:17 +00:00
})
2017-12-22 11:10:40 +00:00
2020-11-16 10:55:17 +00:00
it('Should list the threads', async function () {
2021-07-09 12:15:11 +00:00
const body = await command.listThreads({ videoId: videoUUID, sort: 'createdAt' })
expect(body.total).to.equal(3)
expect(body.totalNotDeletedComments).to.equal(6)
expect(body.data).to.be.an('array')
expect(body.data).to.have.lengthOf(3)
expect(body.data[0].text).to.equal('my super first comment')
expect(body.data[0].totalReplies).to.equal(3)
expect(body.data[1].text).to.equal('super thread 2')
expect(body.data[1].totalReplies).to.equal(0)
expect(body.data[2].text).to.equal('super thread 3')
expect(body.data[2].totalReplies).to.equal(0)
2020-11-16 10:55:17 +00:00
})
2017-12-22 11:10:40 +00:00
2023-01-12 10:11:30 +00:00
it('Should list the and sort them by total replies', async function () {
const body = await command.listThreads({ videoId: videoUUID, sort: 'totalReplies' })
expect(body.data[2].text).to.equal('my super first comment')
expect(body.data[2].totalReplies).to.equal(3)
})
2020-11-16 10:55:17 +00:00
it('Should delete a reply', async function () {
2021-07-09 12:15:11 +00:00
await command.delete({ videoId, commentId: replyToDeleteId })
2018-01-04 10:19:16 +00:00
{
2021-07-09 12:15:11 +00:00
const body = await command.listThreads({ videoId: videoUUID, sort: 'createdAt' })
2018-01-04 10:19:16 +00:00
2021-07-09 12:15:11 +00:00
expect(body.total).to.equal(3)
expect(body.totalNotDeletedComments).to.equal(5)
}
2018-01-04 10:19:16 +00:00
{
2021-07-09 12:15:11 +00:00
const tree = await command.getThread({ videoId: videoUUID, threadId })
2018-01-04 10:19:16 +00:00
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 deletedChildOfFirstChild = tree.children[1]
expect(deletedChildOfFirstChild.comment.text).to.equal('')
expect(deletedChildOfFirstChild.comment.isDeleted).to.be.true
expect(deletedChildOfFirstChild.comment.deletedAt).to.not.be.null
expect(deletedChildOfFirstChild.comment.account).to.be.null
expect(deletedChildOfFirstChild.children).to.have.lengthOf(0)
}
2020-11-16 10:55:17 +00:00
})
2018-01-04 10:19:16 +00:00
2020-11-16 10:55:17 +00:00
it('Should delete a complete thread', async function () {
2021-07-09 12:15:11 +00:00
await command.delete({ videoId, commentId: threadId })
const body = await command.listThreads({ videoId: videoUUID, sort: 'createdAt' })
expect(body.total).to.equal(3)
expect(body.data).to.be.an('array')
expect(body.data).to.have.lengthOf(3)
expect(body.data[0].text).to.equal('')
expect(body.data[0].isDeleted).to.be.true
expect(body.data[0].deletedAt).to.not.be.null
expect(body.data[0].account).to.be.null
expect(body.data[0].totalReplies).to.equal(2)
expect(body.data[1].text).to.equal('super thread 2')
expect(body.data[1].totalReplies).to.equal(0)
expect(body.data[2].text).to.equal('super thread 3')
expect(body.data[2].totalReplies).to.equal(0)
2020-11-16 10:55:17 +00:00
})
2018-01-04 10:19:16 +00:00
2020-11-16 10:55:17 +00:00
it('Should count replies from the video author correctly', async function () {
2021-07-09 12:15:11 +00:00
await command.createThread({ videoId: videoUUID, text: 'my super first comment' })
const { data } = await command.listThreads({ videoId: videoUUID })
const threadId2 = data[0].threadId
2020-11-16 10:55:17 +00:00
const text2 = 'a first answer to thread 4 by a third party'
2021-07-09 12:15:11 +00:00
await command.addReply({ token: userAccessTokenServer1, videoId, toCommentId: threadId2, text: text2 })
2020-11-16 10:55:17 +00:00
const text3 = 'my second answer to thread 4'
2021-07-09 12:15:11 +00:00
await command.addReply({ videoId, toCommentId: threadId2, text: text3 })
2020-11-16 10:55:17 +00:00
2021-07-09 12:15:11 +00:00
const tree = await command.getThread({ videoId: videoUUID, threadId: threadId2 })
2023-01-05 14:31:51 +00:00
expect(tree.comment.totalRepliesFromVideoAuthor).to.equal(1)
expect(tree.comment.totalReplies).to.equal(2)
2020-11-16 10:55:17 +00:00
})
2018-01-04 10:19:16 +00:00
})
2020-11-16 10:55:17 +00:00
describe('All instance comments', function () {
it('Should list instance comments as admin', async function () {
2023-01-10 08:16:33 +00:00
{
const { data, total } = await command.listForAdmin({ start: 0, count: 1 })
expect(total).to.equal(7)
expect(data).to.have.lengthOf(1)
expect(data[0].text).to.equal('my second answer to thread 4')
expect(data[0].account.name).to.equal('root')
expect(data[0].account.displayName).to.equal('root')
expect(data[0].account.avatars).to.have.lengthOf(2)
}
{
const { data, total } = await command.listForAdmin({ start: 1, count: 2 })
expect(total).to.equal(7)
expect(data).to.have.lengthOf(2)
2020-11-16 10:55:17 +00:00
2023-01-10 08:16:33 +00:00
expect(data[0].account.avatars).to.have.lengthOf(2)
expect(data[1].account.avatars).to.have.lengthOf(2)
}
2020-11-16 10:55:17 +00:00
})
it('Should filter instance comments by isLocal', async function () {
2021-07-09 12:15:11 +00:00
const { total, data } = await command.listForAdmin({ isLocal: false })
2020-01-03 12:36:34 +00:00
2021-07-09 12:15:11 +00:00
expect(data).to.have.lengthOf(0)
2020-11-16 10:55:17 +00:00
expect(total).to.equal(0)
})
it('Should filter instance comments by onLocalVideo', async function () {
{
const { total, data } = await command.listForAdmin({ onLocalVideo: false })
expect(data).to.have.lengthOf(0)
expect(total).to.equal(0)
}
{
const { total, data } = await command.listForAdmin({ onLocalVideo: true })
expect(data).to.not.have.lengthOf(0)
expect(total).to.not.equal(0)
}
})
2020-11-16 10:55:17 +00:00
it('Should search instance comments by account', async function () {
2021-07-09 12:15:11 +00:00
const { total, data } = await command.listForAdmin({ searchAccount: 'user' })
2020-11-16 10:55:17 +00:00
2021-07-09 12:15:11 +00:00
expect(data).to.have.lengthOf(1)
2020-11-16 10:55:17 +00:00
expect(total).to.equal(1)
2021-07-09 12:15:11 +00:00
expect(data[0].text).to.equal('a first answer to thread 4 by a third party')
2020-11-16 10:55:17 +00:00
})
2020-01-03 12:36:34 +00:00
2020-11-16 10:55:17 +00:00
it('Should search instance comments by video', async function () {
{
2021-07-09 12:15:11 +00:00
const { total, data } = await command.listForAdmin({ searchVideo: 'video' })
2020-01-03 12:36:34 +00:00
2021-07-09 12:15:11 +00:00
expect(data).to.have.lengthOf(7)
2020-11-16 10:55:17 +00:00
expect(total).to.equal(7)
}
2020-01-03 12:36:34 +00:00
2020-11-16 10:55:17 +00:00
{
2021-07-09 12:15:11 +00:00
const { total, data } = await command.listForAdmin({ searchVideo: 'hello' })
2020-11-16 10:55:17 +00:00
2021-07-09 12:15:11 +00:00
expect(data).to.have.lengthOf(0)
2020-11-16 10:55:17 +00:00
expect(total).to.equal(0)
}
})
it('Should search instance comments', async function () {
2021-07-09 12:15:11 +00:00
const { total, data } = await command.listForAdmin({ search: 'super thread 3' })
2020-11-16 10:55:17 +00:00
expect(total).to.equal(1)
2021-07-09 12:15:11 +00:00
expect(data).to.have.lengthOf(1)
expect(data[0].text).to.equal('super thread 3')
2020-11-16 10:55:17 +00:00
})
2020-01-03 12:36:34 +00:00
})
2019-04-24 13:10:37 +00:00
after(async function () {
await cleanupTests([ server ])
2017-12-22 11:10:40 +00:00
})
})