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

81 lines
2.0 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'
import {
addVideoChannel,
cleanupTests,
createUser,
flushAndRunServer,
2021-07-06 15:22:51 +02:00
SearchCommand,
2020-06-10 10:58:44 +02:00
ServerInfo,
setAccessTokensToServers
2021-07-06 15:22:51 +02:00
} from '@shared/extra-utils'
2020-06-10 10:58:44 +02:00
import { VideoChannel } from '@shared/models'
const expect = chai.expect
describe('Test channels search', function () {
let server: ServerInfo = 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)
server = await flushAndRunServer(1)
await setAccessTokensToServers([ server ])
{
await createUser({ url: server.url, accessToken: server.accessToken, username: 'user1', password: 'password' })
const channel = {
name: 'squall_channel',
displayName: 'Squall channel'
}
await addVideoChannel(server.url, server.accessToken, channel)
}
2021-07-06 15:22:51 +02:00
command = server.searchCommand
2020-06-10 10:58:44 +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.searchChannels({ search: 'abc' })
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 () {
{
const search = {
search: 'Squall',
start: 0,
count: 1
}
2021-07-06 15:22:51 +02:00
const body = await command.advancedChannelSearch({ search })
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 channel: VideoChannel = body.data[0]
2020-06-10 10:58:44 +02: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 15:22:51 +02:00
const body = await command.advancedChannelSearch({ search })
expect(body.total).to.equal(1)
expect(body.data).to.have.lengthOf(0)
2020-06-10 10:58:44 +02:00
}
})
after(async function () {
await cleanupTests([ server ])
})
})