X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fapi%2Fsearch%2Fsearch-activitypub-video-channels.ts;h=003bd34d03ce0f22c0378e7a6dee5255ba0e457a;hb=HEAD;hp=5f5322d03afb09401da24a4c95222fc49621e829;hpb=28dca0a2211524bbf3ad17666c607eb6325763b8;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/api/search/search-activitypub-video-channels.ts b/server/tests/api/search/search-activitypub-video-channels.ts index 5f5322d03..003bd34d0 100644 --- a/server/tests/api/search/search-activitypub-video-channels.ts +++ b/server/tests/api/search/search-activitypub-video-channels.ts @@ -1,7 +1,6 @@ /* 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 { VideoChannel } from '@shared/models' import { @@ -15,8 +14,6 @@ import { waitJobs } from '@shared/server-commands' -const expect = chai.expect - describe('Test ActivityPub video channels search', function () { let servers: PeerTubeServer[] let userServer2Token: string @@ -90,7 +87,7 @@ describe('Test ActivityPub video channels search', function () { it('Should search a local video channel', async function () { const searches = [ servers[0].url + '/video-channels/channel1_server1', - 'channel1_server1@localhost:' + servers[0].port + 'channel1_server1@' + servers[0].host ] for (const search of searches) { @@ -142,7 +139,7 @@ describe('Test ActivityPub video channels search', function () { servers[1].url + '/video-channels/channel1_server2', servers[1].url + '/c/channel1_server2', servers[1].url + '/c/channel1_server2/videos', - 'channel1_server2@localhost:' + servers[1].port + 'channel1_server2@' + servers[1].host ] for (const search of searches) { @@ -172,7 +169,7 @@ describe('Test ActivityPub video channels search', function () { const { total, data } = await servers[0].videos.listByChannel({ token: null, - handle: 'channel1_server2@localhost:' + servers[1].port + handle: 'channel1_server2@' + servers[1].host }) expect(total).to.equal(0) expect(data).to.have.lengthOf(0) @@ -180,7 +177,7 @@ describe('Test ActivityPub video channels search', function () { it('Should list video channel videos of server 2 with token', async function () { const { total, data } = await servers[0].videos.listByChannel({ - handle: 'channel1_server2@localhost:' + servers[1].port + handle: 'channel1_server2@' + servers[1].host }) expect(total).to.equal(1) @@ -188,7 +185,7 @@ describe('Test ActivityPub video channels search', function () { }) it('Should update video channel of server 2, and refresh it on server 1', async function () { - this.timeout(60000) + this.timeout(120000) await servers[1].channels.update({ token: userServer2Token, @@ -214,7 +211,7 @@ describe('Test ActivityPub video channels search', function () { }) it('Should update and add a video on server 2, and update it on server 1 after a search', async function () { - this.timeout(60000) + this.timeout(120000) await servers[1].videos.update({ token: userServer2Token, id: videoServer2UUID, attributes: { name: 'video 1 updated' } }) await servers[1].videos.upload({ token: userServer2Token, attributes: { name: 'video 2 server 2', channelId: channelIdServer2 } }) @@ -229,7 +226,7 @@ describe('Test ActivityPub video channels search', function () { await waitJobs(servers) - const handle = 'channel1_server2@localhost:' + servers[1].port + const handle = 'channel1_server2@' + servers[1].host const { total, data } = await servers[0].videos.listByChannel({ handle, sort: '-createdAt' }) expect(total).to.equal(2) @@ -238,7 +235,7 @@ describe('Test ActivityPub video channels search', function () { }) it('Should delete video channel of server 2, and delete it on server 1', async function () { - this.timeout(60000) + this.timeout(120000) await servers[1].channels.delete({ token: userServer2Token, channelName: 'channel1_server2' })