PeerTube/packages/tests/src/api/search/search-activitypub-video-pl...

215 lines
7.0 KiB
TypeScript
Raw Normal View History

2021-06-17 16:02:38 +02:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2022-08-17 15:44:32 +02:00
import { expect } from 'chai'
import { wait } from '@peertube/peertube-core-utils'
import { VideoPlaylistPrivacy } from '@peertube/peertube-models'
2021-06-17 16:02:38 +02:00
import {
cleanupTests,
2021-07-16 09:47:51 +02:00
createMultipleServers,
PeerTubeServer,
2021-07-16 14:27:30 +02:00
SearchCommand,
2021-06-17 16:02:38 +02:00
setAccessTokensToServers,
setDefaultAccountAvatar,
2021-06-17 16:02:38 +02:00
setDefaultVideoChannel,
2021-07-06 15:22:51 +02:00
waitJobs
} from '@peertube/peertube-server-commands'
2021-06-17 16:02:38 +02:00
describe('Test ActivityPub playlists search', function () {
2021-07-16 09:47:51 +02:00
let servers: PeerTubeServer[]
2021-06-17 16:02:38 +02:00
let playlistServer1UUID: string
let playlistServer2UUID: string
let video2Server2: string
2021-07-06 15:22:51 +02:00
let command: SearchCommand
2021-06-17 16:02:38 +02:00
before(async function () {
2023-07-25 15:18:10 +02:00
this.timeout(240000)
2021-06-17 16:02:38 +02:00
2021-07-16 09:47:51 +02:00
servers = await createMultipleServers(2)
2021-06-17 16:02:38 +02:00
await setAccessTokensToServers(servers)
await setDefaultVideoChannel(servers)
await setDefaultAccountAvatar(servers)
2021-06-17 16:02:38 +02:00
{
2021-07-16 09:04:35 +02:00
const video1 = (await servers[0].videos.quickUpload({ name: 'video 1' })).uuid
const video2 = (await servers[0].videos.quickUpload({ name: 'video 2' })).uuid
2021-06-17 16:02:38 +02:00
const attributes = {
displayName: 'playlist 1 on server 1',
privacy: VideoPlaylistPrivacy.PUBLIC,
2021-07-16 09:04:35 +02:00
videoChannelId: servers[0].store.channel.id
2021-06-17 16:02:38 +02:00
}
2021-07-16 09:04:35 +02:00
const created = await servers[0].playlists.create({ attributes })
2021-07-08 15:54:39 +02:00
playlistServer1UUID = created.uuid
2021-06-17 16:02:38 +02:00
for (const videoId of [ video1, video2 ]) {
2021-07-16 09:04:35 +02:00
await servers[0].playlists.addElement({ playlistId: playlistServer1UUID, attributes: { videoId } })
2021-06-17 16:02:38 +02:00
}
}
{
2021-07-16 09:04:35 +02:00
const videoId = (await servers[1].videos.quickUpload({ name: 'video 1' })).uuid
video2Server2 = (await servers[1].videos.quickUpload({ name: 'video 2' })).uuid
2021-06-17 16:02:38 +02:00
const attributes = {
displayName: 'playlist 1 on server 2',
privacy: VideoPlaylistPrivacy.PUBLIC,
2021-07-16 09:04:35 +02:00
videoChannelId: servers[1].store.channel.id
2021-06-17 16:02:38 +02:00
}
2021-07-16 09:04:35 +02:00
const created = await servers[1].playlists.create({ attributes })
2021-07-08 15:54:39 +02:00
playlistServer2UUID = created.uuid
2021-07-16 09:04:35 +02:00
await servers[1].playlists.addElement({ playlistId: playlistServer2UUID, attributes: { videoId } })
2021-06-17 16:02:38 +02:00
}
await waitJobs(servers)
2021-07-06 15:22:51 +02:00
2021-07-16 09:04:35 +02:00
command = servers[0].search
2021-06-17 16:02:38 +02:00
})
it('Should not find a remote playlist', async function () {
{
const search = servers[1].url + '/video-playlists/43'
2021-07-06 15:22:51 +02:00
const body = await command.searchPlaylists({ search, token: servers[0].accessToken })
2021-06-17 16:02:38 +02:00
2021-07-06 15:22:51 +02:00
expect(body.total).to.equal(0)
expect(body.data).to.be.an('array')
expect(body.data).to.have.lengthOf(0)
2021-06-17 16:02:38 +02:00
}
{
// Without token
const search = servers[1].url + '/video-playlists/' + playlistServer2UUID
2021-07-06 15:22:51 +02:00
const body = await command.searchPlaylists({ search })
2021-06-17 16:02:38 +02:00
2021-07-06 15:22:51 +02:00
expect(body.total).to.equal(0)
expect(body.data).to.be.an('array')
expect(body.data).to.have.lengthOf(0)
2021-06-17 16:02:38 +02:00
}
})
it('Should search a local playlist', async function () {
const search = servers[0].url + '/video-playlists/' + playlistServer1UUID
2021-07-06 15:22:51 +02:00
const body = await command.searchPlaylists({ search })
2021-06-17 16:02:38 +02:00
2021-07-06 15:22:51 +02: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].displayName).to.equal('playlist 1 on server 1')
expect(body.data[0].videosLength).to.equal(2)
2021-06-17 16:02:38 +02:00
})
it('Should search a local playlist with an alternative URL', async function () {
const searches = [
servers[0].url + '/videos/watch/playlist/' + playlistServer1UUID,
servers[0].url + '/w/p/' + playlistServer1UUID
2021-06-17 16:02:38 +02:00
]
for (const search of searches) {
for (const token of [ undefined, servers[0].accessToken ]) {
2021-07-06 15:22:51 +02:00
const body = await command.searchPlaylists({ search, token })
2021-06-17 16:02:38 +02:00
2021-07-06 15:22:51 +02: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].displayName).to.equal('playlist 1 on server 1')
expect(body.data[0].videosLength).to.equal(2)
2021-06-17 16:02:38 +02:00
}
}
})
it('Should search a local playlist with a query in URL', async function () {
const searches = [
servers[0].url + '/videos/watch/playlist/' + playlistServer1UUID,
servers[0].url + '/w/p/' + playlistServer1UUID
]
for (const search of searches) {
for (const token of [ undefined, servers[0].accessToken ]) {
const body = await command.searchPlaylists({ search: search + '?param=1', token })
expect(body.total).to.equal(1)
expect(body.data).to.be.an('array')
expect(body.data).to.have.lengthOf(1)
expect(body.data[0].displayName).to.equal('playlist 1 on server 1')
expect(body.data[0].videosLength).to.equal(2)
}
}
})
2021-06-17 16:02:38 +02:00
it('Should search a remote playlist', async function () {
const searches = [
servers[1].url + '/video-playlists/' + playlistServer2UUID,
servers[1].url + '/videos/watch/playlist/' + playlistServer2UUID,
servers[1].url + '/w/p/' + playlistServer2UUID
2021-06-17 16:02:38 +02:00
]
for (const search of searches) {
2021-07-06 15:22:51 +02:00
const body = await command.searchPlaylists({ search, token: servers[0].accessToken })
2021-06-17 16:02:38 +02:00
2021-07-06 15:22:51 +02: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].displayName).to.equal('playlist 1 on server 2')
expect(body.data[0].videosLength).to.equal(1)
2021-06-17 16:02:38 +02:00
}
})
it('Should not list this remote playlist', async function () {
2021-07-16 09:04:35 +02:00
const body = await servers[0].playlists.list({ start: 0, count: 10 })
2021-07-08 15:54:39 +02:00
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
expect(body.data[0].displayName).to.equal('playlist 1 on server 1')
2021-06-17 16:02:38 +02:00
})
it('Should update the playlist of server 2, and refresh it on server 1', async function () {
this.timeout(60000)
2021-07-16 09:04:35 +02:00
await servers[1].playlists.addElement({ playlistId: playlistServer2UUID, attributes: { videoId: video2Server2 } })
2021-06-17 16:02:38 +02:00
await waitJobs(servers)
// Expire playlist
await wait(10000)
// Will run refresh async
const search = servers[1].url + '/video-playlists/' + playlistServer2UUID
2021-07-06 15:22:51 +02:00
await command.searchPlaylists({ search, token: servers[0].accessToken })
2021-06-17 16:02:38 +02:00
// Wait refresh
await wait(5000)
2021-07-06 15:22:51 +02:00
const body = await command.searchPlaylists({ search, token: servers[0].accessToken })
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
2021-06-17 16:02:38 +02:00
2021-07-06 15:22:51 +02:00
const playlist = body.data[0]
2021-06-17 16:02:38 +02:00
expect(playlist.videosLength).to.equal(2)
})
it('Should delete playlist of server 2, and delete it on server 1', async function () {
this.timeout(60000)
2021-07-16 09:04:35 +02:00
await servers[1].playlists.delete({ playlistId: playlistServer2UUID })
2021-06-17 16:02:38 +02:00
await waitJobs(servers)
// Expiration
await wait(10000)
// Will run refresh async
const search = servers[1].url + '/video-playlists/' + playlistServer2UUID
2021-07-06 15:22:51 +02:00
await command.searchPlaylists({ search, token: servers[0].accessToken })
2021-06-17 16:02:38 +02:00
// Wait refresh
await wait(5000)
2021-07-06 15:22:51 +02:00
const body = await command.searchPlaylists({ search, token: servers[0].accessToken })
expect(body.total).to.equal(0)
expect(body.data).to.have.lengthOf(0)
2021-06-17 16:02:38 +02:00
})
after(async function () {
await cleanupTests(servers)
})
})