]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/activitypub.ts
Add check param tests regarding video imports
[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'
c5d31dba 5import { flushTests, killallServers, makeActivityPubGetRequest, runServer, ServerInfo, setAccessTokensToServers } from './utils'
6cbdbdef
C
6
7const expect = chai.expect
8
9describe('Test activitypub', function () {
10 let server: ServerInfo = null
11
12 before(async function () {
e212f887 13 this.timeout(30000)
6cbdbdef
C
14
15 await flushTests()
16
17 server = await runServer(1)
18
19 await setAccessTokensToServers([ server ])
20 })
21
22 it('Should return the account object', async function () {
47564bbe 23 const res = await makeActivityPubGetRequest(server.url, '/accounts/root')
6cbdbdef
C
24 const object = res.body
25
26 expect(object.type).to.equal('Person')
47564bbe 27 expect(object.id).to.equal('http://localhost:9001/accounts/root')
6cbdbdef
C
28 expect(object.name).to.equal('root')
29 expect(object.preferredUsername).to.equal('root')
30 })
31
32 after(async function () {
33 killallServers([ server ])
6cbdbdef
C
34 })
35})