PeerTube/server/tests/api/server/follows.ts

582 lines
22 KiB
TypeScript
Raw Normal View History

2020-01-31 16:56:52 +01:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2017-11-21 13:43:29 +01:00
import * as chai from 'chai'
import 'mocha'
2017-12-29 11:51:55 +01:00
import { Video, VideoPrivacy } from '../../../../shared/models/videos'
2017-12-28 13:59:22 +01:00
import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model'
import { cleanupTests, completeVideoCheck, deleteVideoComment } from '../../../../shared/extra-utils'
2017-11-21 13:43:29 +01:00
import {
flushAndRunMultipleServers,
getVideosList,
ServerInfo,
setAccessTokensToServers,
uploadVideo
} from '../../../../shared/extra-utils/index'
import { dateIsValid } from '../../../../shared/extra-utils/miscs/miscs'
import {
follow,
getFollowersListPaginationAndSort,
getFollowingListPaginationAndSort,
unfollow
} from '../../../../shared/extra-utils/server/follows'
import { expectAccountFollows } from '../../../../shared/extra-utils/users/accounts'
import { userLogin } from '../../../../shared/extra-utils/users/login'
import { createUser } from '../../../../shared/extra-utils/users/users'
2017-12-28 13:59:22 +01:00
import {
addVideoCommentReply,
addVideoCommentThread,
getVideoCommentThreads,
2017-12-28 13:59:22 +01:00
getVideoThreadComments
} from '../../../../shared/extra-utils/videos/video-comments'
import { rateVideo } from '../../../../shared/extra-utils/videos/videos'
import { waitJobs } from '../../../../shared/extra-utils/server/jobs'
import { createVideoCaption, listVideoCaptions, testCaptionFile } from '../../../../shared/extra-utils/videos/video-captions'
2018-08-14 14:59:53 +02:00
import { VideoCaption } from '../../../../shared/models/videos/caption/video-caption.model'
2017-11-21 13:43:29 +01:00
const expect = chai.expect
describe('Test follows', function () {
let servers: ServerInfo[] = []
before(async function () {
2018-01-18 18:10:45 +01:00
this.timeout(30000)
2017-11-21 13:43:29 +01:00
servers = await flushAndRunMultipleServers(3)
// Get the access tokens
await setAccessTokensToServers(servers)
})
it('Should not have followers', async function () {
for (const server of servers) {
const res = await getFollowersListPaginationAndSort({ url: server.url, start: 0, count: 5, sort: 'createdAt' })
2017-11-21 13:43:29 +01:00
const follows = res.body.data
expect(res.body.total).to.equal(0)
expect(follows).to.be.an('array')
expect(follows.length).to.equal(0)
}
})
it('Should not have following', async function () {
for (const server of servers) {
const res = await getFollowingListPaginationAndSort({ url: server.url, start: 0, count: 5, sort: 'createdAt' })
2017-11-21 13:43:29 +01:00
const follows = res.body.data
expect(res.body.total).to.equal(0)
expect(follows).to.be.an('array')
expect(follows.length).to.equal(0)
}
})
it('Should have server 1 following server 2 and 3', async function () {
2018-08-10 17:49:12 +02:00
this.timeout(30000)
2017-11-21 13:43:29 +01:00
await follow(servers[0].url, [ servers[1].url, servers[2].url ], servers[0].accessToken)
await waitJobs(servers)
2017-11-21 13:43:29 +01:00
})
it('Should have 2 followings on server 1', async function () {
2020-01-31 16:56:52 +01:00
let res = await getFollowingListPaginationAndSort({ url: servers[0].url, start: 0, count: 1, sort: 'createdAt' })
2017-11-21 13:43:29 +01:00
let follows = res.body.data
expect(res.body.total).to.equal(2)
expect(follows).to.be.an('array')
expect(follows.length).to.equal(1)
2020-01-31 16:56:52 +01:00
res = await getFollowingListPaginationAndSort({ url: servers[0].url, start: 1, count: 1, sort: 'createdAt' })
2017-11-21 13:43:29 +01:00
follows = follows.concat(res.body.data)
const server2Follow = follows.find(f => f.following.host === 'localhost:' + servers[1].port)
const server3Follow = follows.find(f => f.following.host === 'localhost:' + servers[2].port)
2017-11-21 13:43:29 +01:00
expect(server2Follow).to.not.be.undefined
expect(server3Follow).to.not.be.undefined
expect(server2Follow.state).to.equal('accepted')
expect(server3Follow.state).to.equal('accepted')
})
it('Should search/filter followings on server 1', async function () {
const sort = 'createdAt'
const start = 0
const count = 1
2020-01-31 16:56:52 +01:00
const url = servers[0].url
{
const search = ':' + servers[1].port
{
const res = await getFollowingListPaginationAndSort({ url, start, count, sort, search })
const follows = res.body.data
expect(res.body.total).to.equal(1)
expect(follows.length).to.equal(1)
2020-01-31 16:56:52 +01:00
expect(follows[0].following.host).to.equal('localhost:' + servers[1].port)
}
{
const res = await getFollowingListPaginationAndSort({ url, start, count, sort, search, state: 'accepted' })
expect(res.body.total).to.equal(1)
expect(res.body.data).to.have.lengthOf(1)
}
{
const res = await getFollowingListPaginationAndSort({ url, start, count, sort, search, state: 'accepted', actorType: 'Person' })
expect(res.body.total).to.equal(0)
expect(res.body.data).to.have.lengthOf(0)
}
{
const res = await getFollowingListPaginationAndSort({
url,
start,
count,
sort,
search,
state: 'accepted',
actorType: 'Application'
})
expect(res.body.total).to.equal(1)
expect(res.body.data).to.have.lengthOf(1)
}
{
const res = await getFollowingListPaginationAndSort({ url, start, count, sort, search, state: 'pending' })
expect(res.body.total).to.equal(0)
expect(res.body.data).to.have.lengthOf(0)
}
}
{
const res = await getFollowingListPaginationAndSort({ url, start, count, sort, search: 'bla' })
const follows = res.body.data
expect(res.body.total).to.equal(0)
expect(follows.length).to.equal(0)
}
})
it('Should have 0 followings on server 2 and 3', async function () {
2017-11-21 13:43:29 +01:00
for (const server of [ servers[1], servers[2] ]) {
const res = await getFollowingListPaginationAndSort({ url: server.url, start: 0, count: 5, sort: 'createdAt' })
2017-11-21 13:43:29 +01:00
const follows = res.body.data
expect(res.body.total).to.equal(0)
expect(follows).to.be.an('array')
expect(follows.length).to.equal(0)
}
})
it('Should have 1 followers on server 2 and 3', async function () {
for (const server of [ servers[1], servers[2] ]) {
2020-01-31 16:56:52 +01:00
const res = await getFollowersListPaginationAndSort({ url: server.url, start: 0, count: 1, sort: 'createdAt' })
2017-11-21 13:43:29 +01:00
2020-01-31 16:56:52 +01:00
const follows = res.body.data
2017-11-21 13:43:29 +01:00
expect(res.body.total).to.equal(1)
expect(follows).to.be.an('array')
expect(follows.length).to.equal(1)
expect(follows[0].follower.host).to.equal('localhost:' + servers[0].port)
2017-11-21 13:43:29 +01:00
}
})
it('Should search/filter followers on server 2', async function () {
2020-01-31 16:56:52 +01:00
const url = servers[2].url
const start = 0
const count = 5
const sort = 'createdAt'
{
const search = servers[0].port + ''
{
const res = await getFollowersListPaginationAndSort({ url, start, count, sort, search })
const follows = res.body.data
expect(res.body.total).to.equal(1)
expect(follows.length).to.equal(1)
2020-01-31 16:56:52 +01:00
expect(follows[0].following.host).to.equal('localhost:' + servers[2].port)
}
{
const res = await getFollowersListPaginationAndSort({ url, start, count, sort, search, state: 'accepted' })
expect(res.body.total).to.equal(1)
expect(res.body.data).to.have.lengthOf(1)
}
{
const res = await getFollowersListPaginationAndSort({ url, start, count, sort, search, state: 'accepted', actorType: 'Person' })
expect(res.body.total).to.equal(0)
expect(res.body.data).to.have.lengthOf(0)
}
{
const res = await getFollowersListPaginationAndSort({
url,
start,
count,
sort,
search,
state: 'accepted',
actorType: 'Application'
})
expect(res.body.total).to.equal(1)
expect(res.body.data).to.have.lengthOf(1)
}
{
const res = await getFollowersListPaginationAndSort({ url, start, count, sort, search, state: 'pending' })
expect(res.body.total).to.equal(0)
expect(res.body.data).to.have.lengthOf(0)
}
}
{
const res = await getFollowersListPaginationAndSort({ url, start, count, sort, search: 'bla' })
const follows = res.body.data
expect(res.body.total).to.equal(0)
expect(follows.length).to.equal(0)
}
})
2017-11-21 13:43:29 +01:00
it('Should have 0 followers on server 1', async function () {
2020-01-31 16:56:52 +01:00
const res = await getFollowersListPaginationAndSort({ url: servers[0].url, start: 0, count: 5, sort: 'createdAt' })
2017-11-21 13:43:29 +01:00
const follows = res.body.data
expect(res.body.total).to.equal(0)
expect(follows).to.be.an('array')
expect(follows.length).to.equal(0)
})
2018-01-12 12:18:11 +01:00
it('Should have the correct follows counts', async function () {
await expectAccountFollows(servers[0].url, 'peertube@localhost:' + servers[0].port, 0, 2)
await expectAccountFollows(servers[0].url, 'peertube@localhost:' + servers[1].port, 1, 0)
await expectAccountFollows(servers[0].url, 'peertube@localhost:' + servers[2].port, 1, 0)
2018-01-12 11:47:45 +01:00
// Server 2 and 3 does not know server 1 follow another server (there was not a refresh)
await expectAccountFollows(servers[1].url, 'peertube@localhost:' + servers[0].port, 0, 1)
await expectAccountFollows(servers[1].url, 'peertube@localhost:' + servers[1].port, 1, 0)
2018-01-12 11:47:45 +01:00
await expectAccountFollows(servers[2].url, 'peertube@localhost:' + servers[0].port, 0, 1)
await expectAccountFollows(servers[2].url, 'peertube@localhost:' + servers[2].port, 1, 0)
2018-01-12 11:47:45 +01:00
})
2017-11-21 13:43:29 +01:00
it('Should unfollow server 3 on server 1', async function () {
this.timeout(5000)
2017-12-14 17:38:41 +01:00
await unfollow(servers[0].url, servers[0].accessToken, servers[2])
2017-11-21 13:43:29 +01:00
await waitJobs(servers)
2017-11-21 13:43:29 +01:00
})
it('Should not follow server 3 on server 1 anymore', async function () {
2020-01-31 16:56:52 +01:00
const res = await getFollowingListPaginationAndSort({ url: servers[0].url, start: 0, count: 2, sort: 'createdAt' })
const follows = res.body.data
2017-11-21 13:43:29 +01:00
expect(res.body.total).to.equal(1)
expect(follows).to.be.an('array')
expect(follows.length).to.equal(1)
expect(follows[0].following.host).to.equal('localhost:' + servers[1].port)
2017-11-21 13:43:29 +01:00
})
it('Should not have server 1 as follower on server 3 anymore', async function () {
2020-01-31 16:56:52 +01:00
const res = await getFollowersListPaginationAndSort({ url: servers[2].url, start: 0, count: 1, sort: 'createdAt' })
2017-11-21 13:43:29 +01:00
2020-01-31 16:56:52 +01:00
const follows = res.body.data
2017-11-21 13:43:29 +01:00
expect(res.body.total).to.equal(0)
expect(follows).to.be.an('array')
expect(follows.length).to.equal(0)
})
2018-01-12 12:18:11 +01:00
it('Should have the correct follows counts 2', async function () {
await expectAccountFollows(servers[0].url, 'peertube@localhost:' + servers[0].port, 0, 1)
await expectAccountFollows(servers[0].url, 'peertube@localhost:' + servers[1].port, 1, 0)
2018-01-12 11:47:45 +01:00
await expectAccountFollows(servers[1].url, 'peertube@localhost:' + servers[0].port, 0, 1)
await expectAccountFollows(servers[1].url, 'peertube@localhost:' + servers[1].port, 1, 0)
2018-01-12 11:47:45 +01:00
await expectAccountFollows(servers[2].url, 'peertube@localhost:' + servers[0].port, 0, 0)
await expectAccountFollows(servers[2].url, 'peertube@localhost:' + servers[2].port, 0, 0)
2018-01-12 11:47:45 +01:00
})
it('Should upload a video on server 2 and 3 and propagate only the video of server 2', async function () {
this.timeout(60000)
2017-11-21 13:43:29 +01:00
await uploadVideo(servers[1].url, servers[1].accessToken, { name: 'server2' })
await uploadVideo(servers[2].url, servers[2].accessToken, { name: 'server3' })
await waitJobs(servers)
2017-11-21 13:43:29 +01:00
let res = await getVideosList(servers[0].url)
expect(res.body.total).to.equal(1)
expect(res.body.data[0].name).to.equal('server2')
res = await getVideosList(servers[1].url)
expect(res.body.total).to.equal(1)
expect(res.body.data[0].name).to.equal('server2')
res = await getVideosList(servers[2].url)
expect(res.body.total).to.equal(1)
expect(res.body.data[0].name).to.equal('server3')
})
2019-02-21 14:28:06 +01:00
describe('Should propagate data on a new following', function () {
2017-12-29 11:51:55 +01:00
let video4: Video
2017-11-23 14:37:00 +01:00
2017-12-29 11:51:55 +01:00
before(async function () {
2020-06-12 08:12:13 +02:00
this.timeout(50000)
2017-12-29 11:51:55 +01:00
const video4Attributes = {
name: 'server3-4',
category: 2,
nsfw: true,
licence: 6,
tags: [ 'tag1', 'tag2', 'tag3' ]
}
2017-11-23 14:37:00 +01:00
2020-01-31 16:56:52 +01:00
await uploadVideo(servers[2].url, servers[2].accessToken, { name: 'server3-2' })
await uploadVideo(servers[2].url, servers[2].accessToken, { name: 'server3-3' })
await uploadVideo(servers[2].url, servers[2].accessToken, video4Attributes)
await uploadVideo(servers[2].url, servers[2].accessToken, { name: 'server3-5' })
await uploadVideo(servers[2].url, servers[2].accessToken, { name: 'server3-6' })
2017-11-23 14:37:00 +01:00
2017-12-28 11:45:10 +01:00
{
2017-12-29 11:51:55 +01:00
const user = { username: 'captain', password: 'password' }
2020-01-31 16:56:52 +01:00
await createUser({ url: servers[2].url, accessToken: servers[2].accessToken, username: user.username, password: user.password })
const userAccessToken = await userLogin(servers[2], user)
2017-12-28 11:45:10 +01:00
2020-01-31 16:56:52 +01:00
const resVideos = await getVideosList(servers[2].url)
2017-12-29 11:51:55 +01:00
video4 = resVideos.body.data.find(v => v.name === 'server3-4')
2017-12-28 11:45:10 +01:00
2017-12-29 11:51:55 +01:00
{
2020-01-31 16:56:52 +01:00
await rateVideo(servers[2].url, servers[2].accessToken, video4.id, 'like')
await rateVideo(servers[2].url, userAccessToken, video4.id, 'dislike')
2017-12-29 11:51:55 +01:00
}
2017-12-28 11:45:10 +01:00
2017-12-29 11:51:55 +01:00
{
{
const text = 'my super first comment'
2020-01-31 16:56:52 +01:00
const res = await addVideoCommentThread(servers[2].url, servers[2].accessToken, video4.id, text)
const threadId = res.body.comment.id
const text1 = 'my super answer to thread 1'
2020-01-31 16:56:52 +01:00
const childCommentRes = await addVideoCommentReply(servers[2].url, servers[2].accessToken, video4.id, threadId, text1)
const childCommentId = childCommentRes.body.comment.id
const text2 = 'my super answer to answer of thread 1'
2020-01-31 16:56:52 +01:00
await addVideoCommentReply(servers[2].url, servers[2].accessToken, video4.id, childCommentId, text2)
const text3 = 'my second answer to thread 1'
2020-01-31 16:56:52 +01:00
await addVideoCommentReply(servers[2].url, servers[2].accessToken, video4.id, threadId, text3)
}
{
const text = 'will be deleted'
2020-01-31 16:56:52 +01:00
const res = await addVideoCommentThread(servers[2].url, servers[2].accessToken, video4.id, text)
const threadId = res.body.comment.id
const text1 = 'answer to deleted'
2020-01-31 16:56:52 +01:00
await addVideoCommentReply(servers[2].url, servers[2].accessToken, video4.id, threadId, text1)
2017-12-28 11:45:10 +01:00
const text2 = 'will also be deleted'
2020-01-31 16:56:52 +01:00
const childCommentRes = await addVideoCommentReply(servers[2].url, servers[2].accessToken, video4.id, threadId, text2)
const childCommentId = childCommentRes.body.comment.id
2017-11-23 14:37:00 +01:00
const text3 = 'my second answer to deleted'
2020-01-31 16:56:52 +01:00
await addVideoCommentReply(servers[2].url, servers[2].accessToken, video4.id, childCommentId, text3)
2020-01-31 16:56:52 +01:00
await deleteVideoComment(servers[2].url, servers[2].accessToken, video4.id, threadId)
await deleteVideoComment(servers[2].url, servers[2].accessToken, video4.id, childCommentId)
}
2017-12-29 11:51:55 +01:00
}
2018-07-12 19:02:00 +02:00
{
await createVideoCaption({
url: servers[2].url,
accessToken: servers[2].accessToken,
language: 'ar',
videoId: video4.id,
fixture: 'subtitle-good2.vtt'
})
}
2017-12-29 11:51:55 +01:00
}
await waitJobs(servers)
2017-12-29 11:51:55 +01:00
// Server 1 follows server 3
2020-01-31 16:56:52 +01:00
await follow(servers[0].url, [ servers[2].url ], servers[0].accessToken)
2017-12-29 11:51:55 +01:00
await waitJobs(servers)
2017-12-29 11:51:55 +01:00
})
2018-01-12 12:18:11 +01:00
it('Should have the correct follows counts 3', async function () {
await expectAccountFollows(servers[0].url, 'peertube@localhost:' + servers[0].port, 0, 2)
await expectAccountFollows(servers[0].url, 'peertube@localhost:' + servers[1].port, 1, 0)
await expectAccountFollows(servers[0].url, 'peertube@localhost:' + servers[2].port, 1, 0)
2018-01-12 11:47:45 +01:00
await expectAccountFollows(servers[1].url, 'peertube@localhost:' + servers[0].port, 0, 1)
await expectAccountFollows(servers[1].url, 'peertube@localhost:' + servers[1].port, 1, 0)
2018-01-12 11:47:45 +01:00
await expectAccountFollows(servers[2].url, 'peertube@localhost:' + servers[0].port, 0, 1)
await expectAccountFollows(servers[2].url, 'peertube@localhost:' + servers[2].port, 1, 0)
2018-01-12 11:47:45 +01:00
})
2018-07-12 19:02:00 +02:00
it('Should have propagated videos', async function () {
2020-01-31 16:56:52 +01:00
const res = await getVideosList(servers[0].url)
2017-12-29 11:51:55 +01:00
expect(res.body.total).to.equal(7)
const video2 = res.body.data.find(v => v.name === 'server3-2')
video4 = res.body.data.find(v => v.name === 'server3-4')
const video6 = res.body.data.find(v => v.name === 'server3-6')
expect(video2).to.not.be.undefined
expect(video4).to.not.be.undefined
expect(video6).to.not.be.undefined
const isLocal = false
const checkAttributes = {
name: 'server3-4',
category: 2,
licence: 6,
2018-04-23 14:39:52 +02:00
language: 'zh',
2017-12-29 11:51:55 +01:00
nsfw: true,
description: 'my super description',
support: 'my super support text',
2018-03-12 11:06:15 +01:00
account: {
name: 'root',
host: 'localhost:' + servers[2].port
2018-03-12 11:06:15 +01:00
},
2017-12-29 11:51:55 +01:00
isLocal,
2018-01-03 10:12:36 +01:00
commentsEnabled: true,
downloadEnabled: true,
2017-12-29 11:51:55 +01:00
duration: 5,
tags: [ 'tag1', 'tag2', 'tag3' ],
privacy: VideoPrivacy.PUBLIC,
likes: 1,
dislikes: 1,
channel: {
displayName: 'Main root channel',
name: 'root_channel',
2017-12-29 11:51:55 +01:00
description: '',
isLocal
},
fixture: 'video_short.webm',
files: [
{
resolution: 720,
size: 218910
}
]
}
2020-01-31 16:56:52 +01:00
await completeVideoCheck(servers[0].url, video4, checkAttributes)
2017-12-29 11:51:55 +01:00
})
2018-07-12 19:02:00 +02:00
it('Should have propagated comments', async function () {
const res1 = await getVideoCommentThreads(servers[0].url, video4.id, 0, 5, 'createdAt')
2017-12-28 11:45:10 +01:00
expect(res1.body.total).to.equal(2)
2017-12-28 11:45:10 +01:00
expect(res1.body.data).to.be.an('array')
expect(res1.body.data).to.have.lengthOf(2)
{
2020-01-31 16:56:52 +01:00
const comment: VideoComment = res1.body.data[0]
expect(comment.inReplyToCommentId).to.be.null
expect(comment.text).equal('my super first comment')
expect(comment.videoId).to.equal(video4.id)
expect(comment.id).to.equal(comment.threadId)
expect(comment.account.name).to.equal('root')
2020-01-31 16:56:52 +01:00
expect(comment.account.host).to.equal('localhost:' + servers[2].port)
expect(comment.totalReplies).to.equal(3)
expect(dateIsValid(comment.createdAt as string)).to.be.true
expect(dateIsValid(comment.updatedAt as string)).to.be.true
const threadId = comment.threadId
2020-01-31 16:56:52 +01:00
const res2 = await getVideoThreadComments(servers[0].url, video4.id, threadId)
const tree: VideoCommentThreadTree = res2.body
expect(tree.comment.text).equal('my super first comment')
expect(tree.children).to.have.lengthOf(2)
2020-01-31 16:56:52 +01: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)
2020-01-31 16:56:52 +01: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)
2020-01-31 16:56:52 +01: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)
}
{
const deletedComment: VideoComment = res1.body.data[1]
expect(deletedComment).to.not.be.undefined
expect(deletedComment.isDeleted).to.be.true
expect(deletedComment.deletedAt).to.not.be.null
expect(deletedComment.text).to.equal('')
expect(deletedComment.inReplyToCommentId).to.be.null
expect(deletedComment.account).to.be.null
expect(deletedComment.totalReplies).to.equal(3)
expect(dateIsValid(deletedComment.deletedAt as string)).to.be.true
const res2 = await getVideoThreadComments(servers[0].url, video4.id, deletedComment.threadId)
const tree: VideoCommentThreadTree = res2.body
const [ commentRoot, deletedChildRoot ] = tree.children
expect(deletedChildRoot).to.not.be.undefined
expect(deletedChildRoot.comment.isDeleted).to.be.true
expect(deletedChildRoot.comment.deletedAt).to.not.be.null
expect(deletedChildRoot.comment.text).to.equal('')
expect(deletedChildRoot.comment.inReplyToCommentId).to.equal(deletedComment.id)
expect(deletedChildRoot.comment.account).to.be.null
expect(deletedChildRoot.children).to.have.lengthOf(1)
const answerToDeletedChild = deletedChildRoot.children[0]
expect(answerToDeletedChild.comment).to.not.be.undefined
expect(answerToDeletedChild.comment.inReplyToCommentId).to.equal(deletedChildRoot.comment.id)
expect(answerToDeletedChild.comment.text).to.equal('my second answer to deleted')
expect(answerToDeletedChild.comment.account.name).to.equal('root')
expect(commentRoot.comment).to.not.be.undefined
expect(commentRoot.comment.inReplyToCommentId).to.equal(deletedComment.id)
expect(commentRoot.comment.text).to.equal('answer to deleted')
expect(commentRoot.comment.account.name).to.equal('root')
}
2017-12-29 11:51:55 +01:00
})
2018-07-12 19:02:00 +02:00
it('Should have propagated captions', async function () {
const res = await listVideoCaptions(servers[0].url, video4.id)
expect(res.body.total).to.equal(1)
expect(res.body.data).to.have.lengthOf(1)
const caption1: VideoCaption = res.body.data[0]
expect(caption1.language.id).to.equal('ar')
expect(caption1.language.label).to.equal('Arabic')
2021-02-16 08:50:40 +01:00
expect(caption1.captionPath).to.match(new RegExp('^/lazy-static/video-captions/.+-ar.vtt$'))
2018-07-12 19:02:00 +02:00
await testCaptionFile(servers[0].url, caption1.captionPath, 'Subtitle good 2.')
})
it('Should unfollow server 3 on server 1 and does not list server 3 videos', async function () {
this.timeout(5000)
await unfollow(servers[0].url, servers[0].accessToken, servers[2])
await waitJobs(servers)
2020-01-31 16:56:52 +01:00
const res = await getVideosList(servers[0].url)
expect(res.body.total).to.equal(1)
})
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests(servers)
2017-11-21 13:43:29 +01:00
})
})