2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-08-24 05:04:02 -04:00
|
|
|
|
|
|
|
import 'mocha'
|
2021-07-06 09:22:51 -04:00
|
|
|
import * as chai from 'chai'
|
2018-08-24 05:04:02 -04:00
|
|
|
import {
|
2019-04-25 11:14:49 -04:00
|
|
|
cleanupTests,
|
2018-08-24 05:04:02 -04:00
|
|
|
flushAndRunMultipleServers,
|
2019-04-25 11:14:49 -04:00
|
|
|
getVideoChannelVideos,
|
2021-07-06 09:22:51 -04:00
|
|
|
SearchCommand,
|
2018-08-24 05:04:02 -04:00
|
|
|
ServerInfo,
|
|
|
|
setAccessTokensToServers,
|
2019-04-25 11:14:49 -04:00
|
|
|
updateVideo,
|
2018-08-24 05:04:02 -04:00
|
|
|
uploadVideo,
|
2021-07-06 09:22:51 -04:00
|
|
|
wait,
|
|
|
|
waitJobs
|
|
|
|
} from '@shared/extra-utils'
|
|
|
|
import { VideoChannel } from '@shared/models'
|
2018-08-24 05:04:02 -04:00
|
|
|
|
|
|
|
const expect = chai.expect
|
|
|
|
|
2019-04-25 03:46:02 -04:00
|
|
|
describe('Test ActivityPub video channels search', function () {
|
2018-08-24 05:04:02 -04:00
|
|
|
let servers: ServerInfo[]
|
|
|
|
let userServer2Token: string
|
2018-08-24 09:36:50 -04:00
|
|
|
let videoServer2UUID: string
|
|
|
|
let channelIdServer2: number
|
2021-07-06 09:22:51 -04:00
|
|
|
let command: SearchCommand
|
2018-08-24 05:04:02 -04:00
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
|
|
|
servers = await flushAndRunMultipleServers(2)
|
|
|
|
|
|
|
|
await setAccessTokensToServers(servers)
|
|
|
|
|
|
|
|
{
|
2021-07-13 08:23:01 -04:00
|
|
|
await servers[0].usersCommand.create({ username: 'user1_server1', password: 'password' })
|
2018-08-24 05:04:02 -04:00
|
|
|
const channel = {
|
|
|
|
name: 'channel1_server1',
|
|
|
|
displayName: 'Channel 1 server 1'
|
|
|
|
}
|
2021-07-09 05:21:30 -04:00
|
|
|
await servers[0].channelsCommand.create({ attributes: channel })
|
2018-08-24 05:04:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const user = { username: 'user1_server2', password: 'password' }
|
2021-07-13 08:23:01 -04:00
|
|
|
await servers[1].usersCommand.create({ username: user.username, password: user.password })
|
2021-07-13 05:05:15 -04:00
|
|
|
userServer2Token = await servers[1].loginCommand.getAccessToken(user)
|
2018-08-24 05:04:02 -04:00
|
|
|
|
|
|
|
const channel = {
|
|
|
|
name: 'channel1_server2',
|
|
|
|
displayName: 'Channel 1 server 2'
|
|
|
|
}
|
2021-07-09 05:21:30 -04:00
|
|
|
const created = await servers[1].channelsCommand.create({ token: userServer2Token, attributes: channel })
|
|
|
|
channelIdServer2 = created.id
|
2018-08-24 05:04:02 -04:00
|
|
|
|
2018-08-24 09:36:50 -04:00
|
|
|
const res = await uploadVideo(servers[1].url, userServer2Token, { name: 'video 1 server 2', channelId: channelIdServer2 })
|
|
|
|
videoServer2UUID = res.body.video.uuid
|
2018-08-24 05:04:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
2021-07-06 09:22:51 -04:00
|
|
|
|
|
|
|
command = servers[0].searchCommand
|
2018-08-24 05:04:02 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should not find a remote video channel', async function () {
|
2019-07-11 11:23:24 -04:00
|
|
|
this.timeout(15000)
|
|
|
|
|
2018-08-24 05:04:02 -04:00
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const search = 'http://localhost:' + servers[1].port + '/video-channels/channel1_server3'
|
2021-07-06 09:22:51 -04:00
|
|
|
const body = await command.searchChannels({ search, token: servers[0].accessToken })
|
2018-08-24 05:04:02 -04:00
|
|
|
|
2021-07-06 09:22:51 -04:00
|
|
|
expect(body.total).to.equal(0)
|
|
|
|
expect(body.data).to.be.an('array')
|
|
|
|
expect(body.data).to.have.lengthOf(0)
|
2018-08-24 05:04:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
// Without token
|
2020-01-31 10:56:52 -05:00
|
|
|
const search = 'http://localhost:' + servers[1].port + '/video-channels/channel1_server2'
|
2021-07-06 09:22:51 -04:00
|
|
|
const body = await command.searchChannels({ search })
|
2018-08-24 05:04:02 -04:00
|
|
|
|
2021-07-06 09:22:51 -04:00
|
|
|
expect(body.total).to.equal(0)
|
|
|
|
expect(body.data).to.be.an('array')
|
|
|
|
expect(body.data).to.have.lengthOf(0)
|
2018-08-24 05:04:02 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should search a local video channel', async function () {
|
|
|
|
const searches = [
|
2020-01-31 10:56:52 -05:00
|
|
|
'http://localhost:' + servers[0].port + '/video-channels/channel1_server1',
|
|
|
|
'channel1_server1@localhost:' + servers[0].port
|
2018-08-24 05:04:02 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
for (const search of searches) {
|
2021-07-06 09:22:51 -04:00
|
|
|
const body = await command.searchChannels({ search })
|
2018-08-24 05:04:02 -04:00
|
|
|
|
2021-07-06 09:22:51 -04:00
|
|
|
expect(body.total).to.equal(1)
|
|
|
|
expect(body.data).to.be.an('array')
|
|
|
|
expect(body.data).to.have.lengthOf(1)
|
|
|
|
expect(body.data[0].name).to.equal('channel1_server1')
|
|
|
|
expect(body.data[0].displayName).to.equal('Channel 1 server 1')
|
2018-08-24 05:04:02 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-06-17 10:02:38 -04:00
|
|
|
it('Should search a local video channel with an alternative URL', async function () {
|
|
|
|
const search = 'http://localhost:' + servers[0].port + '/c/channel1_server1'
|
|
|
|
|
|
|
|
for (const token of [ undefined, servers[0].accessToken ]) {
|
2021-07-06 09:22:51 -04:00
|
|
|
const body = await command.searchChannels({ search, token })
|
2021-06-17 10:02:38 -04:00
|
|
|
|
2021-07-06 09:22:51 -04:00
|
|
|
expect(body.total).to.equal(1)
|
|
|
|
expect(body.data).to.be.an('array')
|
|
|
|
expect(body.data).to.have.lengthOf(1)
|
|
|
|
expect(body.data[0].name).to.equal('channel1_server1')
|
|
|
|
expect(body.data[0].displayName).to.equal('Channel 1 server 1')
|
2021-06-17 10:02:38 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-08-24 05:04:02 -04:00
|
|
|
it('Should search a remote video channel with URL or handle', async function () {
|
|
|
|
const searches = [
|
2020-01-31 10:56:52 -05:00
|
|
|
'http://localhost:' + servers[1].port + '/video-channels/channel1_server2',
|
2021-06-17 10:02:38 -04:00
|
|
|
'http://localhost:' + servers[1].port + '/c/channel1_server2',
|
|
|
|
'http://localhost:' + servers[1].port + '/c/channel1_server2/videos',
|
2020-01-31 10:56:52 -05:00
|
|
|
'channel1_server2@localhost:' + servers[1].port
|
2018-08-24 05:04:02 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
for (const search of searches) {
|
2021-07-06 09:22:51 -04:00
|
|
|
const body = await command.searchChannels({ search, token: servers[0].accessToken })
|
2018-08-24 05:04:02 -04:00
|
|
|
|
2021-07-06 09:22:51 -04:00
|
|
|
expect(body.total).to.equal(1)
|
|
|
|
expect(body.data).to.be.an('array')
|
|
|
|
expect(body.data).to.have.lengthOf(1)
|
|
|
|
expect(body.data[0].name).to.equal('channel1_server2')
|
|
|
|
expect(body.data[0].displayName).to.equal('Channel 1 server 2')
|
2018-08-24 05:04:02 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should not list this remote video channel', async function () {
|
2021-07-09 05:21:30 -04:00
|
|
|
const body = await servers[0].channelsCommand.list()
|
|
|
|
expect(body.total).to.equal(3)
|
|
|
|
expect(body.data).to.have.lengthOf(3)
|
|
|
|
expect(body.data[0].name).to.equal('channel1_server1')
|
|
|
|
expect(body.data[1].name).to.equal('user1_server1_channel')
|
|
|
|
expect(body.data[2].name).to.equal('root_channel')
|
2018-08-24 05:04:02 -04:00
|
|
|
})
|
|
|
|
|
2018-08-24 09:36:50 -04:00
|
|
|
it('Should list video channel videos of server 2 without token', async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getVideoChannelVideos(servers[0].url, null, 'channel1_server2@localhost:' + servers[1].port, 0, 5)
|
2018-08-24 09:36:50 -04:00
|
|
|
expect(res.body.total).to.equal(0)
|
|
|
|
expect(res.body.data).to.have.lengthOf(0)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should list video channel videos of server 2 with token', async function () {
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await getVideoChannelVideos(servers[0].url, servers[0].accessToken, 'channel1_server2@localhost:' + servers[1].port, 0, 5)
|
2018-08-24 09:36:50 -04:00
|
|
|
|
|
|
|
expect(res.body.total).to.equal(1)
|
|
|
|
expect(res.body.data[0].name).to.equal('video 1 server 2')
|
|
|
|
})
|
|
|
|
|
2018-08-24 05:04:02 -04:00
|
|
|
it('Should update video channel of server 2, and refresh it on server 1', async function () {
|
|
|
|
this.timeout(60000)
|
|
|
|
|
2021-07-09 05:21:30 -04:00
|
|
|
await servers[1].channelsCommand.update({
|
|
|
|
token: userServer2Token,
|
|
|
|
channelName: 'channel1_server2',
|
|
|
|
attributes: { displayName: 'channel updated' }
|
|
|
|
})
|
2021-07-13 08:23:01 -04:00
|
|
|
await servers[1].usersCommand.updateMe({ token: userServer2Token, displayName: 'user updated' })
|
2018-08-24 05:04:02 -04:00
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
// Expire video channel
|
|
|
|
await wait(10000)
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const search = 'http://localhost:' + servers[1].port + '/video-channels/channel1_server2'
|
2021-07-06 09:22:51 -04:00
|
|
|
const body = await command.searchChannels({ search, token: servers[0].accessToken })
|
|
|
|
expect(body.total).to.equal(1)
|
|
|
|
expect(body.data).to.have.lengthOf(1)
|
2018-08-24 05:04:02 -04:00
|
|
|
|
2021-07-06 09:22:51 -04:00
|
|
|
const videoChannel: VideoChannel = body.data[0]
|
2018-08-24 05:04:02 -04:00
|
|
|
expect(videoChannel.displayName).to.equal('channel updated')
|
|
|
|
|
|
|
|
// We don't return the owner account for now
|
|
|
|
// expect(videoChannel.ownerAccount.displayName).to.equal('user updated')
|
|
|
|
})
|
|
|
|
|
2018-08-24 09:36:50 -04:00
|
|
|
it('Should update and add a video on server 2, and update it on server 1 after a search', async function () {
|
|
|
|
this.timeout(60000)
|
|
|
|
|
|
|
|
await updateVideo(servers[1].url, userServer2Token, videoServer2UUID, { name: 'video 1 updated' })
|
|
|
|
await uploadVideo(servers[1].url, userServer2Token, { name: 'video 2 server 2', channelId: channelIdServer2 })
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
// Expire video channel
|
|
|
|
await wait(10000)
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const search = 'http://localhost:' + servers[1].port + '/video-channels/channel1_server2'
|
2021-07-06 09:22:51 -04:00
|
|
|
await command.searchChannels({ search, token: servers[0].accessToken })
|
2018-08-24 09:36:50 -04:00
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const videoChannelName = 'channel1_server2@localhost:' + servers[1].port
|
2019-04-25 11:14:49 -04:00
|
|
|
const res = await getVideoChannelVideos(servers[0].url, servers[0].accessToken, videoChannelName, 0, 5, '-createdAt')
|
2018-08-24 09:36:50 -04:00
|
|
|
|
|
|
|
expect(res.body.total).to.equal(2)
|
|
|
|
expect(res.body.data[0].name).to.equal('video 2 server 2')
|
|
|
|
expect(res.body.data[1].name).to.equal('video 1 updated')
|
|
|
|
})
|
|
|
|
|
2018-08-24 05:04:02 -04:00
|
|
|
it('Should delete video channel of server 2, and delete it on server 1', async function () {
|
|
|
|
this.timeout(60000)
|
|
|
|
|
2021-07-09 05:21:30 -04:00
|
|
|
await servers[1].channelsCommand.delete({ token: userServer2Token, channelName: 'channel1_server2' })
|
2018-08-24 05:04:02 -04:00
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
// Expire video
|
|
|
|
await wait(10000)
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const search = 'http://localhost:' + servers[1].port + '/video-channels/channel1_server2'
|
2021-07-06 09:22:51 -04:00
|
|
|
const body = await command.searchChannels({ search, token: servers[0].accessToken })
|
|
|
|
expect(body.total).to.equal(0)
|
|
|
|
expect(body.data).to.have.lengthOf(0)
|
2018-08-24 05:04:02 -04:00
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests(servers)
|
2018-08-24 05:04:02 -04:00
|
|
|
})
|
|
|
|
})
|