PeerTube/server/tests/api/activitypub/refresher.ts

166 lines
5.2 KiB
TypeScript
Raw Normal View History

/* tslint:disable:no-unused-expression */
import 'mocha'
import {
2019-04-26 08:50:52 +02:00
cleanupTests, closeAllSequelize,
2019-03-19 14:13:53 +01:00
createVideoPlaylist,
doubleFollow,
flushAndRunMultipleServers,
2019-03-19 14:13:53 +01:00
generateUserAccessToken,
getVideo,
2019-03-19 14:13:53 +01:00
getVideoPlaylist,
2019-04-26 08:50:52 +02:00
killallServers,
reRunServer,
ServerInfo,
setAccessTokensToServers,
2019-03-19 14:13:53 +01:00
setActorField,
setDefaultVideoChannel,
setPlaylistField,
setVideoField,
uploadVideo,
2019-03-19 14:13:53 +01:00
uploadVideoAndGetId,
wait,
waitJobs
} from '../../../../shared/extra-utils'
import { getAccount } from '../../../../shared/extra-utils/users/accounts'
2019-03-19 14:13:53 +01:00
import { VideoPlaylistPrivacy } from '../../../../shared/models/videos'
describe('Test AP refresher', function () {
let servers: ServerInfo[] = []
let videoUUID1: string
let videoUUID2: string
let videoUUID3: string
2019-03-19 14:13:53 +01:00
let playlistUUID1: string
let playlistUUID2: string
before(async function () {
2019-01-08 15:51:52 +01:00
this.timeout(60000)
2019-03-19 14:13:53 +01:00
servers = await flushAndRunMultipleServers(2, { transcoding: { enabled: false } })
// Get the access tokens
await setAccessTokensToServers(servers)
2019-03-19 14:13:53 +01:00
await setDefaultVideoChannel(servers)
{
videoUUID1 = (await uploadVideoAndGetId({ server: servers[ 1 ], videoName: 'video1' })).uuid
videoUUID2 = (await uploadVideoAndGetId({ server: servers[ 1 ], videoName: 'video2' })).uuid
videoUUID3 = (await uploadVideoAndGetId({ server: servers[ 1 ], videoName: 'video3' })).uuid
}
{
2019-04-26 08:50:52 +02:00
const a1 = await generateUserAccessToken(servers[ 1 ], 'user1')
await uploadVideo(servers[ 1 ].url, a1, { name: 'video4' })
2019-03-19 14:13:53 +01:00
2019-04-26 08:50:52 +02:00
const a2 = await generateUserAccessToken(servers[ 1 ], 'user2')
await uploadVideo(servers[ 1 ].url, a2, { name: 'video5' })
}
{
2019-04-26 08:50:52 +02:00
const playlistAttrs = { displayName: 'playlist1', privacy: VideoPlaylistPrivacy.PUBLIC, videoChannelId: servers[ 1 ].videoChannel.id }
const res = await createVideoPlaylist({ url: servers[ 1 ].url, token: servers[ 1 ].accessToken, playlistAttrs })
2019-03-19 14:13:53 +01:00
playlistUUID1 = res.body.videoPlaylist.uuid
}
{
2019-04-26 08:50:52 +02:00
const playlistAttrs = { displayName: 'playlist2', privacy: VideoPlaylistPrivacy.PUBLIC, videoChannelId: servers[ 1 ].videoChannel.id }
const res = await createVideoPlaylist({ url: servers[ 1 ].url, token: servers[ 1 ].accessToken, playlistAttrs })
2019-03-19 14:13:53 +01:00
playlistUUID2 = res.body.videoPlaylist.uuid
}
2019-04-26 08:50:52 +02:00
await doubleFollow(servers[ 0 ], servers[ 1 ])
})
2019-03-19 14:13:53 +01:00
describe('Videos refresher', function () {
it('Should remove a deleted remote video', async function () {
this.timeout(60000)
await wait(10000)
// Change UUID so the remote server returns a 404
2019-04-26 08:50:52 +02:00
await setVideoField(servers[ 1 ].internalServerNumber, videoUUID1, 'uuid', '304afe4f-39f9-4d49-8ed7-ac57b86b174f')
2019-03-19 14:13:53 +01:00
await getVideo(servers[ 0 ].url, videoUUID1)
await getVideo(servers[ 0 ].url, videoUUID2)
await waitJobs(servers)
2019-03-19 14:13:53 +01:00
await getVideo(servers[ 0 ].url, videoUUID1, 404)
await getVideo(servers[ 0 ].url, videoUUID2, 200)
})
2019-03-19 14:13:53 +01:00
it('Should not update a remote video if the remote instance is down', async function () {
this.timeout(60000)
2019-03-19 14:13:53 +01:00
killallServers([ servers[ 1 ] ])
2019-04-26 08:50:52 +02:00
await setVideoField(servers[ 1 ].internalServerNumber, videoUUID3, 'uuid', '304afe4f-39f9-4d49-8ed7-ac57b86b174e')
2019-03-19 14:13:53 +01:00
// Video will need a refresh
await wait(10000)
await getVideo(servers[ 0 ].url, videoUUID3)
// The refresh should fail
await waitJobs([ servers[ 0 ] ])
await reRunServer(servers[ 1 ])
2019-11-21 12:16:27 +01:00
// Should not refresh the video, even if the last refresh failed (to avoid a loop on dead instances)
2019-03-19 14:13:53 +01:00
await getVideo(servers[ 0 ].url, videoUUID3)
await waitJobs(servers)
await getVideo(servers[ 0 ].url, videoUUID3, 200)
})
})
2019-03-19 14:13:53 +01:00
describe('Actors refresher', function () {
it('Should remove a deleted actor', async function () {
this.timeout(60000)
await wait(10000)
// Change actor name so the remote server returns a 404
2019-04-26 08:50:52 +02:00
const to = 'http://localhost:' + servers[ 1 ].port + '/accounts/user2'
await setActorField(servers[ 1 ].internalServerNumber, to, 'preferredUsername', 'toto')
2019-03-19 14:13:53 +01:00
2019-04-26 08:50:52 +02:00
await getAccount(servers[ 0 ].url, 'user1@localhost:' + servers[ 1 ].port)
await getAccount(servers[ 0 ].url, 'user2@localhost:' + servers[ 1 ].port)
2019-03-19 14:13:53 +01:00
await waitJobs(servers)
2019-04-26 08:50:52 +02:00
await getAccount(servers[ 0 ].url, 'user1@localhost:' + servers[ 1 ].port, 200)
await getAccount(servers[ 0 ].url, 'user2@localhost:' + servers[ 1 ].port, 404)
2019-03-19 14:13:53 +01:00
})
})
2019-03-19 14:13:53 +01:00
describe('Playlist refresher', function () {
2019-03-19 14:13:53 +01:00
it('Should remove a deleted playlist', async function () {
this.timeout(60000)
2019-03-19 14:13:53 +01:00
await wait(10000)
2019-03-19 14:13:53 +01:00
// Change UUID so the remote server returns a 404
2019-04-26 08:50:52 +02:00
await setPlaylistField(servers[ 1 ].internalServerNumber, playlistUUID2, 'uuid', '304afe4f-39f9-4d49-8ed7-ac57b86b178e')
2019-03-19 14:13:53 +01:00
await getVideoPlaylist(servers[ 0 ].url, playlistUUID1)
await getVideoPlaylist(servers[ 0 ].url, playlistUUID2)
2019-03-19 14:13:53 +01:00
await waitJobs(servers)
2019-03-19 14:13:53 +01:00
await getVideoPlaylist(servers[ 0 ].url, playlistUUID1, 200)
await getVideoPlaylist(servers[ 0 ].url, playlistUUID2, 404)
})
})
2019-04-26 08:50:52 +02:00
after(async function () {
this.timeout(10000)
await cleanupTests(servers)
await closeAllSequelize(servers)
})
})