X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fapi%2Fsearch%2Fsearch-activitypub-videos.ts;h=20249b1f103ccc31b1487361ffdcc680c5472cf0;hb=6d9ed0b6cb439f53e6df2aa1e751369bdc0f76ab;hp=b3cfcacca99e796faab0b0c746b0a3a6857a44f2;hpb=ac27887774e63d99f4e227fbe18846f143cc4b3c;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..20249b1f1 100644 --- a/server/tests/api/search/search-activitypub-videos.ts +++ b/server/tests/api/search/search-activitypub-videos.ts @@ -2,16 +2,18 @@ import 'mocha' import * as chai 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' +} from '@shared/server-commands' const expect = chai.expect @@ -28,6 +30,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 +50,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 +60,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 +70,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 +80,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 +92,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 +156,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 +182,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