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

66 lines
2.0 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
import * as chai from 'chai'
import 'mocha'
2018-11-30 14:06:06 +00:00
import {
2019-04-26 06:50:52 +00:00
cleanupTests,
2018-11-30 14:06:06 +00:00
doubleFollow,
flushAndRunMultipleServers,
makeActivityPubGetRequest,
ServerInfo,
setAccessTokensToServers,
uploadVideo
} from '../../../../shared/extra-utils'
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
2017-11-30 11:00:40 +00:00
const expect = chai.expect
describe('Test activitypub', function () {
2018-11-30 14:06:06 +00:00
let servers: ServerInfo[] = []
let videoUUID: string
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
2018-11-30 14:06:06 +00:00
servers = await flushAndRunMultipleServers(2)
2017-11-30 11:00:40 +00:00
2018-11-30 14:06:06 +00:00
await setAccessTokensToServers(servers)
{
const res = await uploadVideo(servers[0].url, servers[0].accessToken, { name: 'video' })
videoUUID = res.body.video.uuid
}
await doubleFollow(servers[0], servers[1])
2017-11-30 11:00:40 +00:00
})
it('Should return the account object', async function () {
2018-11-30 14:06:06 +00:00
const res = await makeActivityPubGetRequest(servers[0].url, '/accounts/root')
2017-11-30 11:00:40 +00:00
const object = res.body
expect(object.type).to.equal('Person')
2019-04-26 06:50:52 +00:00
expect(object.id).to.equal('http://localhost:' + servers[0].port + '/accounts/root')
2017-11-30 11:00:40 +00:00
expect(object.name).to.equal('root')
expect(object.preferredUsername).to.equal('root')
})
2018-11-30 14:06:06 +00:00
it('Should return the video object', async function () {
const res = await makeActivityPubGetRequest(servers[0].url, '/videos/watch/' + videoUUID)
const object = res.body
expect(object.type).to.equal('Video')
2019-04-26 06:50:52 +00:00
expect(object.id).to.equal('http://localhost:' + servers[0].port + '/videos/watch/' + videoUUID)
2018-11-30 14:06:06 +00:00
expect(object.name).to.equal('video')
})
it('Should redirect to the origin video object', async function () {
const res = await makeActivityPubGetRequest(servers[1].url, '/videos/watch/' + videoUUID, HttpStatusCode.FOUND_302)
2018-11-30 14:06:06 +00:00
2019-04-26 06:50:52 +00:00
expect(res.header.location).to.equal('http://localhost:' + servers[0].port + '/videos/watch/' + videoUUID)
2018-11-30 14:06:06 +00:00
})
2019-04-26 06:50:52 +00:00
after(async function () {
await cleanupTests(servers)
2017-11-30 11:00:40 +00:00
})
})