PeerTube/server/tests/api/search/search-playlists.ts

181 lines
5.3 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 { VideoPlaylistPrivacy } from '@shared/models'
2021-06-17 16:02:38 +02:00
import {
cleanupTests,
2021-07-16 09:47:51 +02:00
createSingleServer,
doubleFollow,
2021-07-16 09:47:51 +02:00
PeerTubeServer,
2021-07-16 14:27:30 +02:00
SearchCommand,
2021-06-17 16:02:38 +02:00
setAccessTokensToServers,
setDefaultAccountAvatar,
setDefaultChannelAvatar,
2021-07-15 10:02:54 +02:00
setDefaultVideoChannel
} from '@shared/server-commands'
2021-06-17 16:02:38 +02:00
describe('Test playlists search', function () {
let server: PeerTubeServer
let remoteServer: PeerTubeServer
2021-07-06 15:22:51 +02:00
let command: SearchCommand
let playlistUUID: string
let playlistShortUUID: string
2021-06-17 16:02:38 +02:00
before(async function () {
2021-07-28 11:13:36 +02:00
this.timeout(120000)
2021-06-17 16:02:38 +02:00
const servers = await Promise.all([
createSingleServer(1),
2022-02-11 10:51:33 +01:00
createSingleServer(2)
])
server = servers[0]
remoteServer = servers[1]
2021-06-17 16:02:38 +02:00
await setAccessTokensToServers([ remoteServer, server ])
await setDefaultVideoChannel([ remoteServer, server ])
await setDefaultChannelAvatar([ remoteServer, server ])
await setDefaultAccountAvatar([ remoteServer, server ])
2021-06-17 16:02:38 +02:00
2022-02-11 10:51:33 +01:00
await servers[1].config.disableTranscoding()
2021-06-17 16:02:38 +02:00
{
const videoId = (await server.videos.upload()).uuid
2021-06-17 16:02:38 +02:00
const attributes = {
displayName: 'Dr. Kenzo Tenma hospital videos',
privacy: VideoPlaylistPrivacy.PUBLIC,
2021-07-16 09:04:35 +02:00
videoChannelId: server.store.channel.id
2021-06-17 16:02:38 +02:00
}
2021-07-16 09:04:35 +02:00
const created = await server.playlists.create({ attributes })
playlistUUID = created.uuid
playlistShortUUID = created.shortUUID
2021-07-08 15:54:39 +02:00
2021-07-16 09:04:35 +02:00
await server.playlists.addElement({ playlistId: created.id, attributes: { videoId } })
2021-06-17 16:02:38 +02:00
}
{
const videoId = (await remoteServer.videos.upload()).uuid
2021-06-17 16:02:38 +02:00
const attributes = {
displayName: 'Johan & Anna Libert music videos',
2021-06-17 16:02:38 +02:00
privacy: VideoPlaylistPrivacy.PUBLIC,
videoChannelId: remoteServer.store.channel.id
2021-06-17 16:02:38 +02:00
}
const created = await remoteServer.playlists.create({ attributes })
2021-07-08 15:54:39 +02:00
await remoteServer.playlists.addElement({ playlistId: created.id, attributes: { videoId } })
2021-06-17 16:02:38 +02:00
}
{
const attributes = {
displayName: 'Inspector Lunge playlist',
privacy: VideoPlaylistPrivacy.PUBLIC,
2021-07-16 09:04:35 +02:00
videoChannelId: server.store.channel.id
2021-06-17 16:02:38 +02:00
}
2021-07-16 09:04:35 +02:00
await server.playlists.create({ attributes })
2021-06-17 16:02:38 +02:00
}
2021-07-06 15:22:51 +02:00
await doubleFollow(server, remoteServer)
2021-07-16 09:04:35 +02:00
command = server.search
2021-06-17 16:02:38 +02:00
})
it('Should make a simple search and not have results', async function () {
2021-07-06 15:22:51 +02:00
const body = await command.searchPlaylists({ search: 'abc' })
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.have.lengthOf(0)
2021-06-17 16:02:38 +02:00
})
it('Should make a search and have results', async function () {
{
const search = {
search: 'tenma',
start: 0,
count: 1
}
2021-07-06 15:22:51 +02:00
const body = await command.advancedPlaylistSearch({ search })
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.displayName).to.equal('Dr. Kenzo Tenma hospital videos')
expect(playlist.url).to.equal(server.url + '/video-playlists/' + playlist.uuid)
}
{
const search = {
search: 'Anna Livert music',
2021-06-17 16:02:38 +02:00
start: 0,
count: 1
}
2021-07-06 15:22:51 +02:00
const body = await command.advancedPlaylistSearch({ search })
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]
expect(playlist.displayName).to.equal('Johan & Anna Libert music videos')
}
})
it('Should filter by host', async function () {
{
const search = { search: 'tenma', host: server.host }
const body = await command.advancedPlaylistSearch({ search })
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
const playlist = body.data[0]
expect(playlist.displayName).to.equal('Dr. Kenzo Tenma hospital videos')
}
{
const search = { search: 'Anna', host: 'example.com' }
const body = await command.advancedPlaylistSearch({ search })
expect(body.total).to.equal(0)
expect(body.data).to.have.lengthOf(0)
}
{
const search = { search: 'video', host: remoteServer.host }
const body = await command.advancedPlaylistSearch({ search })
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
const playlist = body.data[0]
expect(playlist.displayName).to.equal('Johan & Anna Libert music videos')
2021-06-17 16:02:38 +02:00
}
})
it('Should filter by UUIDs', async function () {
for (const uuid of [ playlistUUID, playlistShortUUID ]) {
const body = await command.advancedPlaylistSearch({ search: { uuids: [ uuid ] } })
expect(body.total).to.equal(1)
expect(body.data[0].displayName).to.equal('Dr. Kenzo Tenma hospital videos')
}
{
const body = await command.advancedPlaylistSearch({ search: { uuids: [ 'dfd70b83-639f-4980-94af-304a56ab4b35' ] } })
expect(body.total).to.equal(0)
expect(body.data).to.have.lengthOf(0)
}
})
2021-06-17 16:02:38 +02:00
it('Should not display playlists without videos', async function () {
const search = {
search: 'Lunge',
start: 0,
count: 1
}
2021-07-06 15:22:51 +02:00
const body = await command.advancedPlaylistSearch({ search })
expect(body.total).to.equal(0)
expect(body.data).to.have.lengthOf(0)
2021-06-17 16:02:38 +02:00
})
after(async function () {
2021-07-29 13:34:51 +02:00
await cleanupTests([ server, remoteServer ])
2021-06-17 16:02:38 +02:00
})
})