diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-11-30 12:00:40 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-11-30 12:00:40 +0100 |
commit | 6cbdbdef1786aabb2003918fad6cd8c0d4433f7c (patch) | |
tree | 5e7c94742773a1856f04d0c1a84b6316dd265f00 /server/tests | |
parent | 25ed141c7c7631ef21d8764c1163fbf8a6591391 (diff) | |
download | PeerTube-6cbdbdef1786aabb2003918fad6cd8c0d4433f7c.tar.gz PeerTube-6cbdbdef1786aabb2003918fad6cd8c0d4433f7c.tar.zst PeerTube-6cbdbdef1786aabb2003918fad6cd8c0d4433f7c.zip |
Check correctly activitypub headers
Diffstat (limited to 'server/tests')
-rw-r--r-- | server/tests/activitypub.ts | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/server/tests/activitypub.ts b/server/tests/activitypub.ts new file mode 100644 index 000000000..333e02e84 --- /dev/null +++ b/server/tests/activitypub.ts | |||
@@ -0,0 +1,42 @@ | |||
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 | }) | ||