-
Notifications
You must be signed in to change notification settings - Fork 1
/
integration-finish.spec.ts
128 lines (115 loc) · 4.34 KB
/
integration-finish.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
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 {
authenticatedFetch,
authenticatedFetchNoNotifications,
person,
personNoNotifications,
} from './testSetup.spec'
describe('email verification via /verify-email?id=webId&token=base64Token', () => {
let sendMailSpy: SinonSpy<[options: Mail.Options], Promise<void>>
let verificationLink: string
let sandbox: SinonSandbox
beforeEach(() => {
sandbox = createSandbox()
sendMailSpy = sandbox.spy(mailerService, 'sendMail')
sandbox.useFakeTimers({ now: Date.now(), toFake: ['Date'] })
})
afterEach(() => {
sandbox.restore()
})
beforeEach(async () => {
// 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 + 'profile/card',
target: '[email protected]',
}),
})
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('[correct token] should finish the integration of webId + inbox + email and respond 200', async () => {
const response = await fetch(verificationLink)
expect(response.status).to.equal(200)
})
it('[incorrect token] should respond with 400', async () => {
const response = await fetch(verificationLink.slice(0, -2))
expect(response.status).to.equal(400)
expect(await response.text()).to.equal('Verification link is invalid')
})
it('[integration for webId not started] should respond with 400', async () => {
const response = await fetch(
`${baseUrl}/verify-email?id=asdf&token=12345678`,
)
expect(response.status).to.equal(400)
expect(await response.text()).to.equal('Verification link is invalid')
})
it('[missing id or token] should respond with 400', async () => {
const response = await fetch(`${baseUrl}/verify-email`)
expect(response.status).to.equal(400)
expect(await response.text()).to.equal(
'This is not a valid verification link. Have you received the link in your email?',
)
})
it('[expired token] should respond with 400', async () => {
sandbox.clock.tick(3601 * 1000)
const response = await fetch(verificationLink)
// wait one hour and one second
expect(response.status).to.equal(400)
expect(await response.text()).to.equal('Verification link is expired')
})
it('when we send out multiple verification emails, the last link should work')
context("server doesn't support webhook notifications", () => {
beforeEach(async () => {
// initialize the integration
const initResponse = await authenticatedFetchNoNotifications(
`${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: personNoNotifications.webId,
object: personNoNotifications.podUrl + 'profile/card',
target: '[email protected]',
}),
},
)
expect(initResponse.status).to.equal(200)
// email was sent
const emailMessage = sendMailSpy.secondCall.firstArg.html
const $ = cheerio.load(emailMessage)
verificationLink = $('a').first().attr('href') as string
expect(verificationLink).to.not.be.null
})
it("should verify email, but inform user that notifications aren't supported", async () => {
const response = await fetch(verificationLink)
expect(response.status).to.equal(200)
})
})
})