diff options
Diffstat (limited to 'server/tests/activitypub.ts')
-rw-r--r-- | server/tests/activitypub.ts | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/server/tests/activitypub.ts b/server/tests/activitypub.ts deleted file mode 100644 index 53a04d363..000000000 --- a/server/tests/activitypub.ts +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | /* tslint:disable:no-unused-expression */ | ||
2 | |||
3 | import * as chai from 'chai' | ||
4 | import 'mocha' | ||
5 | import { flushTests, killallServers, makeActivityPubGetRequest, runServer, ServerInfo, setAccessTokensToServers } from './utils' | ||
6 | |||
7 | const expect = chai.expect | ||
8 | |||
9 | describe('Test activitypub', function () { | ||
10 | let server: ServerInfo = null | ||
11 | |||
12 | before(async function () { | ||
13 | this.timeout(30000) | ||
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 () { | ||
23 | const res = await makeActivityPubGetRequest(server.url, '/accounts/root') | ||
24 | const object = res.body | ||
25 | |||
26 | expect(object.type).to.equal('Person') | ||
27 | expect(object.id).to.equal('http://localhost:9001/accounts/root') | ||
28 | expect(object.name).to.equal('root') | ||
29 | expect(object.preferredUsername).to.equal('root') | ||
30 | }) | ||
31 | |||
32 | after(async function () { | ||
33 | killallServers([ server ]) | ||
34 | }) | ||
35 | }) | ||