-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnotification.spec.ts
108 lines (93 loc) · 3.25 KB
/
notification.spec.ts
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
import { expect } from 'chai'
import * as cheerio from 'cheerio'
import fetch from 'cross-fetch'
import { getAuthenticatedFetch } from 'css-authn/dist/7.x'
import { describe } from 'mocha'
import Mail from 'nodemailer/lib/mailer'
import { SinonSandbox, SinonSpy, createSandbox } from 'sinon'
import { promisify } from 'util'
import { baseUrl } from '../config'
import * as mailerService from '../services/mailerService'
import { addRead, setupInbox } from '../setup'
import { authenticatedFetch, person } from './testSetup.spec'
describe('received notification via /webhook-receiver', () => {
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
// finish the integration
const finishResponse = await fetch(verificationLink)
expect(finishResponse.status).to.equal(200)
})
it('[everything ok] should send email to email address when notifiation arrives', async function () {
this.timeout(10000)
// create notification in inbox of person2
const authenticatedPerson2Fetch = await getAuthenticatedFetch({
email: 'person2@example',
password: 'password',
provider: 'http://localhost:3456',
})
const addToInboxResponse = await authenticatedPerson2Fetch(
person.podUrl + 'inbox/',
{
method: 'POST',
headers: {
'content-type': 'text/turtle',
body: '<https://example.com/subject> <https://example.com/predicate> <https://example.com/object>.',
},
},
)
expect(addToInboxResponse.ok).to.be.true
// let's wait a bit
// TODO this should be improved. waiting without knowing how long isn't great
await promisify(setTimeout)(2000)
expect(sendMailSpy.callCount).to.equal(2)
const emailNotification = sendMailSpy.secondCall.firstArg
expect(emailNotification).to.exist
expect(emailNotification.to).to.equal('email@example.com')
// TODO
})
it('[irrelevant update] should do nothing')
})