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

123 lines
3.2 KiB
TypeScript
Raw Normal View History

2020-06-10 08:58:44 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import 'mocha'
import * as chai from 'chai'
import {
cleanupTests,
createSingleServer,
doubleFollow,
PeerTubeServer,
SearchCommand,
setAccessTokensToServers
} from '@shared/extra-utils'
2020-06-10 08:58:44 +00:00
import { VideoChannel } from '@shared/models'
const expect = chai.expect
describe('Test channels search', function () {
let server: PeerTubeServer
let remoteServer: PeerTubeServer
2021-07-06 13:22:51 +00:00
let command: SearchCommand
2020-06-10 08:58:44 +00:00
before(async function () {
2021-07-28 09:13:36 +00:00
this.timeout(120000)
2020-06-10 08:58:44 +00:00
2021-07-16 07:47:51 +00:00
server = await createSingleServer(1)
remoteServer = await createSingleServer(2, { transcoding: { enabled: false } })
2020-06-10 08:58:44 +00:00
await setAccessTokensToServers([ server, remoteServer ])
2020-06-10 08:58:44 +00:00
{
await server.users.create({ username: 'user1' })
2020-06-10 08:58:44 +00:00
const channel = {
name: 'squall_channel',
displayName: 'Squall channel'
}
2021-07-16 07:04:35 +00:00
await server.channels.create({ attributes: channel })
2020-06-10 08:58:44 +00:00
}
2021-07-06 13:22:51 +00:00
{
await remoteServer.users.create({ username: 'user1' })
const channel = {
name: 'zell_channel',
displayName: 'Zell channel'
}
const { id } = await remoteServer.channels.create({ attributes: channel })
await remoteServer.videos.upload({ attributes: { channelId: id } })
}
await doubleFollow(server, remoteServer)
2021-07-16 07:04:35 +00:00
command = server.search
2020-06-10 08:58:44 +00:00
})
it('Should make a simple search and not have results', async function () {
2021-07-06 13:22:51 +00:00
const body = await command.searchChannels({ search: 'abc' })
2020-06-10 08:58:44 +00:00
2021-07-06 13:22:51 +00:00
expect(body.total).to.equal(0)
expect(body.data).to.have.lengthOf(0)
2020-06-10 08:58:44 +00:00
})
it('Should make a search and have results', async function () {
{
const search = {
search: 'Squall',
start: 0,
count: 1
}
2021-07-06 13:22:51 +00:00
const body = await command.advancedChannelSearch({ search })
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
2020-06-10 08:58:44 +00:00
2021-07-06 13:22:51 +00:00
const channel: VideoChannel = body.data[0]
2020-06-10 08:58:44 +00:00
expect(channel.name).to.equal('squall_channel')
expect(channel.displayName).to.equal('Squall channel')
}
{
const search = {
search: 'Squall',
start: 1,
count: 1
}
2021-07-06 13:22:51 +00:00
const body = await command.advancedChannelSearch({ search })
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(0)
2020-06-10 08:58:44 +00:00
}
})
it('Should filter by host', async function () {
{
const search = { search: 'channel', host: remoteServer.host }
const body = await command.advancedChannelSearch({ search })
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
expect(body.data[0].displayName).to.equal('Zell channel')
}
{
const search = { search: 'Sq', host: server.host }
const body = await command.advancedChannelSearch({ search })
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(1)
expect(body.data[0].displayName).to.equal('Squall channel')
}
{
const search = { search: 'Squall', host: 'example.com' }
const body = await command.advancedChannelSearch({ search })
expect(body.total).to.equal(0)
expect(body.data).to.have.lengthOf(0)
}
})
2020-06-10 08:58:44 +00:00
after(async function () {
await cleanupTests([ server ])
})
})