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

68 lines
1.8 KiB
TypeScript
Raw Normal View History

2017-11-30 11:00:40 +00:00
/* tslint:disable:no-unused-expression */
import * as chai from 'chai'
import 'mocha'
2018-11-30 14:06:06 +00:00
import {
doubleFollow,
flushAndRunMultipleServers,
flushTests,
killallServers,
makeActivityPubGetRequest,
runServer,
ServerInfo,
setAccessTokensToServers, uploadVideo
} from '../../utils'
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
await flushTests()
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')
2018-01-03 09:12:36 +00:00
expect(object.id).to.equal('http://localhost:9001/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')
expect(object.id).to.equal('http://localhost:9001/videos/watch/' + videoUUID)
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, 302)
expect(res.header.location).to.equal('http://localhost:9001/videos/watch/' + videoUUID)
})
2017-11-30 11:00:40 +00:00
after(async function () {
2018-11-30 14:06:06 +00:00
killallServers(servers)
2017-11-30 11:00:40 +00:00
})
})