X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fapi%2Fsearch%2Fsearch-activitypub-video-playlists.ts;h=b9a42429227fb13885a25fb6e6f515729436d96e;hb=7804e577de25345da51ac3d88f6121108012b523;hp=46105c12c0f2c9513b1d36e3bf95a2606b6387a0;hpb=d23dd9fbfc4d26026352c10f81d2795ceaf2908a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/api/search/search-activitypub-video-playlists.ts b/server/tests/api/search/search-activitypub-video-playlists.ts index 46105c12c..b9a424292 100644 --- a/server/tests/api/search/search-activitypub-video-playlists.ts +++ b/server/tests/api/search/search-activitypub-video-playlists.ts @@ -2,22 +2,23 @@ import 'mocha' import * as chai from 'chai' +import { wait } from '@shared/core-utils' +import { VideoPlaylistPrivacy } from '@shared/models' import { cleanupTests, - flushAndRunMultipleServers, + createMultipleServers, + PeerTubeServer, SearchCommand, - ServerInfo, setAccessTokensToServers, + setDefaultAccountAvatar, setDefaultVideoChannel, - wait, waitJobs -} from '@shared/extra-utils' -import { VideoPlaylistPrivacy } from '@shared/models' +} from '@shared/server-commands' const expect = chai.expect describe('Test ActivityPub playlists search', function () { - let servers: ServerInfo[] + let servers: PeerTubeServer[] let playlistServer1UUID: string let playlistServer2UUID: string let video2Server2: string @@ -27,51 +28,52 @@ describe('Test ActivityPub playlists search', function () { before(async function () { this.timeout(120000) - servers = await flushAndRunMultipleServers(2) + servers = await createMultipleServers(2) await setAccessTokensToServers(servers) await setDefaultVideoChannel(servers) + await setDefaultAccountAvatar(servers) { - const video1 = (await servers[0].videosCommand.quickUpload({ name: 'video 1' })).uuid - const video2 = (await servers[0].videosCommand.quickUpload({ name: 'video 2' })).uuid + const video1 = (await servers[0].videos.quickUpload({ name: 'video 1' })).uuid + const video2 = (await servers[0].videos.quickUpload({ name: 'video 2' })).uuid const attributes = { displayName: 'playlist 1 on server 1', privacy: VideoPlaylistPrivacy.PUBLIC, - videoChannelId: servers[0].videoChannel.id + videoChannelId: servers[0].store.channel.id } - const created = await servers[0].playlistsCommand.create({ attributes }) + const created = await servers[0].playlists.create({ attributes }) playlistServer1UUID = created.uuid for (const videoId of [ video1, video2 ]) { - await servers[0].playlistsCommand.addElement({ playlistId: playlistServer1UUID, attributes: { videoId } }) + await servers[0].playlists.addElement({ playlistId: playlistServer1UUID, attributes: { videoId } }) } } { - const videoId = (await servers[1].videosCommand.quickUpload({ name: 'video 1' })).uuid - video2Server2 = (await servers[1].videosCommand.quickUpload({ name: 'video 2' })).uuid + const videoId = (await servers[1].videos.quickUpload({ name: 'video 1' })).uuid + video2Server2 = (await servers[1].videos.quickUpload({ name: 'video 2' })).uuid const attributes = { displayName: 'playlist 1 on server 2', privacy: VideoPlaylistPrivacy.PUBLIC, - videoChannelId: servers[1].videoChannel.id + videoChannelId: servers[1].store.channel.id } - const created = await servers[1].playlistsCommand.create({ attributes }) + const created = await servers[1].playlists.create({ attributes }) playlistServer2UUID = created.uuid - await servers[1].playlistsCommand.addElement({ playlistId: playlistServer2UUID, attributes: { videoId } }) + await servers[1].playlists.addElement({ playlistId: playlistServer2UUID, attributes: { videoId } }) } await waitJobs(servers) - command = servers[0].searchCommand + command = servers[0].search }) it('Should not find a remote playlist', async function () { { - const search = 'http://localhost:' + servers[1].port + '/video-playlists/43' + const search = servers[1].url + '/video-playlists/43' const body = await command.searchPlaylists({ search, token: servers[0].accessToken }) expect(body.total).to.equal(0) @@ -81,7 +83,7 @@ describe('Test ActivityPub playlists search', function () { { // Without token - const search = 'http://localhost:' + servers[1].port + '/video-playlists/' + playlistServer2UUID + const search = servers[1].url + '/video-playlists/' + playlistServer2UUID const body = await command.searchPlaylists({ search }) expect(body.total).to.equal(0) @@ -91,7 +93,7 @@ describe('Test ActivityPub playlists search', function () { }) it('Should search a local playlist', async function () { - const search = 'http://localhost:' + servers[0].port + '/video-playlists/' + playlistServer1UUID + const search = servers[0].url + '/video-playlists/' + playlistServer1UUID const body = await command.searchPlaylists({ search }) expect(body.total).to.equal(1) @@ -103,8 +105,8 @@ describe('Test ActivityPub playlists search', function () { it('Should search a local playlist with an alternative URL', async function () { const searches = [ - 'http://localhost:' + servers[0].port + '/videos/watch/playlist/' + playlistServer1UUID, - 'http://localhost:' + servers[0].port + '/w/p/' + playlistServer1UUID + servers[0].url + '/videos/watch/playlist/' + playlistServer1UUID, + servers[0].url + '/w/p/' + playlistServer1UUID ] for (const search of searches) { @@ -120,11 +122,30 @@ describe('Test ActivityPub playlists search', function () { } }) + it('Should search a local playlist with a query in URL', async function () { + const searches = [ + servers[0].url + '/videos/watch/playlist/' + playlistServer1UUID, + servers[0].url + '/w/p/' + playlistServer1UUID + ] + + for (const search of searches) { + for (const token of [ undefined, servers[0].accessToken ]) { + const body = await command.searchPlaylists({ search: search + '?param=1', 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].displayName).to.equal('playlist 1 on server 1') + expect(body.data[0].videosLength).to.equal(2) + } + } + }) + it('Should search a remote playlist', async function () { const searches = [ - 'http://localhost:' + servers[1].port + '/video-playlists/' + playlistServer2UUID, - 'http://localhost:' + servers[1].port + '/videos/watch/playlist/' + playlistServer2UUID, - 'http://localhost:' + servers[1].port + '/w/p/' + playlistServer2UUID + servers[1].url + '/video-playlists/' + playlistServer2UUID, + servers[1].url + '/videos/watch/playlist/' + playlistServer2UUID, + servers[1].url + '/w/p/' + playlistServer2UUID ] for (const search of searches) { @@ -139,7 +160,7 @@ describe('Test ActivityPub playlists search', function () { }) it('Should not list this remote playlist', async function () { - const body = await servers[0].playlistsCommand.list({ start: 0, count: 10 }) + const body = await servers[0].playlists.list({ start: 0, count: 10 }) expect(body.total).to.equal(1) expect(body.data).to.have.lengthOf(1) expect(body.data[0].displayName).to.equal('playlist 1 on server 1') @@ -148,14 +169,14 @@ describe('Test ActivityPub playlists search', function () { it('Should update the playlist of server 2, and refresh it on server 1', async function () { this.timeout(60000) - await servers[1].playlistsCommand.addElement({ playlistId: playlistServer2UUID, attributes: { videoId: video2Server2 } }) + await servers[1].playlists.addElement({ playlistId: playlistServer2UUID, attributes: { videoId: video2Server2 } }) await waitJobs(servers) // Expire playlist await wait(10000) // Will run refresh async - const search = 'http://localhost:' + servers[1].port + '/video-playlists/' + playlistServer2UUID + const search = servers[1].url + '/video-playlists/' + playlistServer2UUID await command.searchPlaylists({ search, token: servers[0].accessToken }) // Wait refresh @@ -172,14 +193,14 @@ describe('Test ActivityPub playlists search', function () { it('Should delete playlist of server 2, and delete it on server 1', async function () { this.timeout(60000) - await servers[1].playlistsCommand.delete({ playlistId: playlistServer2UUID }) + await servers[1].playlists.delete({ playlistId: playlistServer2UUID }) await waitJobs(servers) // Expiration await wait(10000) // Will run refresh async - const search = 'http://localhost:' + servers[1].port + '/video-playlists/' + playlistServer2UUID + const search = servers[1].url + '/video-playlists/' + playlistServer2UUID await command.searchPlaylists({ search, token: servers[0].accessToken }) // Wait refresh