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

155 lines
4.8 KiB
TypeScript
Raw Normal View History

2020-01-31 16:56:52 +01:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import 'mocha'
import { wait } from '@shared/core-utils'
import { HttpStatusCode, VideoPlaylistPrivacy } from '@shared/models'
import {
2021-07-07 13:38:26 +02:00
cleanupTests,
2021-07-16 09:47:51 +02:00
createMultipleServers,
2021-07-16 14:27:30 +02:00
doubleFollow,
2019-04-26 08:50:52 +02:00
killallServers,
2021-07-16 09:47:51 +02:00
PeerTubeServer,
setAccessTokensToServers,
2019-03-19 14:13:53 +01:00
setDefaultVideoChannel,
waitJobs
} from '@shared/server-commands'
describe('Test AP refresher', function () {
2021-07-16 09:47:51 +02:00
let servers: PeerTubeServer[] = []
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)
2022-02-11 10:51:33 +01:00
servers = await createMultipleServers(2)
// Get the access tokens
await setAccessTokensToServers(servers)
2019-03-19 14:13:53 +01:00
await setDefaultVideoChannel(servers)
2022-02-11 10:51:33 +01:00
for (const server of servers) {
await server.config.disableTranscoding()
}
2019-03-19 14:13:53 +01:00
{
2021-07-16 09:04:35 +02:00
videoUUID1 = (await servers[1].videos.quickUpload({ name: 'video1' })).uuid
videoUUID2 = (await servers[1].videos.quickUpload({ name: 'video2' })).uuid
videoUUID3 = (await servers[1].videos.quickUpload({ name: 'video3' })).uuid
2019-03-19 14:13:53 +01:00
}
{
2021-07-16 09:04:35 +02:00
const token1 = await servers[1].users.generateUserAndToken('user1')
await servers[1].videos.upload({ token: token1, attributes: { name: 'video4' } })
2019-03-19 14:13:53 +01:00
2021-07-16 09:04:35 +02:00
const token2 = await servers[1].users.generateUserAndToken('user2')
await servers[1].videos.upload({ token: token2, attributes: { name: 'video5' } })
}
{
2021-07-16 09:04:35 +02:00
const attributes = { displayName: 'playlist1', privacy: VideoPlaylistPrivacy.PUBLIC, videoChannelId: servers[1].store.channel.id }
const created = await servers[1].playlists.create({ attributes })
2021-07-08 15:54:39 +02:00
playlistUUID1 = created.uuid
}
{
2021-07-16 09:04:35 +02:00
const attributes = { displayName: 'playlist2', privacy: VideoPlaylistPrivacy.PUBLIC, videoChannelId: servers[1].store.channel.id }
const created = await servers[1].playlists.create({ attributes })
2021-07-08 15:54:39 +02:00
playlistUUID2 = created.uuid
}
2020-01-31 16:56:52 +01: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
2021-07-16 09:04:35 +02:00
await servers[1].sql.setVideoField(videoUUID1, 'uuid', '304afe4f-39f9-4d49-8ed7-ac57b86b174f')
2019-03-19 14:13:53 +01:00
2021-07-16 09:04:35 +02:00
await servers[0].videos.get({ id: videoUUID1 })
await servers[0].videos.get({ id: videoUUID2 })
2019-03-19 14:13:53 +01:00
await waitJobs(servers)
2021-07-16 09:04:35 +02:00
await servers[0].videos.get({ id: videoUUID1, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
await servers[0].videos.get({ id: videoUUID2 })
2019-03-19 14:13:53 +01:00
})
2019-03-19 14:13:53 +01:00
it('Should not update a remote video if the remote instance is down', async function () {
2020-01-22 09:24:26 +01:00
this.timeout(70000)
2021-07-09 15:37:43 +02:00
await killallServers([ servers[1] ])
2021-07-16 09:04:35 +02:00
await servers[1].sql.setVideoField(videoUUID3, 'uuid', '304afe4f-39f9-4d49-8ed7-ac57b86b174e')
2019-03-19 14:13:53 +01:00
// Video will need a refresh
await wait(10000)
2021-07-16 09:04:35 +02:00
await servers[0].videos.get({ id: videoUUID3 })
2019-03-19 14:13:53 +01:00
// The refresh should fail
2020-01-31 16:56:52 +01:00
await waitJobs([ servers[0] ])
2019-03-19 14:13:53 +01:00
2021-07-16 09:47:51 +02:00
await servers[1].run()
2019-03-19 14:13:53 +01:00
2021-07-16 09:04:35 +02:00
await servers[0].videos.get({ id: videoUUID3 })
2019-03-19 14:13:53 +01:00
})
})
2019-03-19 14:13:53 +01:00
describe('Actors refresher', function () {
it('Should remove a deleted actor', async function () {
this.timeout(60000)
2021-07-16 09:04:35 +02:00
const command = servers[0].accounts
2021-07-07 13:38:26 +02:00
2019-03-19 14:13:53 +01:00
await wait(10000)
// Change actor name so the remote server returns a 404
2020-01-31 16:56:52 +01:00
const to = 'http://localhost:' + servers[1].port + '/accounts/user2'
2021-07-16 09:04:35 +02:00
await servers[1].sql.setActorField(to, 'preferredUsername', 'toto')
2019-03-19 14:13:53 +01:00
2021-07-07 13:38:26 +02:00
await command.get({ accountName: 'user1@localhost:' + servers[1].port })
await command.get({ accountName: 'user2@localhost:' + servers[1].port })
2019-03-19 14:13:53 +01:00
await waitJobs(servers)
2021-07-07 13:38:26 +02:00
await command.get({ accountName: 'user1@localhost:' + servers[1].port, expectedStatus: HttpStatusCode.OK_200 })
await command.get({ accountName: 'user2@localhost:' + servers[1].port, expectedStatus: HttpStatusCode.NOT_FOUND_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
2021-07-16 09:04:35 +02:00
await servers[1].sql.setPlaylistField(playlistUUID2, 'uuid', '304afe4f-39f9-4d49-8ed7-ac57b86b178e')
2021-07-16 09:04:35 +02:00
await servers[0].playlists.get({ playlistId: playlistUUID1 })
await servers[0].playlists.get({ playlistId: playlistUUID2 })
2019-03-19 14:13:53 +01:00
await waitJobs(servers)
2021-07-16 09:04:35 +02:00
await servers[0].playlists.get({ playlistId: playlistUUID1, expectedStatus: HttpStatusCode.OK_200 })
await servers[0].playlists.get({ playlistId: playlistUUID2, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
2019-03-19 14:13:53 +01:00
})
})
2019-04-26 08:50:52 +02:00
after(async function () {
this.timeout(10000)
await cleanupTests(servers)
})
})