]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/activitypub.ts
Finish admin design
[github/Chocobozzz/PeerTube.git] / server / tests / activitypub.ts
CommitLineData
6cbdbdef
C
1/* tslint:disable:no-unused-expression */
2
3import * as chai from 'chai'
4import 'mocha'
5import { flushTests, killallServers, ServerInfo, setAccessTokensToServers } from './utils'
6import { runServer } from './utils/servers'
7import { makeActivityPubGetRequest } from './utils/activitypub'
8
9const expect = chai.expect
10
11describe('Test activitypub', function () {
12 let server: ServerInfo = null
13
14 before(async function () {
15 this.timeout(10000)
16
17 await flushTests()
18
19 server = await runServer(1)
20
21 await setAccessTokensToServers([ server ])
22 })
23
24 it('Should return the account object', async function () {
25 const res = await makeActivityPubGetRequest(server.url, '/account/root')
26 const object = res.body
27
28 expect(object.type).to.equal('Person')
29 expect(object.id).to.equal('http://localhost:9001/account/root')
30 expect(object.name).to.equal('root')
31 expect(object.preferredUsername).to.equal('root')
32 })
33
34 after(async function () {
35 killallServers([ server ])
36
37 // Keep the logs if the test failed
38 if (this['ok']) {
39 await flushTests()
40 }
41 })
42})