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

615 lines
23 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 'mocha'
2021-05-11 11:27:40 +02:00
import * as chai from 'chai'
import { completeVideoCheck, dateIsValid, expectAccountFollows, expectChannelsFollows, testCaptionFile } from '@server/tests/shared'
import { VideoCreateResult, VideoPrivacy } from '@shared/models'
import { cleanupTests, createMultipleServers, PeerTubeServer, setAccessTokensToServers, waitJobs } from '@shared/server-commands'
2017-11-21 13:43:29 +01:00
const expect = chai.expect
describe('Test follows', function () {
2021-07-16 09:47:51 +02:00
let servers: PeerTubeServer[] = []
2017-11-21 13:43:29 +01:00
before(async function () {
2021-12-28 15:07:46 +01:00
this.timeout(120000)
2017-11-21 13:43:29 +01:00
2021-07-16 09:47:51 +02:00
servers = await createMultipleServers(3)
2017-11-21 13:43:29 +01:00
// Get the access tokens
await setAccessTokensToServers(servers)
})
describe('Data propagation after follow', function () {
2017-11-21 13:43:29 +01:00
it('Should not have followers/followings', async function () {
for (const server of servers) {
const bodies = await Promise.all([
server.follows.getFollowers({ start: 0, count: 5, sort: 'createdAt' }),
server.follows.getFollowings({ start: 0, count: 5, sort: 'createdAt' })
])
2017-11-21 13:43:29 +01:00
for (const body of bodies) {
expect(body.total).to.equal(0)
2017-11-21 13:43:29 +01:00
const follows = body.data
expect(follows).to.be.an('array')
expect(follows).to.have.lengthOf(0)
}
}
})
2017-11-21 13:43:29 +01:00
it('Should have server 1 following root account of server 2 and server 3', async function () {
this.timeout(30000)
2017-11-21 13:43:29 +01:00
await servers[0].follows.follow({
hosts: [ servers[2].url ],
handles: [ 'root@' + servers[1].host ]
})
2017-11-21 13:43:29 +01:00
await waitJobs(servers)
})
2017-11-21 13:43:29 +01:00
it('Should have 2 followings on server 1', async function () {
const body = await servers[0].follows.getFollowings({ start: 0, count: 1, sort: 'createdAt' })
expect(body.total).to.equal(2)
2017-11-21 13:43:29 +01:00
let follows = body.data
expect(follows).to.be.an('array')
expect(follows).to.have.lengthOf(1)
2017-11-21 13:43:29 +01:00
const body2 = await servers[0].follows.getFollowings({ start: 1, count: 1, sort: 'createdAt' })
follows = follows.concat(body2.data)
2017-11-21 13:43:29 +01:00
const server2Follow = follows.find(f => f.following.host === servers[1].host)
const server3Follow = follows.find(f => f.following.host === servers[2].host)
2017-11-21 13:43:29 +01:00
expect(server2Follow).to.not.be.undefined
expect(server2Follow.following.name).to.equal('root')
expect(server2Follow.state).to.equal('accepted')
expect(server3Follow).to.not.be.undefined
expect(server3Follow.following.name).to.equal('peertube')
expect(server3Follow.state).to.equal('accepted')
})
it('Should have 0 followings on server 2 and 3', async function () {
for (const server of [ servers[1], servers[2] ]) {
const body = await server.follows.getFollowings({ start: 0, count: 5, sort: 'createdAt' })
expect(body.total).to.equal(0)
2021-07-07 09:16:40 +02:00
const follows = body.data
expect(follows).to.be.an('array')
expect(follows).to.have.lengthOf(0)
}
})
it('Should have 1 followers on server 3', async function () {
const body = await servers[2].follows.getFollowers({ start: 0, count: 1, sort: 'createdAt' })
expect(body.total).to.equal(1)
const follows = body.data
expect(follows).to.be.an('array')
expect(follows).to.have.lengthOf(1)
expect(follows[0].follower.host).to.equal('localhost:' + servers[0].port)
})
it('Should have 0 followers on server 1 and 2', async function () {
for (const server of [ servers[0], servers[1] ]) {
const body = await server.follows.getFollowers({ start: 0, count: 5, sort: 'createdAt' })
expect(body.total).to.equal(0)
const follows = body.data
expect(follows).to.be.an('array')
expect(follows).to.have.lengthOf(0)
}
})
it('Should search/filter followings on server 1', async function () {
const sort = 'createdAt'
const start = 0
const count = 1
{
const search = ':' + servers[1].port
{
const body = await servers[0].follows.getFollowings({ start, count, sort, search })
expect(body.total).to.equal(1)
const follows = body.data
expect(follows).to.have.lengthOf(1)
expect(follows[0].following.host).to.equal(servers[1].host)
}
{
const body = await servers[0].follows.getFollowings({ start, count, sort, search, state: 'accepted' })
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
}
{
const body = await servers[0].follows.getFollowings({ start, count, sort, search, state: 'accepted', actorType: 'Person' })
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
}
{
const body = await servers[0].follows.getFollowings({
start,
count,
sort,
search,
state: 'accepted',
actorType: 'Application'
})
expect(body.total).to.equal(0)
expect(body.data).to.have.lengthOf(0)
}
{
const body = await servers[0].follows.getFollowings({ start, count, sort, search, state: 'pending' })
expect(body.total).to.equal(0)
expect(body.data).to.have.lengthOf(0)
}
}
{
const body = await servers[0].follows.getFollowings({ start, count, sort, search: 'root' })
2021-07-07 09:16:40 +02:00
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
}
{
const body = await servers[0].follows.getFollowings({ start, count, sort, search: 'bla' })
2021-07-07 09:16:40 +02:00
expect(body.total).to.equal(0)
2021-07-07 09:16:40 +02:00
expect(body.data).to.have.lengthOf(0)
}
})
it('Should search/filter followers on server 2', async function () {
const start = 0
const count = 5
const sort = 'createdAt'
{
const search = servers[0].port + ''
{
const body = await servers[2].follows.getFollowers({ start, count, sort, search })
expect(body.total).to.equal(1)
2017-11-21 13:43:29 +01:00
const follows = body.data
expect(follows).to.have.lengthOf(1)
expect(follows[0].following.host).to.equal(servers[2].host)
}
2017-11-21 13:43:29 +01:00
{
const body = await servers[2].follows.getFollowers({ start, count, sort, search, state: 'accepted' })
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
}
2017-11-21 13:43:29 +01:00
{
const body = await servers[2].follows.getFollowers({ start, count, sort, search, state: 'accepted', actorType: 'Person' })
expect(body.total).to.equal(0)
expect(body.data).to.have.lengthOf(0)
}
2017-11-21 13:43:29 +01:00
{
const body = await servers[2].follows.getFollowers({
start,
count,
sort,
search,
state: 'accepted',
actorType: 'Application'
})
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
}
{
const body = await servers[2].follows.getFollowers({ start, count, sort, search, state: 'pending' })
expect(body.total).to.equal(0)
expect(body.data).to.have.lengthOf(0)
}
}
{
const body = await servers[2].follows.getFollowers({ start, count, sort, search: 'bla' })
expect(body.total).to.equal(0)
2021-07-07 09:16:40 +02:00
const follows = body.data
expect(follows).to.have.lengthOf(0)
}
})
it('Should have the correct follows counts', async function () {
await expectAccountFollows({ server: servers[0], handle: 'peertube@' + servers[0].host, followers: 0, following: 2 })
await expectAccountFollows({ server: servers[0], handle: 'root@' + servers[1].host, followers: 1, following: 0 })
await expectAccountFollows({ server: servers[0], handle: 'peertube@' + servers[2].host, followers: 1, following: 0 })
// Server 2 and 3 does not know server 1 follow another server (there was not a refresh)
await expectAccountFollows({ server: servers[1], handle: 'peertube@' + servers[0].host, followers: 0, following: 1 })
await expectAccountFollows({ server: servers[1], handle: 'root@' + servers[1].host, followers: 1, following: 0 })
await expectAccountFollows({ server: servers[1], handle: 'peertube@' + servers[1].host, followers: 0, following: 0 })
await expectAccountFollows({ server: servers[2], handle: 'peertube@' + servers[0].host, followers: 0, following: 1 })
await expectAccountFollows({ server: servers[2], handle: 'peertube@' + servers[2].host, followers: 1, following: 0 })
})
it('Should unfollow server 3 on server 1', async function () {
this.timeout(15000)
await servers[0].follows.unfollow({ target: servers[2] })
await waitJobs(servers)
})
it('Should not follow server 3 on server 1 anymore', async function () {
const body = await servers[0].follows.getFollowings({ start: 0, count: 2, sort: 'createdAt' })
expect(body.total).to.equal(1)
2021-07-07 09:16:40 +02:00
const follows = body.data
expect(follows).to.be.an('array')
expect(follows).to.have.lengthOf(1)
expect(follows[0].following.host).to.equal(servers[1].host)
})
2017-11-21 13:43:29 +01:00
it('Should not have server 1 as follower on server 3 anymore', async function () {
const body = await servers[2].follows.getFollowers({ start: 0, count: 1, sort: 'createdAt' })
expect(body.total).to.equal(0)
2017-11-21 13:43:29 +01:00
const follows = body.data
expect(follows).to.be.an('array')
expect(follows).to.have.lengthOf(0)
})
2018-01-12 11:47:45 +01:00
it('Should have the correct follows counts after the unfollow', async function () {
await expectAccountFollows({ server: servers[0], handle: 'peertube@' + servers[0].host, followers: 0, following: 1 })
await expectAccountFollows({ server: servers[0], handle: 'root@' + servers[1].host, followers: 1, following: 0 })
await expectAccountFollows({ server: servers[0], handle: 'peertube@' + servers[2].host, followers: 0, following: 0 })
2018-01-12 11:47:45 +01:00
await expectAccountFollows({ server: servers[1], handle: 'peertube@' + servers[0].host, followers: 0, following: 1 })
await expectAccountFollows({ server: servers[1], handle: 'root@' + servers[1].host, followers: 1, following: 0 })
await expectAccountFollows({ server: servers[1], handle: 'peertube@' + servers[1].host, followers: 0, following: 0 })
2018-01-12 11:47:45 +01:00
await expectAccountFollows({ server: servers[2], handle: 'peertube@' + servers[0].host, followers: 0, following: 0 })
await expectAccountFollows({ server: servers[2], handle: 'peertube@' + servers[2].host, followers: 0, following: 0 })
})
2017-11-21 13:43:29 +01:00
it('Should upload a video on server 2 and 3 and propagate only the video of server 2', async function () {
this.timeout(120000)
2017-11-21 13:43:29 +01:00
await servers[1].videos.upload({ attributes: { name: 'server2' } })
await servers[2].videos.upload({ attributes: { name: 'server3' } })
2017-11-21 13:43:29 +01:00
await waitJobs(servers)
2017-11-21 13:43:29 +01:00
{
const { total, data } = await servers[0].videos.list()
expect(total).to.equal(1)
expect(data[0].name).to.equal('server2')
}
2017-11-21 13:43:29 +01:00
{
const { total, data } = await servers[1].videos.list()
expect(total).to.equal(1)
expect(data[0].name).to.equal('server2')
}
2017-11-21 13:43:29 +01:00
{
const { total, data } = await servers[2].videos.list()
expect(total).to.equal(1)
expect(data[0].name).to.equal('server3')
}
})
2017-11-21 13:43:29 +01:00
it('Should remove account follow', async function () {
this.timeout(15000)
2017-11-21 13:43:29 +01:00
await servers[0].follows.unfollow({ target: 'root@' + servers[1].host })
2018-01-12 11:47:45 +01:00
await waitJobs(servers)
})
2018-01-12 11:47:45 +01:00
it('Should have removed the account follow', async function () {
await expectAccountFollows({ server: servers[0], handle: 'root@' + servers[1].host, followers: 0, following: 0 })
await expectAccountFollows({ server: servers[1], handle: 'root@' + servers[1].host, followers: 0, following: 0 })
2018-01-12 11:47:45 +01:00
{
const { total, data } = await servers[0].follows.getFollowings()
expect(total).to.equal(0)
expect(data).to.have.lengthOf(0)
}
2017-11-21 13:43:29 +01:00
{
const { total, data } = await servers[0].videos.list()
expect(total).to.equal(0)
expect(data).to.have.lengthOf(0)
}
})
2017-11-21 13:43:29 +01:00
it('Should follow a channel', async function () {
this.timeout(15000)
2017-11-21 13:43:29 +01:00
await servers[0].follows.follow({
handles: [ 'root_channel@' + servers[1].host ]
})
2017-11-21 13:43:29 +01:00
await waitJobs(servers)
2017-11-21 13:43:29 +01:00
await expectChannelsFollows({ server: servers[0], handle: 'root_channel@' + servers[1].host, followers: 1, following: 0 })
await expectChannelsFollows({ server: servers[1], handle: 'root_channel@' + servers[1].host, followers: 1, following: 0 })
{
const { total, data } = await servers[0].follows.getFollowings()
expect(total).to.equal(1)
expect(data).to.have.lengthOf(1)
}
{
const { total, data } = await servers[0].videos.list()
expect(total).to.equal(1)
expect(data).to.have.lengthOf(1)
}
})
2017-11-21 13:43:29 +01:00
})
describe('Should propagate data on a new server follow', function () {
let video4: VideoCreateResult
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
2021-07-16 09:04:35 +02:00
await servers[2].videos.upload({ attributes: { name: 'server3-2' } })
await servers[2].videos.upload({ attributes: { name: 'server3-3' } })
video4 = await servers[2].videos.upload({ attributes: video4Attributes })
2021-07-16 09:04:35 +02:00
await servers[2].videos.upload({ attributes: { name: 'server3-5' } })
await servers[2].videos.upload({ attributes: { name: 'server3-6' } })
2017-11-23 14:37:00 +01:00
2017-12-28 11:45:10 +01:00
{
2021-07-16 09:04:35 +02:00
const userAccessToken = await servers[2].users.generateUserAndToken('captain')
2017-12-28 11:45:10 +01:00
await servers[2].videos.rate({ id: video4.id, rating: 'like' })
await servers[2].videos.rate({ token: userAccessToken, id: video4.id, rating: 'dislike' })
}
{
await servers[2].comments.createThread({ videoId: video4.id, text: 'my super first comment' })
await servers[2].comments.addReplyToLastThread({ text: 'my super answer to thread 1' })
await servers[2].comments.addReplyToLastReply({ text: 'my super answer to answer of thread 1' })
await servers[2].comments.addReplyToLastThread({ text: 'my second answer to thread 1' })
}
2017-12-28 11:45:10 +01:00
{
const { id: threadId } = await servers[2].comments.createThread({ videoId: video4.id, text: 'will be deleted' })
await servers[2].comments.addReplyToLastThread({ text: 'answer to deleted' })
2017-11-23 14:37:00 +01:00
const { id: replyId } = await servers[2].comments.addReplyToLastThread({ text: 'will also be deleted' })
await servers[2].comments.addReplyToLastReply({ text: 'my second answer to deleted' })
2018-07-12 19:02:00 +02:00
await servers[2].comments.delete({ videoId: video4.id, commentId: threadId })
await servers[2].comments.delete({ videoId: video4.id, commentId: replyId })
2017-12-29 11:51:55 +01:00
}
2021-07-21 13:58:35 +02:00
await servers[2].captions.add({
language: 'ar',
videoId: video4.id,
fixture: 'subtitle-good2.vtt'
})
await waitJobs(servers)
2017-12-29 11:51:55 +01:00
// Server 1 follows server 3
await servers[0].follows.follow({ hosts: [ servers[2].url ] })
2017-12-29 11:51:55 +01:00
await waitJobs(servers)
2017-12-29 11:51:55 +01:00
})
it('Should have the correct follows counts', async function () {
await expectAccountFollows({ server: servers[0], handle: 'peertube@' + servers[0].host, followers: 0, following: 2 })
await expectAccountFollows({ server: servers[0], handle: 'root@' + servers[1].host, followers: 0, following: 0 })
await expectChannelsFollows({ server: servers[0], handle: 'root_channel@' + servers[1].host, followers: 1, following: 0 })
await expectAccountFollows({ server: servers[0], handle: 'peertube@' + servers[2].host, followers: 1, following: 0 })
2018-01-12 11:47:45 +01:00
await expectAccountFollows({ server: servers[1], handle: 'peertube@' + servers[0].host, followers: 0, following: 1 })
await expectAccountFollows({ server: servers[1], handle: 'peertube@' + servers[1].host, followers: 0, following: 0 })
await expectAccountFollows({ server: servers[1], handle: 'root@' + servers[1].host, followers: 0, following: 0 })
await expectChannelsFollows({ server: servers[1], handle: 'root_channel@' + servers[1].host, followers: 1, following: 0 })
2018-01-12 11:47:45 +01:00
await expectAccountFollows({ server: servers[2], handle: 'peertube@' + servers[0].host, followers: 0, following: 1 })
await expectAccountFollows({ server: servers[2], handle: 'peertube@' + servers[2].host, followers: 1, following: 0 })
2018-01-12 11:47:45 +01:00
})
2018-07-12 19:02:00 +02:00
it('Should have propagated videos', async function () {
2021-07-16 09:04:35 +02:00
const { total, data } = await servers[0].videos.list()
2021-07-15 10:02:54 +02:00
expect(total).to.equal(7)
2017-12-29 11:51:55 +01:00
2021-07-15 10:02:54 +02:00
const video2 = data.find(v => v.name === 'server3-2')
video4 = data.find(v => v.name === 'server3-4')
const video6 = data.find(v => v.name === 'server3-6')
2017-12-29 11:51:55 +01:00
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: servers[2].host
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
}
]
}
2021-07-15 10:02:54 +02:00
await completeVideoCheck(servers[0], 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 () {
2021-07-16 09:04:35 +02:00
const { total, data } = await servers[0].comments.listThreads({ videoId: video4.id, sort: 'createdAt' })
2017-12-28 11:45:10 +01:00
2021-07-09 14:15:11 +02:00
expect(total).to.equal(2)
expect(data).to.be.an('array')
expect(data).to.have.lengthOf(2)
{
2021-07-09 14:15:11 +02:00
const comment = 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')
expect(comment.account.host).to.equal(servers[2].host)
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
2021-07-16 09:04:35 +02:00
const tree = await servers[0].comments.getThread({ videoId: video4.id, threadId })
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)
}
{
2021-07-09 14:15:11 +02:00
const deletedComment = 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
2021-06-08 16:19:09 +02:00
expect(deletedComment.totalReplies).to.equal(2)
expect(dateIsValid(deletedComment.deletedAt as string)).to.be.true
2021-07-16 09:04:35 +02:00
const tree = await servers[0].comments.getThread({ videoId: video4.id, threadId: deletedComment.threadId })
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 () {
2021-07-21 13:58:35 +02:00
const body = await servers[0].captions.list({ videoId: video4.id })
2021-07-08 11:49:38 +02:00
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
2018-07-12 19:02:00 +02:00
2021-07-08 11:49:38 +02:00
const caption1 = body.data[0]
2018-07-12 19:02:00 +02:00
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 servers[0].follows.unfollow({ target: servers[2] })
await waitJobs(servers)
2021-07-16 09:04:35 +02:00
const { total } = await servers[0].videos.list()
2021-07-15 10:02:54 +02:00
expect(total).to.equal(1)
})
})
describe('Should propagate data on a new channel follow', function () {
before(async function () {
this.timeout(60000)
await servers[2].videos.upload({ attributes: { name: 'server3-7' } })
await waitJobs(servers)
const video = await servers[0].videos.find({ name: 'server3-7' })
expect(video).to.not.exist
})
it('Should have propagated channel video', async function () {
this.timeout(60000)
await servers[0].follows.follow({ handles: [ 'root_channel@' + servers[2].host ] })
await waitJobs(servers)
const video = await servers[0].videos.find({ name: 'server3-7' })
expect(video).to.exist
})
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests(servers)
2017-11-21 13:43:29 +01:00
})
})