1
0
Fork 0
peertube/server/tests/api/activitypub/client.ts

137 lines
4.8 KiB
TypeScript
Raw Normal View History

2020-01-31 15:56:52 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2017-11-30 11:00:40 +00:00
2022-08-17 13:44:32 +00:00
import { expect } from 'chai'
import { processViewersStats } from '@server/tests/shared'
import { HttpStatusCode, VideoPlaylistPrivacy, WatchActionObject } from '@shared/models'
2018-11-30 14:06:06 +00:00
import {
2019-04-26 06:50:52 +00:00
cleanupTests,
2021-07-16 07:47:51 +00:00
createMultipleServers,
2021-07-16 12:27:30 +00:00
doubleFollow,
2018-11-30 14:06:06 +00:00
makeActivityPubGetRequest,
2021-07-16 07:47:51 +00:00
PeerTubeServer,
setAccessTokensToServers,
2021-07-15 08:02:54 +00:00
setDefaultVideoChannel
} from '@shared/server-commands'
2017-11-30 11:00:40 +00:00
describe('Test activitypub', function () {
2021-07-16 07:47:51 +00:00
let servers: PeerTubeServer[] = []
let video: { id: number, uuid: string, shortUUID: string }
let playlist: { id: number, uuid: string, shortUUID: string }
async function testAccount (path: string) {
const res = await makeActivityPubGetRequest(servers[0].url, path)
const object = res.body
expect(object.type).to.equal('Person')
2022-12-09 10:14:47 +00:00
expect(object.id).to.equal(servers[0].url + '/accounts/root')
expect(object.name).to.equal('root')
expect(object.preferredUsername).to.equal('root')
}
async function testChannel (path: string) {
const res = await makeActivityPubGetRequest(servers[0].url, path)
const object = res.body
expect(object.type).to.equal('Group')
2022-12-09 10:14:47 +00:00
expect(object.id).to.equal(servers[0].url + '/video-channels/root_channel')
expect(object.name).to.equal('Main root channel')
expect(object.preferredUsername).to.equal('root_channel')
}
async function testVideo (path: string) {
const res = await makeActivityPubGetRequest(servers[0].url, path)
const object = res.body
expect(object.type).to.equal('Video')
2022-12-09 10:14:47 +00:00
expect(object.id).to.equal(servers[0].url + '/videos/watch/' + video.uuid)
expect(object.name).to.equal('video')
}
async function testPlaylist (path: string) {
const res = await makeActivityPubGetRequest(servers[0].url, path)
const object = res.body
expect(object.type).to.equal('Playlist')
2022-12-09 10:14:47 +00:00
expect(object.id).to.equal(servers[0].url + '/video-playlists/' + playlist.uuid)
expect(object.name).to.equal('playlist')
}
2017-11-30 11:00:40 +00:00
before(async function () {
2018-01-18 17:10:45 +00:00
this.timeout(30000)
2017-11-30 11:00:40 +00:00
2021-07-16 07:47:51 +00:00
servers = await createMultipleServers(2)
2017-11-30 11:00:40 +00:00
2018-11-30 14:06:06 +00:00
await setAccessTokensToServers(servers)
await setDefaultVideoChannel(servers)
2018-11-30 14:06:06 +00:00
{
2021-07-16 08:42:24 +00:00
video = await servers[0].videos.quickUpload({ name: 'video' })
}
{
2021-07-16 07:04:35 +00:00
const attributes = { displayName: 'playlist', privacy: VideoPlaylistPrivacy.PUBLIC, videoChannelId: servers[0].store.channel.id }
playlist = await servers[0].playlists.create({ attributes })
2018-11-30 14:06:06 +00:00
}
await doubleFollow(servers[0], servers[1])
2017-11-30 11:00:40 +00:00
})
it('Should return the account object', async function () {
await testAccount('/accounts/root')
await testAccount('/a/root')
})
2017-11-30 11:00:40 +00:00
it('Should return the channel object', async function () {
await testChannel('/video-channels/root_channel')
await testChannel('/c/root_channel')
2017-11-30 11:00:40 +00:00
})
2018-11-30 14:06:06 +00:00
it('Should return the video object', async function () {
await testVideo('/videos/watch/' + video.id)
await testVideo('/videos/watch/' + video.uuid)
await testVideo('/videos/watch/' + video.shortUUID)
await testVideo('/w/' + video.id)
await testVideo('/w/' + video.uuid)
await testVideo('/w/' + video.shortUUID)
})
2018-11-30 14:06:06 +00:00
it('Should return the playlist object', async function () {
await testPlaylist('/video-playlists/' + playlist.id)
await testPlaylist('/video-playlists/' + playlist.uuid)
await testPlaylist('/video-playlists/' + playlist.shortUUID)
await testPlaylist('/w/p/' + playlist.id)
await testPlaylist('/w/p/' + playlist.uuid)
await testPlaylist('/w/p/' + playlist.shortUUID)
await testPlaylist('/videos/watch/playlist/' + playlist.id)
await testPlaylist('/videos/watch/playlist/' + playlist.uuid)
await testPlaylist('/videos/watch/playlist/' + playlist.shortUUID)
2018-11-30 14:06:06 +00:00
})
it('Should redirect to the origin video object', async function () {
const res = await makeActivityPubGetRequest(servers[1].url, '/videos/watch/' + video.uuid, HttpStatusCode.FOUND_302)
2018-11-30 14:06:06 +00:00
2022-12-09 10:14:47 +00:00
expect(res.header.location).to.equal(servers[0].url + '/videos/watch/' + video.uuid)
2018-11-30 14:06:06 +00:00
})
it('Should return the watch action', async function () {
this.timeout(50000)
await servers[0].views.simulateViewer({ id: video.uuid, currentTimes: [ 0, 2 ] })
await processViewersStats(servers)
const res = await makeActivityPubGetRequest(servers[0].url, '/videos/local-viewer/1', HttpStatusCode.OK_200)
const object: WatchActionObject = res.body
expect(object.type).to.equal('WatchAction')
expect(object.duration).to.equal('PT2S')
expect(object.actionStatus).to.equal('CompletedActionStatus')
expect(object.watchSections).to.have.lengthOf(1)
expect(object.watchSections[0].startTimestamp).to.equal(0)
expect(object.watchSections[0].endTimestamp).to.equal(2)
})
2019-04-26 06:50:52 +00:00
after(async function () {
await cleanupTests(servers)
2017-11-30 11:00:40 +00:00
})
})