]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/activitypub/client.ts
Merge branch 'release/3.1.0' into develop
[github/Chocobozzz/PeerTube.git] / server / tests / api / activitypub / client.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import * as chai from 'chai'
4 import 'mocha'
5 import {
6 cleanupTests,
7 doubleFollow,
8 flushAndRunMultipleServers,
9 makeActivityPubGetRequest,
10 ServerInfo,
11 setAccessTokensToServers,
12 uploadVideo
13 } from '../../../../shared/extra-utils'
14 import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
15
16 const expect = chai.expect
17
18 describe('Test activitypub', function () {
19 let servers: ServerInfo[] = []
20 let videoUUID: string
21
22 before(async function () {
23 this.timeout(30000)
24
25 servers = await flushAndRunMultipleServers(2)
26
27 await setAccessTokensToServers(servers)
28
29 {
30 const res = await uploadVideo(servers[0].url, servers[0].accessToken, { name: 'video' })
31 videoUUID = res.body.video.uuid
32 }
33
34 await doubleFollow(servers[0], servers[1])
35 })
36
37 it('Should return the account object', async function () {
38 const res = await makeActivityPubGetRequest(servers[0].url, '/accounts/root')
39 const object = res.body
40
41 expect(object.type).to.equal('Person')
42 expect(object.id).to.equal('http://localhost:' + servers[0].port + '/accounts/root')
43 expect(object.name).to.equal('root')
44 expect(object.preferredUsername).to.equal('root')
45 })
46
47 it('Should return the video object', async function () {
48 const res = await makeActivityPubGetRequest(servers[0].url, '/videos/watch/' + videoUUID)
49 const object = res.body
50
51 expect(object.type).to.equal('Video')
52 expect(object.id).to.equal('http://localhost:' + servers[0].port + '/videos/watch/' + videoUUID)
53 expect(object.name).to.equal('video')
54 })
55
56 it('Should redirect to the origin video object', async function () {
57 const res = await makeActivityPubGetRequest(servers[1].url, '/videos/watch/' + videoUUID, HttpStatusCode.FOUND_302)
58
59 expect(res.header.location).to.equal('http://localhost:' + servers[0].port + '/videos/watch/' + videoUUID)
60 })
61
62 after(async function () {
63 await cleanupTests(servers)
64 })
65 })