Check correctly activitypub headers
[oweals/peertube.git] / server / tests / activitypub.ts
1 /* tslint:disable:no-unused-expression */
2
3 import * as chai from 'chai'
4 import 'mocha'
5 import { flushTests, killallServers, ServerInfo, setAccessTokensToServers } from './utils'
6 import { runServer } from './utils/servers'
7 import { makeActivityPubGetRequest } from './utils/activitypub'
8
9 const expect = chai.expect
10
11 describe('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 })