X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fapi%2Fnotifications%2Fuser-notifications.ts;h=edc95b0699631aac611d9e18435adb0684bda23e;hb=34caef7fc0710623c6894549423813d53f65b303;hp=e5f6aa864427d185666f4a32818f2194a0ac4986;hpb=8eb07b01306429abe5c538ff7aa0a16e44fff26f;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/api/notifications/user-notifications.ts b/server/tests/api/notifications/user-notifications.ts index e5f6aa864..edc95b069 100644 --- a/server/tests/api/notifications/user-notifications.ts +++ b/server/tests/api/notifications/user-notifications.ts @@ -24,7 +24,7 @@ import { prepareNotificationsTest } from '../../../../shared/extra-utils/users/user-notifications' import { addUserSubscription, removeUserSubscription } from '../../../../shared/extra-utils/users/user-subscriptions' -import { getBadVideoUrl, getYoutubeVideoUrl, importVideo } from '../../../../shared/extra-utils/videos/video-imports' +import { getBadVideoUrl, getGoodVideoUrl, importVideo } from '../../../../shared/extra-utils/videos/video-imports' import { UserNotification, UserNotificationType } from '../../../../shared/models/users' import { VideoPrivacy } from '../../../../shared/models/videos' @@ -65,7 +65,7 @@ describe('Test user notifications', function () { }) it('Should not send notifications if the user does not follow the video publisher', async function () { - this.timeout(10000) + this.timeout(30000) await uploadRandomVideoOnServers(servers, 1) @@ -97,7 +97,7 @@ describe('Test user notifications', function () { }) it('Should send a new video notification on a scheduled publication', async function () { - this.timeout(20000) + this.timeout(30000) // In 2 seconds const updateAt = new Date(new Date().getTime() + 2000) @@ -136,7 +136,7 @@ describe('Test user notifications', function () { }) it('Should not send a notification before the video is published', async function () { - this.timeout(20000) + this.timeout(30000) const updateAt = new Date(new Date().getTime() + 1000000) @@ -154,7 +154,7 @@ describe('Test user notifications', function () { }) it('Should send a new video notification when a video becomes public', async function () { - this.timeout(10000) + this.timeout(30000) const data = { privacy: VideoPrivacy.PRIVATE } const { name, uuid } = await uploadRandomVideoOnServers(servers, 1, data) @@ -168,7 +168,7 @@ describe('Test user notifications', function () { }) it('Should send a new video notification when a remote video becomes public', async function () { - this.timeout(20000) + this.timeout(30000) const data = { privacy: VideoPrivacy.PRIVATE } const { name, uuid } = await uploadRandomVideoOnServers(servers, 2, data) @@ -182,7 +182,7 @@ describe('Test user notifications', function () { }) it('Should not send a new video notification when a video becomes unlisted', async function () { - this.timeout(20000) + this.timeout(30000) const data = { privacy: VideoPrivacy.PRIVATE } const { name, uuid } = await uploadRandomVideoOnServers(servers, 1, data) @@ -193,7 +193,7 @@ describe('Test user notifications', function () { }) it('Should not send a new video notification when a remote video becomes unlisted', async function () { - this.timeout(20000) + this.timeout(30000) const data = { privacy: VideoPrivacy.PRIVATE } const { name, uuid } = await uploadRandomVideoOnServers(servers, 2, data) @@ -213,7 +213,7 @@ describe('Test user notifications', function () { name, channelId, privacy: VideoPrivacy.PUBLIC, - targetUrl: getYoutubeVideoUrl() + targetUrl: getGoodVideoUrl() } const res = await importVideo(servers[0].url, servers[0].accessToken, attributes) const uuid = res.body.video.uuid @@ -237,7 +237,7 @@ describe('Test user notifications', function () { }) it('Should not send a notification if transcoding is not enabled', async function () { - this.timeout(10000) + this.timeout(30000) const { name, uuid } = await uploadRandomVideoOnServers(servers, 1) await waitJobs(servers) @@ -284,7 +284,7 @@ describe('Test user notifications', function () { name, channelId, privacy: VideoPrivacy.PUBLIC, - targetUrl: getYoutubeVideoUrl(), + targetUrl: getGoodVideoUrl(), waitTranscoding: true } const res = await importVideo(servers[1].url, servers[1].accessToken, attributes) @@ -371,13 +371,13 @@ describe('Test user notifications', function () { name, channelId, privacy: VideoPrivacy.PRIVATE, - targetUrl: getYoutubeVideoUrl() + targetUrl: getGoodVideoUrl() } const res = await importVideo(servers[0].url, servers[0].accessToken, attributes) const uuid = res.body.video.uuid await waitJobs(servers) - await checkMyVideoImportIsFinished(baseParams, name, uuid, getYoutubeVideoUrl(), true, 'presence') + await checkMyVideoImportIsFinished(baseParams, name, uuid, getGoodVideoUrl(), true, 'presence') }) }) @@ -416,7 +416,7 @@ describe('Test user notifications', function () { }) it('Should notify when a local channel is following one of our channel', async function () { - this.timeout(10000) + this.timeout(30000) await addUserSubscription(servers[0].url, servers[0].accessToken, 'user_1_channel@localhost:' + servers[0].port) await waitJobs(servers) @@ -427,7 +427,7 @@ describe('Test user notifications', function () { }) it('Should notify when a remote channel is following one of our channel', async function () { - this.timeout(10000) + this.timeout(30000) await addUserSubscription(servers[1].url, servers[1].accessToken, 'user_1_channel@localhost:' + servers[0].port) await waitJobs(servers) @@ -439,7 +439,7 @@ describe('Test user notifications', function () { // PeerTube does not support accout -> account follows // it('Should notify when a local account is following one of our channel', async function () { - // this.timeout(10000) + // this.timeout(30000) // // await addUserSubscription(servers[0].url, servers[0].accessToken, 'user_1@localhost:' + servers[0].port) // @@ -449,7 +449,7 @@ describe('Test user notifications', function () { // }) // it('Should notify when a remote account is following one of our channel', async function () { - // this.timeout(10000) + // this.timeout(30000) // // await addUserSubscription(servers[1].url, servers[1].accessToken, 'user_1@localhost:' + servers[0].port) //