import * as chai from 'chai'
import 'mocha'
import { VideoPrivacy } from '../../../../shared/models/videos'
-import { completeVideoCheck, runServer, viewVideo } from '../../utils'
+import { VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model'
+import { completeVideoCheck, getVideo, immutableAssign, reRunServer, viewVideo } from '../../utils'
import {
flushAndRunMultipleServers, flushTests, getVideosList, killallServers, ServerInfo, setAccessTokensToServers, uploadVideo,
} from '../../utils/index'
import { follow, getFollowersListPaginationAndSort } from '../../utils/server/follows'
import { getJobsListPaginationAndSort } from '../../utils/server/jobs'
+import {
+ addVideoCommentReply, addVideoCommentThread, getVideoCommentThreads,
+ getVideoThreadComments
+} from '../../utils/videos/video-comments'
const expect = chai.expect
describe('Test handle downs', function () {
let servers: ServerInfo[] = []
+ const videos = []
+ let threadIdServer1: number
+ let threadIdServer2: number
+ let commentIdServer1: number
+ let commentIdServer2: number
const videoAttributes = {
name: 'my super name for server 1',
licence: 4,
language: 9,
nsfw: true,
+ privacy: VideoPrivacy.PUBLIC,
description: 'my super description for server 1',
tags: [ 'tag1p1', 'tag2p1' ],
fixture: 'video_short1.webm'
}
+ const unlistedVideoAttributes = immutableAssign(videoAttributes, {
+ privacy: VideoPrivacy.UNLISTED
+ })
+
const checkAttributes = {
name: 'my super name for server 1',
category: 5,
]
}
+ const unlistedCheckAttributes = immutableAssign(checkAttributes, {
+ privacy: VideoPrivacy.UNLISTED
+ })
+
before(async function () {
this.timeout(20000)
// Kill server 1
killallServers([ servers[1] ])
+ let resVideo = await uploadVideo(servers[ 0 ].url, servers[ 0 ].accessToken, unlistedVideoAttributes)
+ videos.push(resVideo.body.video)
+
// Remove server 2 follower
for (let i = 0; i < 10; i++) {
- await uploadVideo(servers[ 0 ].url, servers[ 0 ].accessToken, videoAttributes)
+ resVideo = await uploadVideo(servers[ 0 ].url, servers[ 0 ].accessToken, videoAttributes)
+ videos.push(resVideo.body.video)
+ }
+
+ // Add comments to video 2
+ {
+ const text = 'thread 1'
+ let resComment = await addVideoCommentThread(servers[0].url, servers[0].accessToken, videos[1].uuid, text)
+ let comment = resComment.body.comment
+ threadIdServer1 = comment.id
+
+ resComment = await addVideoCommentReply(servers[0].url, servers[0].accessToken, videos[1].uuid, comment.id, 'comment 1-1')
+ comment = resComment.body.comment
+
+ resComment = await addVideoCommentReply(servers[0].url, servers[0].accessToken, videos[1].uuid, comment.id, 'comment 1-2')
+ commentIdServer1 = resComment.body.comment.id
}
await wait(10000)
})
it('Should follow server 1', async function () {
- servers[1] = await runServer(2)
+ this.timeout(15000)
+
+ await reRunServer(servers[1])
await follow(servers[1].url, [ servers[0].url ], servers[1].accessToken)
})
it('Should send a view to server 2, and automatically fetch the video', async function () {
- const resVideo = await getVideosList(servers[0].url)
- const videoServer1 = resVideo.body.data[0]
+ this.timeout(15000)
- await viewVideo(servers[0].url, videoServer1.uuid)
+ await viewVideo(servers[0].url, videos[0].uuid)
await wait(5000)
const res = await getVideosList(servers[1].url)
- const videoServer2 = res.body.data.find(v => v.url === videoServer1.url)
+ expect(res.body.data).to.be.an('array')
+ // Video is unlisted
+ expect(res.body.data).to.have.lengthOf(1)
+
+ const resVideo = await getVideo(servers[1].url, videos[0].uuid)
+ expect(resVideo.body).not.to.be.undefined
+
+ await completeVideoCheck(servers[1].url, resVideo.body, unlistedCheckAttributes)
+ })
+
+ it('Should send comments on a video to server 2, and automatically fetch the video', async function () {
+ this.timeout(25000)
- expect(videoServer2).not.to.be.undefined
+ await addVideoCommentReply(servers[0].url, servers[0].accessToken, videos[1].uuid, commentIdServer1, 'comment 1-3')
+
+ await wait(5000)
+
+ const res = await getVideosList(servers[1].url)
+ expect(res.body.data).to.be.an('array')
+ expect(res.body.data).to.have.lengthOf(2)
- await completeVideoCheck(servers[1].url, videoServer2, checkAttributes)
+ const resVideo = await getVideo(servers[1].url, videos[0].uuid)
+ expect(resVideo.body).not.to.be.undefined
+
+ await completeVideoCheck(servers[1].url, resVideo.body, unlistedCheckAttributes)
+
+ {
+ let resComment = await getVideoCommentThreads(servers[1].url, videos[1].uuid, 0, 5)
+ expect(resComment.body.data).to.be.an('array')
+ expect(resComment.body.data).to.have.lengthOf(1)
+
+ threadIdServer2 = resComment.body.data[0].id
+
+ resComment = await getVideoThreadComments(servers[1].url, videos[1].uuid, threadIdServer2)
+
+ const tree: VideoCommentThreadTree = resComment.body
+ expect(tree.comment.text).equal('thread 1')
+ expect(tree.children).to.have.lengthOf(1)
+
+ const firstChild = tree.children[0]
+ expect(firstChild.comment.text).to.equal('comment 1-1')
+ expect(firstChild.children).to.have.lengthOf(1)
+
+ const childOfFirstChild = firstChild.children[0]
+ expect(childOfFirstChild.comment.text).to.equal('comment 1-2')
+ expect(childOfFirstChild.children).to.have.lengthOf(1)
+
+ const childOfChildFirstChild = childOfFirstChild.children[0]
+ expect(childOfChildFirstChild.comment.text).to.equal('comment 1-3')
+ expect(childOfChildFirstChild.children).to.have.lengthOf(0)
+
+ commentIdServer2 = childOfChildFirstChild.comment.id
+ }
+ })
+
+ it('Should correctly reply to the comment', async function () {
+ this.timeout(15000)
+
+ await addVideoCommentReply(servers[1].url, servers[1].accessToken, videos[1].uuid, commentIdServer2, 'comment 1-4')
+
+ await wait(5000)
+
+ {
+ const resComment = await getVideoThreadComments(servers[0].url, videos[1].uuid, threadIdServer1)
+
+ const tree: VideoCommentThreadTree = resComment.body
+ expect(tree.comment.text).equal('thread 1')
+ expect(tree.children).to.have.lengthOf(1)
+
+ const firstChild = tree.children[0]
+ expect(firstChild.comment.text).to.equal('comment 1-1')
+ expect(firstChild.children).to.have.lengthOf(1)
+
+ const childOfFirstChild = firstChild.children[0]
+ expect(childOfFirstChild.comment.text).to.equal('comment 1-2')
+ expect(childOfFirstChild.children).to.have.lengthOf(1)
+
+ const childOfChildFirstChild = childOfFirstChild.children[0]
+ expect(childOfChildFirstChild.comment.text).to.equal('comment 1-3')
+ expect(childOfChildFirstChild.children).to.have.lengthOf(1)
+
+ const childOfChildOfChildOfFirstChild = childOfChildFirstChild.children[0]
+ expect(childOfChildOfChildOfFirstChild.comment.text).to.equal('comment 1-4')
+ expect(childOfChildOfChildOfFirstChild.children).to.have.lengthOf(0)
+ }
})
after(async function () {
expect(userInfo.videoChannels).to.have.lengthOf(2)
const videoChannels = userInfo.videoChannels
- expect(videoChannels[0].name).to.equal('Default root channel')
- expect(videoChannels[1].name).to.equal('second video channel')
+ expect(videoChannels[0].displayName).to.equal('Default root channel')
+ expect(videoChannels[1].displayName).to.equal('second video channel')
expect(videoChannels[1].description).to.equal('super video channel description')
})
expect(res.body.data).to.have.lengthOf(2)
const videoChannels = res.body.data
- expect(videoChannels[0].name).to.equal('Default root channel')
- expect(videoChannels[1].name).to.equal('second video channel')
+ expect(videoChannels[0].displayName).to.equal('Default root channel')
+ expect(videoChannels[1].displayName).to.equal('second video channel')
expect(videoChannels[1].description).to.equal('super video channel description')
videoChannelId = videoChannels[1].id
expect(res.body.total).to.equal(2)
expect(res.body.data).to.be.an('array')
expect(res.body.data).to.have.lengthOf(1)
- expect(res.body.data[0].name).to.equal('Default root channel')
+ expect(res.body.data[0].displayName).to.equal('Default root channel')
})
it('Should update video channel', async () => {
expect(res.body.total).to.equal(2)
expect(res.body.data).to.be.an('array')
expect(res.body.data).to.have.lengthOf(1)
- expect(res.body.data[0].name).to.equal('video channel updated')
+ expect(res.body.data[0].displayName).to.equal('video channel updated')
expect(res.body.data[0].description).to.equal('video channel description updated')
})
const res = await getVideoChannel(server.url, videoChannelId)
const videoChannel = res.body
- expect(videoChannel.name).to.equal('video channel updated')
+ expect(videoChannel.displayName).to.equal('video channel updated')
expect(videoChannel.description).to.equal('video channel description updated')
})
expect(res.body.total).to.equal(1)
expect(res.body.data).to.be.an('array')
expect(res.body.data).to.have.lengthOf(1)
- expect(res.body.data[0].name).to.equal('Default root channel')
+ expect(res.body.data[0].displayName).to.equal('Default root channel')
})
after(async function () {