1
0
Fork 0
peertube/server/tests/plugins/filter-hooks.ts

544 lines
18 KiB
TypeScript
Raw Normal View History

2020-01-31 15:56:52 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2019-07-19 08:37:35 +00:00
import 'mocha'
import * as chai from 'chai'
2019-07-19 15:30:41 +00:00
import {
2021-07-06 13:22:51 +00:00
cleanupTests,
2021-07-16 07:47:51 +00:00
createMultipleServers,
2021-07-16 08:19:16 +00:00
doubleFollow,
FIXTURE_URLS,
2021-03-23 10:54:08 +00:00
makeRawRequest,
2021-07-16 07:47:51 +00:00
PeerTubeServer,
2021-07-16 08:19:16 +00:00
PluginsCommand,
2020-01-31 15:56:52 +00:00
setAccessTokensToServers,
2019-07-22 09:14:58 +00:00
setDefaultVideoChannel,
2021-07-13 07:43:59 +00:00
waitJobs
2021-07-06 13:22:51 +00:00
} from '@shared/extra-utils'
2021-07-16 12:27:30 +00:00
import { HttpStatusCode, VideoDetails, VideoImportState, VideoPlaylist, VideoPlaylistPrivacy, VideoPrivacy } from '@shared/models'
2019-07-19 08:37:35 +00:00
const expect = chai.expect
describe('Test plugin filter hooks', function () {
2021-07-16 07:47:51 +00:00
let servers: PeerTubeServer[]
2019-07-19 15:30:41 +00:00
let videoUUID: string
let threadId: number
2019-07-19 08:37:35 +00:00
before(async function () {
2021-05-07 13:17:43 +00:00
this.timeout(60000)
2019-07-19 08:37:35 +00:00
2021-07-16 07:47:51 +00:00
servers = await createMultipleServers(2)
2019-07-19 15:30:41 +00:00
await setAccessTokensToServers(servers)
2019-07-22 09:14:58 +00:00
await setDefaultVideoChannel(servers)
await doubleFollow(servers[0], servers[1])
2019-07-19 15:30:41 +00:00
2021-07-16 07:04:35 +00:00
await servers[0].plugins.install({ path: PluginsCommand.getPluginTestPath() })
await servers[0].plugins.install({ path: PluginsCommand.getPluginTestPath('-filter-translations') })
2019-07-19 15:30:41 +00:00
for (let i = 0; i < 10; i++) {
2021-07-16 07:04:35 +00:00
await servers[0].videos.upload({ attributes: { name: 'default video ' + i } })
2019-07-19 15:30:41 +00:00
}
2021-07-16 07:04:35 +00:00
const { data } = await servers[0].videos.list()
2021-07-15 08:02:54 +00:00
videoUUID = data[0].uuid
2020-11-06 12:59:50 +00:00
2021-07-16 07:04:35 +00:00
await servers[0].config.updateCustomSubConfig({
2021-07-07 09:51:09 +00:00
newConfig: {
live: { enabled: true },
signup: { enabled: true },
import: {
videos: {
http: { enabled: true },
torrent: { enabled: true }
}
2020-11-06 12:59:50 +00:00
}
}
})
2019-07-19 08:37:35 +00:00
})
2019-07-22 09:14:58 +00:00
it('Should run filter:api.videos.list.params', async function () {
2021-07-16 07:04:35 +00:00
const { data } = await servers[0].videos.list({ start: 0, count: 2 })
2019-07-19 15:30:41 +00:00
// 2 plugins do +1 to the count parameter
2021-07-15 08:02:54 +00:00
expect(data).to.have.lengthOf(4)
2019-07-19 15:30:41 +00:00
})
it('Should run filter:api.videos.list.result', async function () {
2021-07-16 07:04:35 +00:00
const { total } = await servers[0].videos.list({ start: 0, count: 0 })
2019-07-19 15:30:41 +00:00
// Plugin do +1 to the total result
2021-07-15 08:02:54 +00:00
expect(total).to.equal(11)
2019-07-19 15:30:41 +00:00
})
it('Should run filter:api.accounts.videos.list.params', async function () {
2021-07-16 08:42:24 +00:00
const { data } = await servers[0].videos.listByAccount({ handle: 'root', start: 0, count: 2 })
// 1 plugin do +1 to the count parameter
2021-07-15 08:02:54 +00:00
expect(data).to.have.lengthOf(3)
})
it('Should run filter:api.accounts.videos.list.result', async function () {
2021-07-16 08:42:24 +00:00
const { total } = await servers[0].videos.listByAccount({ handle: 'root', start: 0, count: 2 })
// Plugin do +2 to the total result
2021-07-15 08:02:54 +00:00
expect(total).to.equal(12)
})
it('Should run filter:api.video-channels.videos.list.params', async function () {
2021-07-16 08:42:24 +00:00
const { data } = await servers[0].videos.listByChannel({ handle: 'root_channel', start: 0, count: 2 })
// 1 plugin do +3 to the count parameter
2021-07-15 08:02:54 +00:00
expect(data).to.have.lengthOf(5)
})
it('Should run filter:api.video-channels.videos.list.result', async function () {
2021-07-16 08:42:24 +00:00
const { total } = await servers[0].videos.listByChannel({ handle: 'root_channel', start: 0, count: 2 })
// Plugin do +3 to the total result
2021-07-15 08:02:54 +00:00
expect(total).to.equal(13)
})
2021-01-20 14:28:34 +00:00
it('Should run filter:api.user.me.videos.list.params', async function () {
2021-07-16 07:04:35 +00:00
const { data } = await servers[0].videos.listMyVideos({ start: 0, count: 2 })
2021-01-20 14:28:34 +00:00
// 1 plugin do +4 to the count parameter
2021-07-15 08:02:54 +00:00
expect(data).to.have.lengthOf(6)
2021-01-20 14:28:34 +00:00
})
it('Should run filter:api.user.me.videos.list.result', async function () {
2021-07-16 07:04:35 +00:00
const { total } = await servers[0].videos.listMyVideos({ start: 0, count: 2 })
2021-01-20 14:28:34 +00:00
// Plugin do +4 to the total result
2021-07-15 08:02:54 +00:00
expect(total).to.equal(14)
2021-01-20 14:28:34 +00:00
})
2019-07-19 15:30:41 +00:00
it('Should run filter:api.video.get.result', async function () {
2021-07-16 07:04:35 +00:00
const video = await servers[0].videos.get({ id: videoUUID })
2021-07-15 08:02:54 +00:00
expect(video.name).to.contain('<3')
2019-07-19 08:37:35 +00:00
})
2019-07-22 09:14:58 +00:00
it('Should run filter:api.video.upload.accept.result', async function () {
2021-07-16 07:04:35 +00:00
await servers[0].videos.upload({ attributes: { name: 'video with bad word' }, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
2019-07-22 09:14:58 +00:00
})
2020-11-06 12:59:50 +00:00
it('Should run filter:api.live-video.create.accept.result', async function () {
const attributes = {
name: 'video with bad word',
privacy: VideoPrivacy.PUBLIC,
2021-07-16 07:04:35 +00:00
channelId: servers[0].store.channel.id
2020-11-06 12:59:50 +00:00
}
2021-07-16 07:04:35 +00:00
await servers[0].live.create({ fields: attributes, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
2020-11-06 12:59:50 +00:00
})
it('Should run filter:api.video.pre-import-url.accept.result', async function () {
2021-07-08 14:49:51 +00:00
const attributes = {
name: 'normal title',
privacy: VideoPrivacy.PUBLIC,
2021-07-16 07:04:35 +00:00
channelId: servers[0].store.channel.id,
2021-07-16 08:19:16 +00:00
targetUrl: FIXTURE_URLS.goodVideo + 'bad'
}
2021-07-16 07:04:35 +00:00
await servers[0].imports.importVideo({ attributes, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
})
it('Should run filter:api.video.pre-import-torrent.accept.result', async function () {
2021-07-08 14:49:51 +00:00
const attributes = {
name: 'bad torrent',
privacy: VideoPrivacy.PUBLIC,
2021-07-16 07:04:35 +00:00
channelId: servers[0].store.channel.id,
torrentfile: 'video-720p.torrent' as any
}
2021-07-16 07:04:35 +00:00
await servers[0].imports.importVideo({ attributes, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
})
it('Should run filter:api.video.post-import-url.accept.result', async function () {
this.timeout(60000)
let videoImportId: number
{
2021-07-08 14:49:51 +00:00
const attributes = {
name: 'title with bad word',
privacy: VideoPrivacy.PUBLIC,
2021-07-16 07:04:35 +00:00
channelId: servers[0].store.channel.id,
2021-07-16 08:19:16 +00:00
targetUrl: FIXTURE_URLS.goodVideo
}
2021-07-16 07:04:35 +00:00
const body = await servers[0].imports.importVideo({ attributes })
2021-07-08 14:49:51 +00:00
videoImportId = body.id
}
await waitJobs(servers)
{
2021-07-16 07:04:35 +00:00
const body = await servers[0].imports.getMyVideoImports()
2021-07-08 14:49:51 +00:00
const videoImports = body.data
const videoImport = videoImports.find(i => i.id === videoImportId)
expect(videoImport.state.id).to.equal(VideoImportState.REJECTED)
expect(videoImport.state.label).to.equal('Rejected')
}
})
it('Should run filter:api.video.post-import-torrent.accept.result', async function () {
this.timeout(60000)
let videoImportId: number
{
2021-07-08 14:49:51 +00:00
const attributes = {
name: 'title with bad word',
privacy: VideoPrivacy.PUBLIC,
2021-07-16 07:04:35 +00:00
channelId: servers[0].store.channel.id,
torrentfile: 'video-720p.torrent' as any
}
2021-07-16 07:04:35 +00:00
const body = await servers[0].imports.importVideo({ attributes })
2021-07-08 14:49:51 +00:00
videoImportId = body.id
}
await waitJobs(servers)
{
2021-07-16 07:04:35 +00:00
const { data: videoImports } = await servers[0].imports.getMyVideoImports()
const videoImport = videoImports.find(i => i.id === videoImportId)
expect(videoImport.state.id).to.equal(VideoImportState.REJECTED)
expect(videoImport.state.label).to.equal('Rejected')
}
})
2019-07-22 09:14:58 +00:00
it('Should run filter:api.video-thread.create.accept.result', async function () {
2021-07-16 07:04:35 +00:00
await servers[0].comments.createThread({
2021-07-09 12:15:11 +00:00
videoId: videoUUID,
text: 'comment with bad word',
expectedStatus: HttpStatusCode.FORBIDDEN_403
})
2019-07-22 09:14:58 +00:00
})
it('Should run filter:api.video-comment-reply.create.accept.result', async function () {
2021-07-16 07:04:35 +00:00
const created = await servers[0].comments.createThread({ videoId: videoUUID, text: 'thread' })
2021-07-09 12:15:11 +00:00
threadId = created.id
2021-07-16 07:04:35 +00:00
await servers[0].comments.addReply({
2021-07-09 12:15:11 +00:00
videoId: videoUUID,
toCommentId: threadId,
text: 'comment with bad word',
expectedStatus: HttpStatusCode.FORBIDDEN_403
})
2021-07-16 07:04:35 +00:00
await servers[0].comments.addReply({
2021-07-09 12:15:11 +00:00
videoId: videoUUID,
toCommentId: threadId,
text: 'comment with good word',
expectedStatus: HttpStatusCode.OK_200
})
2019-07-22 09:14:58 +00:00
})
it('Should run filter:api.video-threads.list.params', async function () {
2021-07-16 07:04:35 +00:00
const { data } = await servers[0].comments.listThreads({ videoId: videoUUID, start: 0, count: 0 })
2019-07-22 09:14:58 +00:00
// our plugin do +1 to the count parameter
2021-07-09 12:15:11 +00:00
expect(data).to.have.lengthOf(1)
2019-07-22 09:14:58 +00:00
})
it('Should run filter:api.video-threads.list.result', async function () {
2021-07-16 07:04:35 +00:00
const { total } = await servers[0].comments.listThreads({ videoId: videoUUID, start: 0, count: 0 })
2019-07-22 09:14:58 +00:00
// Plugin do +1 to the total result
2021-07-09 12:15:11 +00:00
expect(total).to.equal(2)
2019-07-22 09:14:58 +00:00
})
it('Should run filter:api.video-thread-comments.list.params')
it('Should run filter:api.video-thread-comments.list.result', async function () {
2021-07-16 07:04:35 +00:00
const thread = await servers[0].comments.getThread({ videoId: videoUUID, threadId })
2019-07-22 09:14:58 +00:00
expect(thread.comment.text.endsWith(' <3')).to.be.true
})
2021-07-21 14:13:20 +00:00
it('Should run filter:api.overviews.videos.list.{params,result}', async function () {
await servers[0].overviews.getVideos({ page: 1 })
// 3 because we get 3 samples per page
await servers[0].servers.waitUntilLog('Run hook filter:api.overviews.videos.list.params', 3)
await servers[0].servers.waitUntilLog('Run hook filter:api.overviews.videos.list.result', 3)
})
2019-07-22 09:14:58 +00:00
describe('Should run filter:video.auto-blacklist.result', function () {
2021-07-08 14:49:51 +00:00
async function checkIsBlacklisted (id: number | string, value: boolean) {
2021-07-16 07:04:35 +00:00
const video = await servers[0].videos.getWithToken({ id })
2019-07-22 09:14:58 +00:00
expect(video.blacklisted).to.equal(value)
}
it('Should blacklist on upload', async function () {
2021-07-16 07:04:35 +00:00
const { uuid } = await servers[0].videos.upload({ attributes: { name: 'video please blacklist me' } })
2021-07-15 08:02:54 +00:00
await checkIsBlacklisted(uuid, true)
2019-07-22 09:14:58 +00:00
})
it('Should blacklist on import', async function () {
2020-01-23 10:09:25 +00:00
this.timeout(15000)
2019-07-22 09:14:58 +00:00
const attributes = {
name: 'video please blacklist me',
2021-07-16 08:19:16 +00:00
targetUrl: FIXTURE_URLS.goodVideo,
2021-07-16 07:04:35 +00:00
channelId: servers[0].store.channel.id
2019-07-22 09:14:58 +00:00
}
2021-07-16 07:04:35 +00:00
const body = await servers[0].imports.importVideo({ attributes })
2021-07-08 14:49:51 +00:00
await checkIsBlacklisted(body.video.uuid, true)
2019-07-22 09:14:58 +00:00
})
it('Should blacklist on update', async function () {
2021-07-16 07:04:35 +00:00
const { uuid } = await servers[0].videos.upload({ attributes: { name: 'video' } })
2021-07-15 08:02:54 +00:00
await checkIsBlacklisted(uuid, false)
2019-07-22 09:14:58 +00:00
2021-07-16 07:04:35 +00:00
await servers[0].videos.update({ id: uuid, attributes: { name: 'please blacklist me' } })
2021-07-15 08:02:54 +00:00
await checkIsBlacklisted(uuid, true)
2019-07-22 09:14:58 +00:00
})
it('Should blacklist on remote upload', async function () {
2021-06-14 14:52:22 +00:00
this.timeout(120000)
2019-07-22 09:14:58 +00:00
2021-07-16 07:04:35 +00:00
const { uuid } = await servers[1].videos.upload({ attributes: { name: 'remote please blacklist me' } })
2019-07-22 09:14:58 +00:00
await waitJobs(servers)
2021-07-15 08:02:54 +00:00
await checkIsBlacklisted(uuid, true)
2019-07-22 09:14:58 +00:00
})
it('Should blacklist on remote update', async function () {
2021-06-14 14:52:22 +00:00
this.timeout(120000)
2019-07-22 09:14:58 +00:00
2021-07-16 07:04:35 +00:00
const { uuid } = await servers[1].videos.upload({ attributes: { name: 'video' } })
2019-07-22 09:14:58 +00:00
await waitJobs(servers)
2021-07-15 08:02:54 +00:00
await checkIsBlacklisted(uuid, false)
2019-07-22 09:14:58 +00:00
2021-07-16 07:04:35 +00:00
await servers[1].videos.update({ id: uuid, attributes: { name: 'please blacklist me' } })
2019-07-22 09:14:58 +00:00
await waitJobs(servers)
2021-07-15 08:02:54 +00:00
await checkIsBlacklisted(uuid, true)
2019-07-22 09:14:58 +00:00
})
})
2019-10-25 11:54:32 +00:00
describe('Should run filter:api.user.signup.allowed.result', function () {
it('Should run on config endpoint', async function () {
2021-07-16 07:04:35 +00:00
const body = await servers[0].config.getConfig()
2021-07-07 09:51:09 +00:00
expect(body.signup.allowed).to.be.true
2019-10-25 11:54:32 +00:00
})
it('Should allow a signup', async function () {
2021-07-16 07:04:35 +00:00
await servers[0].users.register({ username: 'john', password: 'password' })
2019-10-25 11:54:32 +00:00
})
it('Should not allow a signup', async function () {
2021-07-16 07:04:35 +00:00
const res = await servers[0].users.register({
2021-07-13 12:23:01 +00:00
username: 'jma',
password: 'password',
expectedStatus: HttpStatusCode.FORBIDDEN_403
})
2019-10-25 11:54:32 +00:00
expect(res.body.error).to.equal('No jma')
})
})
2021-03-23 10:54:08 +00:00
describe('Download hooks', function () {
const downloadVideos: VideoDetails[] = []
before(async function () {
2021-06-15 06:21:39 +00:00
this.timeout(120000)
2021-03-23 10:54:08 +00:00
2021-07-16 07:04:35 +00:00
await servers[0].config.updateCustomSubConfig({
2021-07-07 09:51:09 +00:00
newConfig: {
transcoding: {
webtorrent: {
enabled: true
},
hls: {
enabled: true
}
2021-03-23 10:54:08 +00:00
}
}
})
const uuids: string[] = []
for (const name of [ 'bad torrent', 'bad file', 'bad playlist file' ]) {
2021-07-16 07:04:35 +00:00
const uuid = (await servers[0].videos.quickUpload({ name: name })).uuid
2021-03-23 10:54:08 +00:00
uuids.push(uuid)
}
await waitJobs(servers)
for (const uuid of uuids) {
2021-07-16 07:04:35 +00:00
downloadVideos.push(await servers[0].videos.get({ id: uuid }))
2021-03-23 10:54:08 +00:00
}
})
it('Should run filter:api.download.torrent.allowed.result', async function () {
const res = await makeRawRequest(downloadVideos[0].files[0].torrentDownloadUrl, 403)
expect(res.body.error).to.equal('Liu Bei')
await makeRawRequest(downloadVideos[1].files[0].torrentDownloadUrl, 200)
await makeRawRequest(downloadVideos[2].files[0].torrentDownloadUrl, 200)
})
it('Should run filter:api.download.video.allowed.result', async function () {
{
const res = await makeRawRequest(downloadVideos[1].files[0].fileDownloadUrl, 403)
expect(res.body.error).to.equal('Cao Cao')
await makeRawRequest(downloadVideos[0].files[0].fileDownloadUrl, 200)
await makeRawRequest(downloadVideos[2].files[0].fileDownloadUrl, 200)
}
{
const res = await makeRawRequest(downloadVideos[2].streamingPlaylists[0].files[0].fileDownloadUrl, 403)
expect(res.body.error).to.equal('Sun Jian')
await makeRawRequest(downloadVideos[2].files[0].fileDownloadUrl, 200)
await makeRawRequest(downloadVideos[0].streamingPlaylists[0].files[0].fileDownloadUrl, 200)
await makeRawRequest(downloadVideos[1].streamingPlaylists[0].files[0].fileDownloadUrl, 200)
}
})
})
2021-03-23 16:18:18 +00:00
describe('Embed filters', function () {
const embedVideos: VideoDetails[] = []
const embedPlaylists: VideoPlaylist[] = []
before(async function () {
this.timeout(60000)
2021-07-16 07:04:35 +00:00
await servers[0].config.updateCustomSubConfig({
2021-07-07 09:51:09 +00:00
newConfig: {
transcoding: {
enabled: false
}
2021-03-23 16:18:18 +00:00
}
})
for (const name of [ 'bad embed', 'good embed' ]) {
{
2021-07-16 07:04:35 +00:00
const uuid = (await servers[0].videos.quickUpload({ name: name })).uuid
embedVideos.push(await servers[0].videos.get({ id: uuid }))
2021-03-23 16:18:18 +00:00
}
{
2021-07-16 07:04:35 +00:00
const attributes = { displayName: name, videoChannelId: servers[0].store.channel.id, privacy: VideoPlaylistPrivacy.PUBLIC }
const { id } = await servers[0].playlists.create({ attributes })
2021-03-23 16:18:18 +00:00
2021-07-16 07:04:35 +00:00
const playlist = await servers[0].playlists.get({ playlistId: id })
2021-07-08 13:54:39 +00:00
embedPlaylists.push(playlist)
2021-03-23 16:18:18 +00:00
}
}
})
it('Should run filter:html.embed.video.allowed.result', async function () {
const res = await makeRawRequest(servers[0].url + embedVideos[0].embedPath, 200)
expect(res.text).to.equal('Lu Bu')
})
it('Should run filter:html.embed.video-playlist.allowed.result', async function () {
const res = await makeRawRequest(servers[0].url + embedPlaylists[0].embedPath, 200)
expect(res.text).to.equal('Diao Chan')
})
})
2021-03-24 08:16:48 +00:00
describe('Search filters', function () {
before(async function () {
2021-07-16 07:04:35 +00:00
await servers[0].config.updateCustomSubConfig({
2021-07-07 09:51:09 +00:00
newConfig: {
search: {
searchIndex: {
enabled: true,
isDefaultSearch: false,
disableLocalSearch: false
}
2021-03-24 08:16:48 +00:00
}
}
})
})
it('Should run filter:api.search.videos.local.list.{params,result}', async function () {
2021-07-16 07:04:35 +00:00
await servers[0].search.advancedVideoSearch({
2021-07-06 13:22:51 +00:00
search: {
search: 'Sun Quan'
}
2021-03-24 08:16:48 +00:00
})
2021-07-16 07:04:35 +00:00
await servers[0].servers.waitUntilLog('Run hook filter:api.search.videos.local.list.params', 1)
await servers[0].servers.waitUntilLog('Run hook filter:api.search.videos.local.list.result', 1)
2021-03-24 08:16:48 +00:00
})
it('Should run filter:api.search.videos.index.list.{params,result}', async function () {
2021-07-16 07:04:35 +00:00
await servers[0].search.advancedVideoSearch({
2021-07-06 13:22:51 +00:00
search: {
search: 'Sun Quan',
searchTarget: 'search-index'
}
2021-03-24 08:16:48 +00:00
})
2021-07-16 07:04:35 +00:00
await servers[0].servers.waitUntilLog('Run hook filter:api.search.videos.local.list.params', 1)
await servers[0].servers.waitUntilLog('Run hook filter:api.search.videos.local.list.result', 1)
await servers[0].servers.waitUntilLog('Run hook filter:api.search.videos.index.list.params', 1)
await servers[0].servers.waitUntilLog('Run hook filter:api.search.videos.index.list.result', 1)
2021-03-24 08:16:48 +00:00
})
it('Should run filter:api.search.video-channels.local.list.{params,result}', async function () {
2021-07-16 07:04:35 +00:00
await servers[0].search.advancedChannelSearch({
2021-07-06 13:22:51 +00:00
search: {
search: 'Sun Ce'
}
2021-03-24 08:16:48 +00:00
})
2021-07-16 07:04:35 +00:00
await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-channels.local.list.params', 1)
await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-channels.local.list.result', 1)
2021-03-24 08:16:48 +00:00
})
it('Should run filter:api.search.video-channels.index.list.{params,result}', async function () {
2021-07-16 07:04:35 +00:00
await servers[0].search.advancedChannelSearch({
2021-07-06 13:22:51 +00:00
search: {
search: 'Sun Ce',
searchTarget: 'search-index'
}
2021-03-24 08:16:48 +00:00
})
2021-07-16 07:04:35 +00:00
await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-channels.local.list.params', 1)
await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-channels.local.list.result', 1)
await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-channels.index.list.params', 1)
await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-channels.index.list.result', 1)
2021-03-24 08:16:48 +00:00
})
2021-06-17 14:02:38 +00:00
it('Should run filter:api.search.video-playlists.local.list.{params,result}', async function () {
2021-07-16 07:04:35 +00:00
await servers[0].search.advancedPlaylistSearch({
2021-07-06 13:22:51 +00:00
search: {
search: 'Sun Jian'
}
2021-06-17 14:02:38 +00:00
})
2021-07-16 07:04:35 +00:00
await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-playlists.local.list.params', 1)
await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-playlists.local.list.result', 1)
2021-06-17 14:02:38 +00:00
})
it('Should run filter:api.search.video-playlists.index.list.{params,result}', async function () {
2021-07-16 07:04:35 +00:00
await servers[0].search.advancedPlaylistSearch({
2021-07-06 13:22:51 +00:00
search: {
search: 'Sun Jian',
searchTarget: 'search-index'
}
2021-06-17 14:02:38 +00:00
})
2021-07-16 07:04:35 +00:00
await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-playlists.local.list.params', 1)
await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-playlists.local.list.result', 1)
await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-playlists.index.list.params', 1)
await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-playlists.index.list.result', 1)
2021-06-17 14:02:38 +00:00
})
2021-03-24 08:16:48 +00:00
})
2019-07-19 08:37:35 +00:00
after(async function () {
2019-07-19 15:30:41 +00:00
await cleanupTests(servers)
2019-07-19 08:37:35 +00:00
})
})