2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-08-22 10:15:35 -04:00
|
|
|
|
|
|
|
import 'mocha'
|
2021-07-06 09:22:51 -04:00
|
|
|
import * as chai from 'chai'
|
2018-08-22 10:15:35 -04:00
|
|
|
import {
|
2019-04-25 11:14:49 -04:00
|
|
|
cleanupTests,
|
2018-08-22 10:15:35 -04:00
|
|
|
flushAndRunMultipleServers,
|
|
|
|
getVideosList,
|
|
|
|
removeVideo,
|
2021-07-06 09:22:51 -04:00
|
|
|
SearchCommand,
|
2018-08-22 10:15:35 -04:00
|
|
|
ServerInfo,
|
|
|
|
setAccessTokensToServers,
|
|
|
|
updateVideo,
|
|
|
|
uploadVideo,
|
2019-04-25 11:14:49 -04:00
|
|
|
wait
|
2019-04-15 09:26:15 -04:00
|
|
|
} from '../../../../shared/extra-utils'
|
|
|
|
import { waitJobs } from '../../../../shared/extra-utils/server/jobs'
|
2021-07-06 09:22:51 -04:00
|
|
|
import { VideoPrivacy } from '../../../../shared/models/videos'
|
2018-08-22 10:15:35 -04:00
|
|
|
|
|
|
|
const expect = chai.expect
|
|
|
|
|
2019-04-25 03:46:02 -04:00
|
|
|
describe('Test ActivityPub videos search', function () {
|
2018-08-22 10:15:35 -04:00
|
|
|
let servers: ServerInfo[]
|
|
|
|
let videoServer1UUID: string
|
|
|
|
let videoServer2UUID: string
|
|
|
|
|
2021-07-06 09:22:51 -04:00
|
|
|
let command: SearchCommand
|
|
|
|
|
2018-08-22 10:15:35 -04:00
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
|
|
|
servers = await flushAndRunMultipleServers(2)
|
|
|
|
|
|
|
|
await setAccessTokensToServers(servers)
|
|
|
|
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await uploadVideo(servers[0].url, servers[0].accessToken, { name: 'video 1 on server 1' })
|
2018-08-22 10:15:35 -04:00
|
|
|
videoServer1UUID = res.body.video.uuid
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const res = await uploadVideo(servers[1].url, servers[1].accessToken, { name: 'video 1 on server 2' })
|
2018-08-22 10:15:35 -04:00
|
|
|
videoServer2UUID = res.body.video.uuid
|
|
|
|
}
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
2021-07-06 09:22:51 -04:00
|
|
|
|
|
|
|
command = servers[0].searchCommand
|
2018-08-22 10:15:35 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should not find a remote video', async function () {
|
|
|
|
{
|
2019-04-25 11:14:49 -04:00
|
|
|
const search = 'http://localhost:' + servers[1].port + '/videos/watch/43'
|
2021-07-06 09:22:51 -04:00
|
|
|
const body = await command.searchVideos({ search, token: servers[0].accessToken })
|
2018-08-22 10:15:35 -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-22 10:15:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2018-08-24 05:04:02 -04:00
|
|
|
// Without token
|
2019-04-25 11:14:49 -04:00
|
|
|
const search = 'http://localhost:' + servers[1].port + '/videos/watch/' + videoServer2UUID
|
2021-07-06 09:22:51 -04:00
|
|
|
const body = await command.searchVideos({ search })
|
2018-08-22 10:15:35 -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-22 10:15:35 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should search a local video', async function () {
|
2019-04-25 11:14:49 -04:00
|
|
|
const search = 'http://localhost:' + servers[0].port + '/videos/watch/' + videoServer1UUID
|
2021-07-06 09:33:39 -04:00
|
|
|
const body = await command.searchVideos({ search })
|
2018-08-22 10:15:35 -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('video 1 on server 1')
|
2018-08-22 10:15:35 -04:00
|
|
|
})
|
|
|
|
|
2021-06-17 10:02:38 -04:00
|
|
|
it('Should search a local video with an alternative URL', async function () {
|
|
|
|
const search = 'http://localhost:' + servers[0].port + '/w/' + videoServer1UUID
|
2021-07-06 09:22:51 -04:00
|
|
|
const body1 = await command.searchVideos({ search })
|
|
|
|
const body2 = await command.searchVideos({ search, token: servers[0].accessToken })
|
|
|
|
|
|
|
|
for (const body of [ body1, body2 ]) {
|
|
|
|
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('video 1 on server 1')
|
2021-06-17 10:02:38 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-08-22 10:15:35 -04:00
|
|
|
it('Should search a remote video', async function () {
|
2021-06-17 10:02:38 -04:00
|
|
|
const searches = [
|
|
|
|
'http://localhost:' + servers[1].port + '/w/' + videoServer2UUID,
|
|
|
|
'http://localhost:' + servers[1].port + '/videos/watch/' + videoServer2UUID
|
|
|
|
]
|
2018-08-22 10:15:35 -04:00
|
|
|
|
2021-06-17 10:02:38 -04:00
|
|
|
for (const search of searches) {
|
2021-07-06 09:22:51 -04:00
|
|
|
const body = await command.searchVideos({ search, token: servers[0].accessToken })
|
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('video 1 on server 2')
|
2021-06-17 10:02:38 -04:00
|
|
|
}
|
2018-08-22 10:15:35 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should not list this remote video', async function () {
|
|
|
|
const res = await getVideosList(servers[0].url)
|
|
|
|
expect(res.body.total).to.equal(1)
|
|
|
|
expect(res.body.data).to.have.lengthOf(1)
|
|
|
|
expect(res.body.data[0].name).to.equal('video 1 on server 1')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should update video of server 2, and refresh it on server 1', async function () {
|
2021-06-17 10:02:38 -04:00
|
|
|
this.timeout(120000)
|
2018-08-22 10:15:35 -04:00
|
|
|
|
|
|
|
const channelAttributes = {
|
|
|
|
name: 'super_channel',
|
|
|
|
displayName: 'super channel'
|
|
|
|
}
|
2021-07-09 05:21:30 -04:00
|
|
|
const created = await servers[1].channelsCommand.create({ attributes: channelAttributes })
|
|
|
|
const videoChannelId = created.id
|
2018-08-22 10:15:35 -04:00
|
|
|
|
|
|
|
const attributes = {
|
|
|
|
name: 'updated',
|
|
|
|
tag: [ 'tag1', 'tag2' ],
|
|
|
|
privacy: VideoPrivacy.UNLISTED,
|
|
|
|
channelId: videoChannelId
|
|
|
|
}
|
|
|
|
await updateVideo(servers[1].url, servers[1].accessToken, videoServer2UUID, attributes)
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
// Expire video
|
|
|
|
await wait(10000)
|
|
|
|
|
|
|
|
// Will run refresh async
|
2019-04-25 11:14:49 -04:00
|
|
|
const search = 'http://localhost:' + servers[1].port + '/videos/watch/' + videoServer2UUID
|
2021-07-06 09:22:51 -04:00
|
|
|
await command.searchVideos({ search, token: servers[0].accessToken })
|
2018-08-22 10:15:35 -04:00
|
|
|
|
|
|
|
// Wait refresh
|
|
|
|
await wait(5000)
|
|
|
|
|
2021-07-06 09:22:51 -04:00
|
|
|
const body = await command.searchVideos({ search, token: servers[0].accessToken })
|
|
|
|
expect(body.total).to.equal(1)
|
|
|
|
expect(body.data).to.have.lengthOf(1)
|
2018-08-22 10:15:35 -04:00
|
|
|
|
2021-07-06 09:22:51 -04:00
|
|
|
const video = body.data[0]
|
2018-08-22 10:15:35 -04:00
|
|
|
expect(video.name).to.equal('updated')
|
|
|
|
expect(video.channel.name).to.equal('super_channel')
|
|
|
|
expect(video.privacy.id).to.equal(VideoPrivacy.UNLISTED)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should delete video of server 2, and delete it on server 1', async function () {
|
2021-06-17 10:02:38 -04:00
|
|
|
this.timeout(120000)
|
2018-08-22 10:15:35 -04:00
|
|
|
|
|
|
|
await removeVideo(servers[1].url, servers[1].accessToken, videoServer2UUID)
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
// Expire video
|
|
|
|
await wait(10000)
|
|
|
|
|
|
|
|
// Will run refresh async
|
2019-04-25 11:14:49 -04:00
|
|
|
const search = 'http://localhost:' + servers[1].port + '/videos/watch/' + videoServer2UUID
|
2021-07-06 09:22:51 -04:00
|
|
|
await command.searchVideos({ search, token: servers[0].accessToken })
|
2018-08-22 10:15:35 -04:00
|
|
|
|
|
|
|
// Wait refresh
|
|
|
|
await wait(5000)
|
|
|
|
|
2021-07-06 09:22:51 -04:00
|
|
|
const body = await command.searchVideos({ search, token: servers[0].accessToken })
|
|
|
|
expect(body.total).to.equal(0)
|
|
|
|
expect(body.data).to.have.lengthOf(0)
|
2018-08-22 10:15:35 -04:00
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests(servers)
|
2018-08-22 10:15:35 -04:00
|
|
|
})
|
|
|
|
})
|