-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstatus.spec.ts
More file actions
111 lines (96 loc) · 3.12 KB
/
status.spec.ts
File metadata and controls
111 lines (96 loc) · 3.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import { expect } from 'chai'
import * as cheerio from 'cheerio'
import fetch from 'cross-fetch'
import { describe } from 'mocha'
import Mail from 'nodemailer/lib/mailer'
import { SinonSandbox, SinonSpy, createSandbox } from 'sinon'
import { baseUrl } from '../config'
import * as mailerService from '../services/mailerService'
import { addRead, setupInbox } from '../setup'
import { authenticatedFetch, person } from './testSetup.spec'
describe('get info about integrations of current person with GET /status', () => {
let sendMailSpy: SinonSpy<[options: Mail.Options], Promise<void>>
let verificationLink: string
let sandbox: SinonSandbox
beforeEach(() => {
sandbox = createSandbox()
sendMailSpy = sandbox.spy(mailerService, 'sendMail')
})
afterEach(() => {
sandbox.restore()
})
beforeEach(async () => {
await setupInbox({
webId: person.webId,
inbox: `${person.podUrl}inbox/`,
authenticatedFetch,
})
await addRead({
resource: `${person.podUrl}inbox/`,
agent: 'http://localhost:3456/bot/profile/card#me',
authenticatedFetch,
})
})
beforeEach(async function () {
this.timeout(10000)
// initialize the integration
const initResponse = await authenticatedFetch(`${baseUrl}/inbox`, {
method: 'post',
headers: {
'content-type':
'application/ld+json;profile="https://www.w3.org/ns/activitystreams"',
},
body: JSON.stringify({
'@context': 'https://www.w3.org/ns/activitystreams',
'@id': '',
'@type': 'Add',
actor: person.webId,
object: `${person.podUrl}inbox/`,
target: 'email@example.com',
}),
})
expect(initResponse.status).to.equal(200)
// email was sent
const emailMessage = sendMailSpy.firstCall.firstArg.html
const $ = cheerio.load(emailMessage)
verificationLink = $('a').first().attr('href') as string
expect(verificationLink).to.not.be.null
})
it('[not authenticated] should fail with 401', async () => {
const response = await fetch(`${baseUrl}/status`)
expect(response.status).to.equal(401)
})
it('should show list of resources (inboxes) current user is observing', async () => {
// finish the integration
const finishResponse = await fetch(verificationLink)
expect(finishResponse.status).to.equal(200)
const response = await authenticatedFetch(`${baseUrl}/status`)
expect(response.status).to.equal(200)
const body = await response.json()
expect(body).to.deep.equal({
actor: person.webId,
integrations: [
{
object: `${person.podUrl}inbox/`,
target: 'email@example.com',
verified: true,
},
],
})
})
it('should show unverified integrations', async () => {
const response = await authenticatedFetch(`${baseUrl}/status`)
expect(response.status).to.equal(200)
const body = await response.json()
expect(body).to.deep.equal({
actor: person.webId,
integrations: [
{
object: `${person.podUrl}inbox/`,
target: 'email@example.com',
verified: false,
},
],
})
})
})