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

340 lines
11 KiB
TypeScript
Raw Normal View History

2020-06-10 10:58:44 +02:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import 'mocha'
import * as chai from 'chai'
2021-07-16 14:27:30 +02:00
import { cleanupTests, createSingleServer, PeerTubeServer, SearchCommand, setAccessTokensToServers } from '@shared/extra-utils'
2021-07-13 09:43:59 +02:00
import { BooleanBothQuery, VideoPlaylistPrivacy, VideoPlaylistType, VideosSearchQuery } from '@shared/models'
2020-06-10 10:58:44 +02:00
const expect = chai.expect
describe('Test videos search', function () {
const localVideoName = 'local video' + new Date().toISOString()
2021-07-16 09:47:51 +02:00
let server: PeerTubeServer = null
2021-07-06 15:22:51 +02:00
let command: SearchCommand
2020-06-10 10:58:44 +02:00
before(async function () {
this.timeout(30000)
2021-07-16 09:47:51 +02:00
server = await createSingleServer(1)
2020-06-10 10:58:44 +02:00
await setAccessTokensToServers([ server ])
2021-07-16 09:04:35 +02:00
await server.videos.upload({ attributes: { name: localVideoName } })
2021-07-06 15:22:51 +02:00
2021-07-16 09:04:35 +02:00
command = server.search
2020-06-10 10:58:44 +02:00
})
describe('Default search', async function () {
it('Should make a local videos search by default', async function () {
this.timeout(10000)
2021-07-16 09:04:35 +02:00
await server.config.updateCustomSubConfig({
2021-07-07 11:51:09 +02:00
newConfig: {
search: {
searchIndex: {
enabled: true,
isDefaultSearch: false,
disableLocalSearch: false
}
2020-06-10 10:58:44 +02:00
}
}
})
2021-07-06 15:22:51 +02:00
const body = await command.searchVideos({ search: 'local video' })
2020-06-10 10:58:44 +02:00
2021-07-06 15:22:51 +02:00
expect(body.total).to.equal(1)
expect(body.data[0].name).to.equal(localVideoName)
2020-06-10 10:58:44 +02:00
})
it('Should make a local channels search by default', async function () {
2021-07-06 15:22:51 +02:00
const body = await command.searchChannels({ search: 'root' })
2020-06-10 10:58:44 +02:00
2021-07-06 15:22:51 +02:00
expect(body.total).to.equal(1)
expect(body.data[0].name).to.equal('root_channel')
expect(body.data[0].host).to.equal('localhost:' + server.port)
2020-06-10 10:58:44 +02:00
})
it('Should make an index videos search by default', async function () {
2021-07-16 09:04:35 +02:00
await server.config.updateCustomSubConfig({
2021-07-07 11:51:09 +02:00
newConfig: {
search: {
searchIndex: {
enabled: true,
isDefaultSearch: true,
disableLocalSearch: false
}
2020-06-10 10:58:44 +02:00
}
}
})
2021-07-06 15:22:51 +02:00
const body = await command.searchVideos({ search: 'local video' })
expect(body.total).to.be.greaterThan(2)
2020-06-10 10:58:44 +02:00
})
it('Should make an index channels search by default', async function () {
2021-07-06 15:22:51 +02:00
const body = await command.searchChannels({ search: 'root' })
expect(body.total).to.be.greaterThan(2)
2020-06-10 10:58:44 +02:00
})
it('Should make an index videos search if local search is disabled', async function () {
2021-07-16 09:04:35 +02:00
await server.config.updateCustomSubConfig({
2021-07-07 11:51:09 +02:00
newConfig: {
search: {
searchIndex: {
enabled: true,
isDefaultSearch: false,
disableLocalSearch: true
}
2020-06-10 10:58:44 +02:00
}
}
})
2021-07-06 15:22:51 +02:00
const body = await command.searchVideos({ search: 'local video' })
expect(body.total).to.be.greaterThan(2)
2020-06-10 10:58:44 +02:00
})
it('Should make an index channels search if local search is disabled', async function () {
2021-07-06 15:22:51 +02:00
const body = await command.searchChannels({ search: 'root' })
expect(body.total).to.be.greaterThan(2)
2020-06-10 10:58:44 +02:00
})
})
describe('Videos search', async function () {
it('Should make a simple search and not have results', async function () {
2021-07-06 15:22:51 +02:00
const body = await command.searchVideos({ search: 'djidane'.repeat(50) })
2020-06-10 10:58:44 +02:00
2021-07-06 15:22:51 +02:00
expect(body.total).to.equal(0)
expect(body.data).to.have.lengthOf(0)
2020-06-10 10:58:44 +02:00
})
it('Should make a simple search and have results', async function () {
2021-07-06 15:22:51 +02:00
const body = await command.searchVideos({ search: 'What is PeerTube' })
2020-06-10 10:58:44 +02:00
2021-07-06 15:22:51 +02:00
expect(body.total).to.be.greaterThan(1)
2020-06-10 10:58:44 +02:00
})
it('Should make a complex search', async function () {
async function check (search: VideosSearchQuery, exists = true) {
2021-07-06 15:22:51 +02:00
const body = await command.advancedVideoSearch({ search })
2020-06-10 10:58:44 +02:00
if (exists === false) {
2021-07-06 15:22:51 +02:00
expect(body.total).to.equal(0)
expect(body.data).to.have.lengthOf(0)
2020-06-10 10:58:44 +02:00
return
}
2021-07-06 15:22:51 +02:00
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
2020-06-10 10:58:44 +02:00
2021-07-06 15:22:51 +02:00
const video = body.data[0]
2020-06-10 10:58:44 +02:00
expect(video.name).to.equal('What is PeerTube?')
expect(video.category.label).to.equal('Science & Technology')
expect(video.licence.label).to.equal('Attribution - Share Alike')
expect(video.privacy.label).to.equal('Public')
expect(video.duration).to.equal(113)
expect(video.thumbnailUrl.startsWith('https://framatube.org/static/thumbnails')).to.be.true
expect(video.account.host).to.equal('framatube.org')
expect(video.account.name).to.equal('framasoft')
expect(video.account.url).to.equal('https://framatube.org/accounts/framasoft')
expect(video.account.avatar).to.exist
expect(video.channel.host).to.equal('framatube.org')
expect(video.channel.name).to.equal('bf54d359-cfad-4935-9d45-9d6be93f63e8')
expect(video.channel.url).to.equal('https://framatube.org/video-channels/bf54d359-cfad-4935-9d45-9d6be93f63e8')
expect(video.channel.avatar).to.exist
}
const baseSearch: VideosSearchQuery = {
search: 'what is peertube',
start: 0,
count: 2,
categoryOneOf: [ 15 ],
licenceOneOf: [ 2 ],
tagsAllOf: [ 'framasoft', 'peertube' ],
startDate: '2018-10-01T10:50:46.396Z',
endDate: '2018-10-01T10:55:46.396Z'
}
{
await check(baseSearch)
}
{
2021-07-13 09:43:59 +02:00
const search = { ...baseSearch, startDate: '2018-10-01T10:54:46.396Z' }
2020-06-10 10:58:44 +02:00
await check(search, false)
}
{
2021-07-13 09:43:59 +02:00
const search = { ...baseSearch, tagsAllOf: [ 'toto', 'framasoft' ] }
2020-06-10 10:58:44 +02:00
await check(search, false)
}
{
2021-07-13 09:43:59 +02:00
const search = { ...baseSearch, durationMin: 2000 }
2020-06-10 10:58:44 +02:00
await check(search, false)
}
{
2021-07-13 09:43:59 +02:00
const search = { ...baseSearch, nsfw: 'true' as BooleanBothQuery }
2020-06-10 10:58:44 +02:00
await check(search, false)
}
{
2021-07-13 09:43:59 +02:00
const search = { ...baseSearch, nsfw: 'false' as BooleanBothQuery }
2020-06-10 10:58:44 +02:00
await check(search, true)
}
{
2021-07-13 09:43:59 +02:00
const search = { ...baseSearch, nsfw: 'both' as BooleanBothQuery }
2020-06-10 10:58:44 +02:00
await check(search, true)
}
})
it('Should have a correct pagination', async function () {
const search = {
search: 'video',
start: 0,
count: 5
}
2021-07-06 15:22:51 +02:00
const body = await command.advancedVideoSearch({ search })
2020-06-10 10:58:44 +02:00
2021-07-06 15:22:51 +02:00
expect(body.total).to.be.greaterThan(5)
expect(body.data).to.have.lengthOf(5)
2020-06-10 10:58:44 +02:00
})
it('Should use the nsfw instance policy as default', async function () {
let nsfwUUID: string
{
2021-07-16 09:04:35 +02:00
await server.config.updateCustomSubConfig({
2021-07-07 11:51:09 +02:00
newConfig: {
instance: { defaultNSFWPolicy: 'display' }
}
})
2021-07-06 15:22:51 +02:00
const body = await command.searchVideos({ search: 'NSFW search index', sort: '-match' })
expect(body.data).to.have.length.greaterThan(0)
2021-07-06 15:22:51 +02:00
const video = body.data[0]
expect(video.nsfw).to.be.true
nsfwUUID = video.uuid
}
{
2021-07-16 09:04:35 +02:00
await server.config.updateCustomSubConfig({
2021-07-07 11:51:09 +02:00
newConfig: {
instance: { defaultNSFWPolicy: 'do_not_list' }
}
})
2021-07-06 15:22:51 +02:00
const body = await command.searchVideos({ search: 'NSFW search index', sort: '-match' })
try {
2021-07-06 15:22:51 +02:00
expect(body.data).to.have.lengthOf(0)
} catch {
const video = body.data[0]
expect(video.uuid).not.equal(nsfwUUID)
}
}
})
2020-06-10 10:58:44 +02:00
})
describe('Channels search', async function () {
it('Should make a simple search and not have results', async function () {
2021-07-06 15:22:51 +02:00
const body = await command.searchChannels({ search: 'a'.repeat(500) })
2020-06-10 10:58:44 +02:00
2021-07-06 15:22:51 +02:00
expect(body.total).to.equal(0)
expect(body.data).to.have.lengthOf(0)
2020-06-10 10:58:44 +02:00
})
it('Should make a search and have results', async function () {
2021-07-06 15:22:51 +02:00
const body = await command.advancedChannelSearch({ search: { search: 'Framasoft', sort: 'createdAt' } })
2020-06-10 10:58:44 +02:00
2021-07-06 15:22:51 +02:00
expect(body.total).to.be.greaterThan(0)
expect(body.data).to.have.length.greaterThan(0)
2020-06-10 10:58:44 +02:00
2021-07-06 15:22:51 +02:00
const videoChannel = body.data[0]
2020-06-10 10:58:44 +02:00
expect(videoChannel.url).to.equal('https://framatube.org/video-channels/bf54d359-cfad-4935-9d45-9d6be93f63e8')
expect(videoChannel.host).to.equal('framatube.org')
expect(videoChannel.avatar).to.exist
expect(videoChannel.displayName).to.exist
expect(videoChannel.ownerAccount.url).to.equal('https://framatube.org/accounts/framasoft')
expect(videoChannel.ownerAccount.name).to.equal('framasoft')
expect(videoChannel.ownerAccount.host).to.equal('framatube.org')
expect(videoChannel.ownerAccount.avatar).to.exist
})
it('Should have a correct pagination', async function () {
2021-07-06 15:22:51 +02:00
const body = await command.advancedChannelSearch({ search: { search: 'root', start: 0, count: 2 } })
2020-06-10 10:58:44 +02:00
2021-07-06 15:22:51 +02:00
expect(body.total).to.be.greaterThan(2)
expect(body.data).to.have.lengthOf(2)
2020-06-10 10:58:44 +02:00
})
})
2021-06-17 16:02:38 +02:00
describe('Playlists search', async function () {
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: 'a'.repeat(500) })
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 () {
2021-07-06 15:22:51 +02:00
const body = await command.advancedPlaylistSearch({ search: { search: 'E2E playlist', sort: '-match' } })
2021-06-17 16:02:38 +02:00
2021-07-06 15:22:51 +02:00
expect(body.total).to.be.greaterThan(0)
expect(body.data).to.have.length.greaterThan(0)
2021-06-17 16:02:38 +02:00
2021-07-06 15:22:51 +02:00
const videoPlaylist = body.data[0]
2021-06-17 16:02:38 +02:00
expect(videoPlaylist.url).to.equal('https://peertube2.cpy.re/videos/watch/playlist/73804a40-da9a-40c2-b1eb-2c6d9eec8f0a')
expect(videoPlaylist.thumbnailUrl).to.exist
expect(videoPlaylist.embedUrl).to.equal('https://peertube2.cpy.re/video-playlists/embed/73804a40-da9a-40c2-b1eb-2c6d9eec8f0a')
expect(videoPlaylist.type.id).to.equal(VideoPlaylistType.REGULAR)
expect(videoPlaylist.privacy.id).to.equal(VideoPlaylistPrivacy.PUBLIC)
expect(videoPlaylist.videosLength).to.exist
expect(videoPlaylist.createdAt).to.exist
expect(videoPlaylist.updatedAt).to.exist
expect(videoPlaylist.uuid).to.equal('73804a40-da9a-40c2-b1eb-2c6d9eec8f0a')
expect(videoPlaylist.displayName).to.exist
expect(videoPlaylist.ownerAccount.url).to.equal('https://peertube2.cpy.re/accounts/chocobozzz')
expect(videoPlaylist.ownerAccount.name).to.equal('chocobozzz')
expect(videoPlaylist.ownerAccount.host).to.equal('peertube2.cpy.re')
expect(videoPlaylist.ownerAccount.avatar).to.exist
expect(videoPlaylist.videoChannel.url).to.equal('https://peertube2.cpy.re/video-channels/chocobozzz_channel')
expect(videoPlaylist.videoChannel.name).to.equal('chocobozzz_channel')
expect(videoPlaylist.videoChannel.host).to.equal('peertube2.cpy.re')
expect(videoPlaylist.videoChannel.avatar).to.exist
})
it('Should have a correct pagination', async function () {
2021-07-06 15:22:51 +02:00
const body = await command.advancedChannelSearch({ search: { search: 'root', start: 0, count: 2 } })
2021-06-17 16:02:38 +02:00
2021-07-06 15:22:51 +02:00
expect(body.total).to.be.greaterThan(2)
expect(body.data).to.have.lengthOf(2)
2021-06-17 16:02:38 +02:00
})
})
2020-06-10 10:58:44 +02:00
after(async function () {
await cleanupTests([ server ])
})
})