X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fapi%2Fsearch%2Fsearch-activitypub-videos.ts;h=4c71184227f31271740c0a9bd27dfeea62817e48;hb=17ecdf61ce1d374cc8ba17601b93c9bda08112b2;hp=b3cfcacca99e796faab0b0c746b0a3a6857a44f2;hpb=c4fa01f7c45b66b112ebd08abce744b7c4041feb;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/api/search/search-activitypub-videos.ts b/server/tests/api/search/search-activitypub-videos.ts index b3cfcacca..4c7118422 100644 --- a/server/tests/api/search/search-activitypub-videos.ts +++ b/server/tests/api/search/search-activitypub-videos.ts @@ -1,19 +1,18 @@ /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ -import 'mocha' -import * as chai from 'chai' +import { expect } from 'chai' +import { wait } from '@shared/core-utils' +import { VideoPrivacy } from '@shared/models' import { cleanupTests, createMultipleServers, PeerTubeServer, SearchCommand, setAccessTokensToServers, - wait, + setDefaultAccountAvatar, + setDefaultVideoChannel, waitJobs -} from '@shared/extra-utils' -import { VideoPrivacy } from '@shared/models' - -const expect = chai.expect +} from '@shared/server-commands' describe('Test ActivityPub videos search', function () { let servers: PeerTubeServer[] @@ -28,6 +27,8 @@ describe('Test ActivityPub videos search', function () { servers = await createMultipleServers(2) await setAccessTokensToServers(servers) + await setDefaultVideoChannel(servers) + await setDefaultAccountAvatar(servers) { const { uuid } = await servers[0].videos.upload({ attributes: { name: 'video 1 on server 1' } }) @@ -46,7 +47,7 @@ describe('Test ActivityPub videos search', function () { it('Should not find a remote video', async function () { { - const search = 'http://localhost:' + servers[1].port + '/videos/watch/43' + const search = servers[1].url + '/videos/watch/43' const body = await command.searchVideos({ search, token: servers[0].accessToken }) expect(body.total).to.equal(0) @@ -56,7 +57,7 @@ describe('Test ActivityPub videos search', function () { { // Without token - const search = 'http://localhost:' + servers[1].port + '/videos/watch/' + videoServer2UUID + const search = servers[1].url + '/videos/watch/' + videoServer2UUID const body = await command.searchVideos({ search }) expect(body.total).to.equal(0) @@ -66,7 +67,7 @@ describe('Test ActivityPub videos search', function () { }) it('Should search a local video', async function () { - const search = 'http://localhost:' + servers[0].port + '/videos/watch/' + videoServer1UUID + const search = servers[0].url + '/videos/watch/' + videoServer1UUID const body = await command.searchVideos({ search }) expect(body.total).to.equal(1) @@ -76,7 +77,7 @@ describe('Test ActivityPub videos search', function () { }) it('Should search a local video with an alternative URL', async function () { - const search = 'http://localhost:' + servers[0].port + '/w/' + videoServer1UUID + const search = servers[0].url + '/w/' + videoServer1UUID const body1 = await command.searchVideos({ search }) const body2 = await command.searchVideos({ search, token: servers[0].accessToken }) @@ -88,10 +89,28 @@ describe('Test ActivityPub videos search', function () { } }) + it('Should search a local video with a query in URL', async function () { + const searches = [ + servers[0].url + '/w/' + videoServer1UUID, + servers[0].url + '/videos/watch/' + videoServer1UUID + ] + + for (const search of searches) { + for (const token of [ undefined, servers[0].accessToken ]) { + const body = await command.searchVideos({ search: search + '?startTime=4', token }) + + expect(body.total).to.equal(1) + expect(body.data).to.be.an('array') + expect(body.data).to.have.lengthOf(1) + expect(body.data[0].name).to.equal('video 1 on server 1') + } + } + }) + it('Should search a remote video', async function () { const searches = [ - 'http://localhost:' + servers[1].port + '/w/' + videoServer2UUID, - 'http://localhost:' + servers[1].port + '/videos/watch/' + videoServer2UUID + servers[1].url + '/w/' + videoServer2UUID, + servers[1].url + '/videos/watch/' + videoServer2UUID ] for (const search of searches) { @@ -134,7 +153,7 @@ describe('Test ActivityPub videos search', function () { await wait(10000) // Will run refresh async - const search = 'http://localhost:' + servers[1].port + '/videos/watch/' + videoServer2UUID + const search = servers[1].url + '/videos/watch/' + videoServer2UUID await command.searchVideos({ search, token: servers[0].accessToken }) // Wait refresh @@ -160,7 +179,7 @@ describe('Test ActivityPub videos search', function () { await wait(10000) // Will run refresh async - const search = 'http://localhost:' + servers[1].port + '/videos/watch/' + videoServer2UUID + const search = servers[1].url + '/videos/watch/' + videoServer2UUID await command.searchVideos({ search, token: servers[0].accessToken }) // Wait refresh