2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-08-17 09:44:32 -04:00
|
|
|
import { expect } from 'chai'
|
2021-12-17 08:20:43 -05:00
|
|
|
import { VideoPrivacy } from '@shared/models'
|
2018-10-29 12:48:31 -04:00
|
|
|
import {
|
2019-04-24 09:10:37 -04:00
|
|
|
cleanupTests,
|
2021-07-16 03:47:51 -04:00
|
|
|
createMultipleServers,
|
2021-07-16 08:27:30 -04:00
|
|
|
doubleFollow,
|
2021-07-16 03:47:51 -04:00
|
|
|
PeerTubeServer,
|
2021-07-07 03:16:40 -04:00
|
|
|
setAccessTokensToServers,
|
2022-02-28 02:34:43 -05:00
|
|
|
setDefaultAccountAvatar,
|
|
|
|
setDefaultChannelAvatar,
|
2021-07-07 10:40:49 -04:00
|
|
|
SubscriptionsCommand,
|
2021-07-07 03:16:40 -04:00
|
|
|
waitJobs
|
2021-12-17 03:29:23 -05:00
|
|
|
} from '@shared/server-commands'
|
2018-08-16 09:25:20 -04:00
|
|
|
|
|
|
|
describe('Test users subscriptions', function () {
|
2021-07-16 03:47:51 -04:00
|
|
|
let servers: PeerTubeServer[] = []
|
2018-08-17 09:45:42 -04:00
|
|
|
const users: { accessToken: string }[] = []
|
2018-08-22 05:51:39 -04:00
|
|
|
let video3UUID: string
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2021-07-07 10:40:49 -04:00
|
|
|
let command: SubscriptionsCommand
|
|
|
|
|
2018-08-16 09:25:20 -04:00
|
|
|
before(async function () {
|
2021-10-14 02:30:17 -04:00
|
|
|
this.timeout(240000)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
servers = await createMultipleServers(3)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
|
|
|
// Get the access tokens
|
|
|
|
await setAccessTokensToServers(servers)
|
2022-02-28 02:34:43 -05:00
|
|
|
await setDefaultChannelAvatar(servers)
|
|
|
|
await setDefaultAccountAvatar(servers)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
|
|
|
// Server 1 and server 2 follow each other
|
|
|
|
await doubleFollow(servers[0], servers[1])
|
|
|
|
|
2021-12-17 08:20:43 -05:00
|
|
|
for (const server of servers) {
|
|
|
|
const user = { username: 'user' + server.serverNumber, password: 'password' }
|
|
|
|
await server.users.create({ username: user.username, password: user.password })
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2021-12-17 08:20:43 -05:00
|
|
|
const accessToken = await server.login.getAccessToken(user)
|
|
|
|
users.push({ accessToken })
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2021-12-17 08:20:43 -05:00
|
|
|
const videoName1 = 'video 1-' + server.serverNumber
|
|
|
|
await server.videos.upload({ token: accessToken, attributes: { name: videoName1 } })
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2021-12-17 08:20:43 -05:00
|
|
|
const videoName2 = 'video 2-' + server.serverNumber
|
|
|
|
await server.videos.upload({ token: accessToken, attributes: { name: videoName2 } })
|
2018-08-16 09:25:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
2021-07-07 10:40:49 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
command = servers[0].subscriptions
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
describe('Destinction between server videos and user videos', function () {
|
|
|
|
it('Should display videos of server 2 on server 1', async function () {
|
|
|
|
const { total } = await servers[0].videos.list()
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
expect(total).to.equal(4)
|
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('User of server 1 should follow user of server 3 and root of server 1', async function () {
|
|
|
|
this.timeout(60000)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-12-09 05:14:47 -05:00
|
|
|
await command.add({ token: users[0].accessToken, targetUri: 'user3_channel@' + servers[2].host })
|
|
|
|
await command.add({ token: users[0].accessToken, targetUri: 'root_channel@' + servers[0].host })
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await waitJobs(servers)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
const attributes = { name: 'video server 3 added after follow' }
|
|
|
|
const { uuid } = await servers[2].videos.upload({ token: users[2].accessToken, attributes })
|
|
|
|
video3UUID = uuid
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await waitJobs(servers)
|
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should not display videos of server 3 on server 1', async function () {
|
|
|
|
const { total, data } = await servers[0].videos.list()
|
|
|
|
expect(total).to.equal(4)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
for (const video of data) {
|
|
|
|
expect(video.name).to.not.contain('1-3')
|
|
|
|
expect(video.name).to.not.contain('2-3')
|
|
|
|
expect(video.name).to.not.contain('video server 3 added after follow')
|
|
|
|
}
|
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
describe('Subscription endpoints', function () {
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should list subscriptions', async function () {
|
|
|
|
{
|
|
|
|
const body = await command.list()
|
|
|
|
expect(body.total).to.equal(0)
|
|
|
|
expect(body.data).to.be.an('array')
|
|
|
|
expect(body.data).to.have.lengthOf(0)
|
|
|
|
}
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const body = await command.list({ token: users[0].accessToken, sort: 'createdAt' })
|
|
|
|
expect(body.total).to.equal(2)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
const subscriptions = body.data
|
|
|
|
expect(subscriptions).to.be.an('array')
|
|
|
|
expect(subscriptions).to.have.lengthOf(2)
|
2018-08-21 04:34:18 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
expect(subscriptions[0].name).to.equal('user3_channel')
|
|
|
|
expect(subscriptions[1].name).to.equal('root_channel')
|
|
|
|
}
|
|
|
|
})
|
2018-08-21 04:34:18 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should get subscription', async function () {
|
|
|
|
{
|
2022-12-09 05:14:47 -05:00
|
|
|
const videoChannel = await command.get({ token: users[0].accessToken, uri: 'user3_channel@' + servers[2].host })
|
2018-08-21 04:34:18 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
expect(videoChannel.name).to.equal('user3_channel')
|
2022-12-09 05:14:47 -05:00
|
|
|
expect(videoChannel.host).to.equal(servers[2].host)
|
2022-10-11 07:27:22 -04:00
|
|
|
expect(videoChannel.displayName).to.equal('Main user3 channel')
|
|
|
|
expect(videoChannel.followingCount).to.equal(0)
|
|
|
|
expect(videoChannel.followersCount).to.equal(1)
|
|
|
|
}
|
2018-08-21 04:34:18 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
2022-12-09 05:14:47 -05:00
|
|
|
const videoChannel = await command.get({ token: users[0].accessToken, uri: 'root_channel@' + servers[0].host })
|
2018-08-23 11:58:39 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
expect(videoChannel.name).to.equal('root_channel')
|
2022-12-09 05:14:47 -05:00
|
|
|
expect(videoChannel.host).to.equal(servers[0].host)
|
2022-10-11 07:27:22 -04:00
|
|
|
expect(videoChannel.displayName).to.equal('Main root channel')
|
|
|
|
expect(videoChannel.followingCount).to.equal(0)
|
|
|
|
expect(videoChannel.followersCount).to.equal(1)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should return the existing subscriptions', async function () {
|
|
|
|
const uris = [
|
2022-12-09 05:14:47 -05:00
|
|
|
'user3_channel@' + servers[2].host,
|
|
|
|
'root2_channel@' + servers[0].host,
|
|
|
|
'root_channel@' + servers[0].host,
|
|
|
|
'user3_channel@' + servers[0].host
|
2022-10-11 07:27:22 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
const body = await command.exist({ token: users[0].accessToken, uris })
|
|
|
|
|
2022-12-09 05:14:47 -05:00
|
|
|
expect(body['user3_channel@' + servers[2].host]).to.be.true
|
|
|
|
expect(body['root2_channel@' + servers[0].host]).to.be.false
|
|
|
|
expect(body['root_channel@' + servers[0].host]).to.be.true
|
|
|
|
expect(body['user3_channel@' + servers[0].host]).to.be.false
|
2022-10-11 07:27:22 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should search among subscriptions', async function () {
|
|
|
|
{
|
|
|
|
const body = await command.list({ token: users[0].accessToken, sort: '-createdAt', search: 'user3_channel' })
|
|
|
|
expect(body.total).to.equal(1)
|
|
|
|
expect(body.data).to.have.lengthOf(1)
|
|
|
|
}
|
2018-08-23 11:58:39 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const body = await command.list({ token: users[0].accessToken, sort: '-createdAt', search: 'toto' })
|
|
|
|
expect(body.total).to.equal(0)
|
|
|
|
expect(body.data).to.have.lengthOf(0)
|
|
|
|
}
|
|
|
|
})
|
2018-08-23 11:58:39 -04:00
|
|
|
})
|
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
describe('Subscription videos', function () {
|
2020-07-27 11:00:39 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should list subscription videos', async function () {
|
|
|
|
{
|
|
|
|
const body = await command.listVideos()
|
|
|
|
expect(body.total).to.equal(0)
|
|
|
|
expect(body.data).to.be.an('array')
|
|
|
|
expect(body.data).to.have.lengthOf(0)
|
|
|
|
}
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const body = await command.listVideos({ token: users[0].accessToken, sort: 'createdAt' })
|
|
|
|
expect(body.total).to.equal(3)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
const videos = body.data
|
|
|
|
expect(videos).to.be.an('array')
|
|
|
|
expect(videos).to.have.lengthOf(3)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
expect(videos[0].name).to.equal('video 1-3')
|
|
|
|
expect(videos[1].name).to.equal('video 2-3')
|
|
|
|
expect(videos[2].name).to.equal('video server 3 added after follow')
|
|
|
|
}
|
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should upload a video by root on server 1 and see it in the subscription videos', async function () {
|
|
|
|
this.timeout(60000)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
const videoName = 'video server 1 added after follow'
|
|
|
|
await servers[0].videos.upload({ attributes: { name: videoName } })
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await waitJobs(servers)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const body = await command.listVideos()
|
|
|
|
expect(body.total).to.equal(0)
|
|
|
|
expect(body.data).to.be.an('array')
|
|
|
|
expect(body.data).to.have.lengthOf(0)
|
|
|
|
}
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const body = await command.listVideos({ token: users[0].accessToken, sort: 'createdAt' })
|
|
|
|
expect(body.total).to.equal(4)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
const videos = body.data
|
|
|
|
expect(videos).to.be.an('array')
|
|
|
|
expect(videos).to.have.lengthOf(4)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
expect(videos[0].name).to.equal('video 1-3')
|
|
|
|
expect(videos[1].name).to.equal('video 2-3')
|
|
|
|
expect(videos[2].name).to.equal('video server 3 added after follow')
|
|
|
|
expect(videos[3].name).to.equal('video server 1 added after follow')
|
|
|
|
}
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const { data, total } = await servers[0].videos.list()
|
|
|
|
expect(total).to.equal(5)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
for (const video of data) {
|
|
|
|
expect(video.name).to.not.contain('1-3')
|
|
|
|
expect(video.name).to.not.contain('2-3')
|
|
|
|
expect(video.name).to.not.contain('video server 3 added after follow')
|
|
|
|
}
|
2018-08-16 09:25:20 -04:00
|
|
|
}
|
2022-10-11 07:27:22 -04:00
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should have server 1 following server 3 and display server 3 videos', async function () {
|
|
|
|
this.timeout(60000)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await servers[0].follows.follow({ hosts: [ servers[2].url ] })
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await waitJobs(servers)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
const { data, total } = await servers[0].videos.list()
|
|
|
|
expect(total).to.equal(8)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
const names = [ '1-3', '2-3', 'video server 3 added after follow' ]
|
|
|
|
for (const name of names) {
|
|
|
|
const video = data.find(v => v.name.includes(name))
|
|
|
|
expect(video).to.not.be.undefined
|
|
|
|
}
|
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should remove follow server 1 -> server 3 and hide server 3 videos', async function () {
|
|
|
|
this.timeout(60000)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await servers[0].follows.unfollow({ target: servers[2] })
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await waitJobs(servers)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
const { total, data } = await servers[0].videos.list()
|
|
|
|
expect(total).to.equal(5)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
for (const video of data) {
|
|
|
|
expect(video.name).to.not.contain('1-3')
|
|
|
|
expect(video.name).to.not.contain('2-3')
|
|
|
|
expect(video.name).to.not.contain('video server 3 added after follow')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should still list subscription videos', async function () {
|
|
|
|
{
|
|
|
|
const body = await command.listVideos()
|
|
|
|
expect(body.total).to.equal(0)
|
|
|
|
expect(body.data).to.be.an('array')
|
|
|
|
expect(body.data).to.have.lengthOf(0)
|
|
|
|
}
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const body = await command.listVideos({ token: users[0].accessToken, sort: 'createdAt' })
|
|
|
|
expect(body.total).to.equal(4)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
const videos = body.data
|
|
|
|
expect(videos).to.be.an('array')
|
|
|
|
expect(videos).to.have.lengthOf(4)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
expect(videos[0].name).to.equal('video 1-3')
|
|
|
|
expect(videos[1].name).to.equal('video 2-3')
|
|
|
|
expect(videos[2].name).to.equal('video server 3 added after follow')
|
|
|
|
expect(videos[3].name).to.equal('video server 1 added after follow')
|
|
|
|
}
|
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
describe('Existing subscription video update', function () {
|
2018-08-22 05:51:39 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should update a video of server 3 and see the updated video on server 1', async function () {
|
|
|
|
this.timeout(30000)
|
2018-08-22 05:51:39 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await servers[2].videos.update({ id: video3UUID, attributes: { name: 'video server 3 added after follow updated' } })
|
2018-08-22 05:51:39 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await waitJobs(servers)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
const body = await command.listVideos({ token: users[0].accessToken, sort: 'createdAt' })
|
|
|
|
expect(body.data[2].name).to.equal('video server 3 added after follow updated')
|
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
describe('Subscription removal', function () {
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should remove user of server 3 subscription', async function () {
|
|
|
|
this.timeout(30000)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-12-09 05:14:47 -05:00
|
|
|
await command.remove({ token: users[0].accessToken, uri: 'user3_channel@' + servers[2].host })
|
2018-08-22 05:51:39 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await waitJobs(servers)
|
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should not display its videos anymore', async function () {
|
|
|
|
const body = await command.listVideos({ token: users[0].accessToken, sort: 'createdAt' })
|
|
|
|
expect(body.total).to.equal(1)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2021-07-07 10:40:49 -04:00
|
|
|
const videos = body.data
|
2018-08-16 09:25:20 -04:00
|
|
|
expect(videos).to.be.an('array')
|
2022-10-11 07:27:22 -04:00
|
|
|
expect(videos).to.have.lengthOf(1)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
expect(videos[0].name).to.equal('video server 1 added after follow')
|
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should remove the root subscription and not display the videos anymore', async function () {
|
|
|
|
this.timeout(30000)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-12-09 05:14:47 -05:00
|
|
|
await command.remove({ token: users[0].accessToken, uri: 'root_channel@' + servers[0].host })
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await waitJobs(servers)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const body = await command.list({ token: users[0].accessToken, sort: 'createdAt' })
|
|
|
|
expect(body.total).to.equal(0)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
const videos = body.data
|
|
|
|
expect(videos).to.be.an('array')
|
|
|
|
expect(videos).to.have.lengthOf(0)
|
|
|
|
}
|
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should correctly display public videos on server 1', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
const { total, data } = await servers[0].videos.list()
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(total).to.equal(5)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
for (const video of data) {
|
2018-08-16 09:25:20 -04:00
|
|
|
expect(video.name).to.not.contain('1-3')
|
|
|
|
expect(video.name).to.not.contain('2-3')
|
2018-08-22 05:51:39 -04:00
|
|
|
expect(video.name).to.not.contain('video server 3 added after follow updated')
|
2018-08-16 09:25:20 -04:00
|
|
|
}
|
2022-10-11 07:27:22 -04:00
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
describe('Re-follow', function () {
|
2021-10-19 03:44:43 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should follow user of server 3 again', async function () {
|
|
|
|
this.timeout(60000)
|
2021-10-19 03:44:43 -04:00
|
|
|
|
2022-12-09 05:14:47 -05:00
|
|
|
await command.add({ token: users[0].accessToken, targetUri: 'user3_channel@' + servers[2].host })
|
2021-10-19 03:44:43 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await waitJobs(servers)
|
2021-10-19 03:44:43 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const body = await command.listVideos({ token: users[0].accessToken, sort: 'createdAt' })
|
|
|
|
expect(body.total).to.equal(3)
|
2021-10-19 03:44:43 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
const videos = body.data
|
|
|
|
expect(videos).to.be.an('array')
|
|
|
|
expect(videos).to.have.lengthOf(3)
|
2021-10-19 03:44:43 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
expect(videos[0].name).to.equal('video 1-3')
|
|
|
|
expect(videos[1].name).to.equal('video 2-3')
|
|
|
|
expect(videos[2].name).to.equal('video server 3 added after follow updated')
|
|
|
|
}
|
2021-10-19 03:44:43 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const { total, data } = await servers[0].videos.list()
|
|
|
|
expect(total).to.equal(5)
|
2021-10-19 03:44:43 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
for (const video of data) {
|
|
|
|
expect(video.name).to.not.contain('1-3')
|
|
|
|
expect(video.name).to.not.contain('2-3')
|
|
|
|
expect(video.name).to.not.contain('video server 3 added after follow updated')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2021-10-19 03:44:43 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should follow user channels of server 3 by root of server 3', async function () {
|
|
|
|
this.timeout(60000)
|
2021-10-19 03:44:43 -04:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await servers[2].channels.create({ token: users[2].accessToken, attributes: { name: 'user3_channel2' } })
|
2021-10-19 03:44:43 -04:00
|
|
|
|
2022-12-09 05:14:47 -05:00
|
|
|
await servers[2].subscriptions.add({ token: servers[2].accessToken, targetUri: 'user3_channel@' + servers[2].host })
|
|
|
|
await servers[2].subscriptions.add({ token: servers[2].accessToken, targetUri: 'user3_channel2@' + servers[2].host })
|
2022-10-11 07:27:22 -04:00
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
})
|
2021-10-19 03:44:43 -04:00
|
|
|
})
|
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
describe('Followers listing', function () {
|
|
|
|
|
|
|
|
it('Should list user 3 followers', async function () {
|
|
|
|
{
|
|
|
|
const { total, data } = await servers[2].accounts.listFollowers({
|
|
|
|
token: users[2].accessToken,
|
|
|
|
accountName: 'user3',
|
|
|
|
start: 0,
|
|
|
|
count: 5,
|
|
|
|
sort: 'createdAt'
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(total).to.equal(3)
|
|
|
|
expect(data).to.have.lengthOf(3)
|
|
|
|
|
|
|
|
expect(data[0].following.host).to.equal(servers[2].host)
|
|
|
|
expect(data[0].following.name).to.equal('user3_channel')
|
|
|
|
expect(data[0].follower.host).to.equal(servers[0].host)
|
|
|
|
expect(data[0].follower.name).to.equal('user1')
|
|
|
|
|
|
|
|
expect(data[1].following.host).to.equal(servers[2].host)
|
|
|
|
expect(data[1].following.name).to.equal('user3_channel')
|
|
|
|
expect(data[1].follower.host).to.equal(servers[2].host)
|
|
|
|
expect(data[1].follower.name).to.equal('root')
|
|
|
|
|
|
|
|
expect(data[2].following.host).to.equal(servers[2].host)
|
|
|
|
expect(data[2].following.name).to.equal('user3_channel2')
|
|
|
|
expect(data[2].follower.host).to.equal(servers[2].host)
|
|
|
|
expect(data[2].follower.name).to.equal('root')
|
|
|
|
}
|
2021-12-17 08:20:43 -05:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const { total, data } = await servers[2].accounts.listFollowers({
|
|
|
|
token: users[2].accessToken,
|
|
|
|
accountName: 'user3',
|
|
|
|
start: 0,
|
|
|
|
count: 1,
|
|
|
|
sort: '-createdAt'
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(total).to.equal(3)
|
|
|
|
expect(data).to.have.lengthOf(1)
|
|
|
|
|
|
|
|
expect(data[0].following.host).to.equal(servers[2].host)
|
|
|
|
expect(data[0].following.name).to.equal('user3_channel2')
|
|
|
|
expect(data[0].follower.host).to.equal(servers[2].host)
|
|
|
|
expect(data[0].follower.name).to.equal('root')
|
|
|
|
}
|
2021-12-17 08:20:43 -05:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const { total, data } = await servers[2].accounts.listFollowers({
|
|
|
|
token: users[2].accessToken,
|
|
|
|
accountName: 'user3',
|
|
|
|
start: 1,
|
|
|
|
count: 1,
|
|
|
|
sort: '-createdAt'
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(total).to.equal(3)
|
|
|
|
expect(data).to.have.lengthOf(1)
|
|
|
|
|
|
|
|
expect(data[0].following.host).to.equal(servers[2].host)
|
|
|
|
expect(data[0].following.name).to.equal('user3_channel')
|
|
|
|
expect(data[0].follower.host).to.equal(servers[2].host)
|
|
|
|
expect(data[0].follower.name).to.equal('root')
|
|
|
|
}
|
2021-12-17 08:20:43 -05:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const { total, data } = await servers[2].accounts.listFollowers({
|
|
|
|
token: users[2].accessToken,
|
|
|
|
accountName: 'user3',
|
|
|
|
search: 'user1',
|
|
|
|
sort: '-createdAt'
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(total).to.equal(1)
|
|
|
|
expect(data).to.have.lengthOf(1)
|
|
|
|
|
|
|
|
expect(data[0].following.host).to.equal(servers[2].host)
|
|
|
|
expect(data[0].following.name).to.equal('user3_channel')
|
|
|
|
expect(data[0].follower.host).to.equal(servers[0].host)
|
|
|
|
expect(data[0].follower.name).to.equal('user1')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should list user3_channel followers', async function () {
|
|
|
|
{
|
|
|
|
const { total, data } = await servers[2].channels.listFollowers({
|
|
|
|
token: users[2].accessToken,
|
|
|
|
channelName: 'user3_channel',
|
|
|
|
start: 0,
|
|
|
|
count: 5,
|
|
|
|
sort: 'createdAt'
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(total).to.equal(2)
|
|
|
|
expect(data).to.have.lengthOf(2)
|
|
|
|
|
|
|
|
expect(data[0].following.host).to.equal(servers[2].host)
|
|
|
|
expect(data[0].following.name).to.equal('user3_channel')
|
|
|
|
expect(data[0].follower.host).to.equal(servers[0].host)
|
|
|
|
expect(data[0].follower.name).to.equal('user1')
|
|
|
|
|
|
|
|
expect(data[1].following.host).to.equal(servers[2].host)
|
|
|
|
expect(data[1].following.name).to.equal('user3_channel')
|
|
|
|
expect(data[1].follower.host).to.equal(servers[2].host)
|
|
|
|
expect(data[1].follower.name).to.equal('root')
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const { total, data } = await servers[2].channels.listFollowers({
|
|
|
|
token: users[2].accessToken,
|
|
|
|
channelName: 'user3_channel',
|
|
|
|
start: 0,
|
|
|
|
count: 1,
|
|
|
|
sort: '-createdAt'
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(total).to.equal(2)
|
|
|
|
expect(data).to.have.lengthOf(1)
|
|
|
|
|
|
|
|
expect(data[0].following.host).to.equal(servers[2].host)
|
|
|
|
expect(data[0].following.name).to.equal('user3_channel')
|
|
|
|
expect(data[0].follower.host).to.equal(servers[2].host)
|
|
|
|
expect(data[0].follower.name).to.equal('root')
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const { total, data } = await servers[2].channels.listFollowers({
|
|
|
|
token: users[2].accessToken,
|
|
|
|
channelName: 'user3_channel',
|
|
|
|
start: 1,
|
|
|
|
count: 1,
|
|
|
|
sort: '-createdAt'
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(total).to.equal(2)
|
|
|
|
expect(data).to.have.lengthOf(1)
|
|
|
|
|
|
|
|
expect(data[0].following.host).to.equal(servers[2].host)
|
|
|
|
expect(data[0].following.name).to.equal('user3_channel')
|
|
|
|
expect(data[0].follower.host).to.equal(servers[0].host)
|
|
|
|
expect(data[0].follower.name).to.equal('user1')
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const { total, data } = await servers[2].channels.listFollowers({
|
|
|
|
token: users[2].accessToken,
|
|
|
|
channelName: 'user3_channel',
|
|
|
|
search: 'user1',
|
|
|
|
sort: '-createdAt'
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(total).to.equal(1)
|
|
|
|
expect(data).to.have.lengthOf(1)
|
|
|
|
|
|
|
|
expect(data[0].following.host).to.equal(servers[2].host)
|
|
|
|
expect(data[0].following.name).to.equal('user3_channel')
|
|
|
|
expect(data[0].follower.host).to.equal(servers[0].host)
|
|
|
|
expect(data[0].follower.name).to.equal('user1')
|
|
|
|
}
|
|
|
|
})
|
2021-12-17 08:20:43 -05:00
|
|
|
})
|
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
describe('Subscription videos privacy', function () {
|
2021-12-17 08:20:43 -05:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
it('Should update video as internal and not see from remote server', async function () {
|
|
|
|
this.timeout(30000)
|
2021-12-17 08:20:43 -05:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
await servers[2].videos.update({ id: video3UUID, attributes: { name: 'internal', privacy: VideoPrivacy.INTERNAL } })
|
|
|
|
await waitJobs(servers)
|
2021-12-17 08:20:43 -05:00
|
|
|
|
2022-10-11 07:27:22 -04:00
|
|
|
{
|
|
|
|
const { data } = await command.listVideos({ token: users[0].accessToken })
|
|
|
|
expect(data.find(v => v.name === 'internal')).to.not.exist
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should see internal from local user', async function () {
|
2021-12-17 08:20:43 -05:00
|
|
|
const { data } = await servers[2].subscriptions.listVideos({ token: servers[2].accessToken })
|
2022-10-11 07:27:22 -04:00
|
|
|
expect(data.find(v => v.name === 'internal')).to.exist
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should update video as private and not see from anyone server', async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
|
|
|
await servers[2].videos.update({ id: video3UUID, attributes: { name: 'private', privacy: VideoPrivacy.PRIVATE } })
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
{
|
|
|
|
const { data } = await command.listVideos({ token: users[0].accessToken })
|
|
|
|
expect(data.find(v => v.name === 'private')).to.not.exist
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const { data } = await servers[2].subscriptions.listVideos({ token: servers[2].accessToken })
|
|
|
|
expect(data.find(v => v.name === 'private')).to.not.exist
|
|
|
|
}
|
|
|
|
})
|
2021-12-17 08:20:43 -05:00
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests(servers)
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
})
|