-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.ts
455 lines (417 loc) · 12.6 KB
/
index.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
import { debug } from './lib/Output';
import { expect } from 'expect';
import { MailSlurp as MailSlurpClient } from 'mailslurp-client';
/**
* Allows to use real emails in E2E tests via [MailSlurp service](https://mailslurp.com).
* Sign up for an account at MailSlurp to start.
*
* A helper requires `apiKey` from MailSlurp to start
*
* ```js
* helpers: {
* MailSlurp: {
* apiKey: '<insert api key here>',
* require: '@codeceptjs/mailslurp-helper'
* },
* }
* ```
* > Use .env file and environment variables to store sensitive data like API keys
*
* ## Configuration
*
* * `apiKey` (required) - api key from MailSlurp
* * `timeout` (default: 10000) - time to wait for emails in milliseconds.
* * `debug` (default: false) - print debug logs
*
*/
type Configuration = {
apiKey: string,
timeout?: number,
debug?: boolean
}
class MailSlurp {
config: any;
mailslurp: any;
mailboxes: any[];
currentMailbox: any;
currentEmail: any;
useExisitngMailbox: boolean;
constructor(config: Configuration) {
const defaults = {
timeout: 10000,
debug: false
};
this.config = Object.assign(defaults, config);
if (!this.config.apiKey) {
throw new Error(`MailSlurp is not configured! Please provide API key to access your account`);
}
this.mailslurp = new MailSlurpClient({ apiKey: this.config.apiKey, attribution: 'codeceptjs' });
}
_before() {
this.mailboxes = [];
this.currentMailbox = null;
this.currentEmail = null;
}
async _after() {
if (!this.mailboxes || !this.mailboxes.length) return;
if (!this.useExisitngMailbox) {
await Promise.all(this.mailboxes.map(m => this.mailslurp.deleteInbox(m.id)));
if (this.config.debug) debug(`Removed ${this.mailboxes.length} mailboxes`);
}
this.mailboxes = [];
this.currentMailbox = null;
this.currentEmail = null;
}
// enterprise API function
// async haveMultipleMailboxes(num) {
// const mailboxes = await this.mailslurp.bulkCreateInboxes(num);
// this.mailboxes = this.mailboxes.concat(mailboxes);
// this.currentMailbox = this.mailboxes[this.mailboxes.length-1];
// return mailboxes.map(m => m.emailAddress);
// }
/**
* Creates a new mailbox. A mailbox will be deleted after a test.
* Switches to last created mailbox.
*
* ```js
* const mailbox = await I.haveNewMailbox();
* ```
*/
async haveNewMailbox() {
const inbox = await this.mailslurp.createInbox();
inbox.toString = () => inbox.emailAddress;
this.mailboxes.push(inbox);
this.currentMailbox = inbox;
return inbox;
}
/**
* Use an existing mailbox.
*
* ```js
* const mailbox = await I.haveExistingMailbox('94cxxxf4-7231-46ce-9f40-xxxcae39xxxx');
* ```
* @param {string} mailboxId ID of an existing MailSlurp inbox.
* @returns {Promise<Inbox>}
*/
async haveExistingMailbox(mailboxId) {
if (!mailboxId) {
throw new Error('Id of existing mailbox must be provided in parameters.')
}
const inbox = await this.mailslurp.getInbox(mailboxId)
inbox.toString = () => inbox.emailAddress;
this.mailboxes.push(inbox);
this.currentMailbox = inbox;
this.useExisitngMailbox = true;
return inbox;
}
/**
* Change a current mailbox to a provided one:
*
* ```js
* const mailbox1 = await I.haveMailbox();
* const mailbox2 = await I.haveMailbox();
* // mailbox2 is now default mailbox
* // switch back to mailbox1
* I.openMailbox(mailbox)
* ```
*/
openMailbox(mailbox) {
this.currentMailbox = mailbox;
}
openEmail(email) {
this.currentEmail = email;
}
/**
* Sends an email from current mailbox, created by `I.haveNewMailbox()`.
*
* ```js
* I.sendEmail({
* to: ['user@site.com'],
* subject: 'Hello',
* body: 'World'
* });
* ```
*/
sendEmail(data) {
return this.mailslurp.sendEmail(this.currentMailbox.id, data);
}
/**
* Waits for the first email in mailbox.
* If mailbox is not empty - opens the last email.
*
* ```js
* I.waitForLatestEmail()
* // wait for 30 seconds for an email
* I.waitForLatestEmail(30);
* ```
*
* @param {num} [sec] Number of seconds to wait.
* @returns {Promise<Email>} an email received.
*/
async waitForLatestEmail(sec) {
if (sec) sec = 1000*sec;
const email = await this.mailslurp.waitForLatestEmail(this.currentMailbox.id, sec || this.config.timeout);
printEmailDebug.call(this, email);
this.currentEmail = email;
return email;
}
/**
* Wait for an exact email matched by query. You can match emails by `from`, `to`, `subject`, `cc`, `bcc` fields.
* My default, non-strcit matching enabled, so it searches for inclusion of a string. For a strict matching (equality)
* prepend a value with `=` prefix.
*
* ```js
* // wait for email with 'password' in subject
* const email = await I.waitForEmailMatching({
* subject: 'password',
* });
*
* // wait 30 seconds for email with exact subject
* const email = await I.waitForEmailMatching({
* subject: '=Forgot password',
* }, 30);
*
* //
* const email = await I.waitForEmailMatching({
* from: '@mysite.com', // find anything from mysite
* subject: 'Restore password', // with Restore password in subject
* });
* ```
* @param {object} query to locate an email
* @param {num} [sec] Number of seconds to wait.
* @returns {Promise<Email>} an email received.
*/
async waitForEmailMatching(query, sec) {
if (sec) sec = 1000*sec;
const emailPreviews = await this.mailslurp.waitForMatchingEmails(
matchEmailBy(query),
1,
this.currentMailbox.id,
sec || this.config.timeout
);
const email = await this.mailslurp.getEmail(emailPreviews[0].id);
printEmailDebug.call(this, email);
this.currentEmail = email;
return email;
}
/**
* Wait for exact number of emails in mailbox. Returns the last email in the list.
*
* ```js
* // wait for 2 emails
* I.waitForNthEmail(2);
* // wait for 5 emails for 60 seconds
* I.waitForNthEmail(5, 60);
* // wait for 2 emails and return the last one
* const email = await I.waitForNthEmail(2);
* ```
*/
async waitForNthEmail(number, sec) {
if (sec) sec = 1000*sec;
const email = await this.mailslurp.waitForNthEmail(this.currentMailbox.id, number, sec || this.config.timeout);
this.currentEmail = email;
printEmailDebug.call(this, email);
return email;
}
/**
* Returns a bunch of emails matched by query.
* Similar to `waitForEmailMatching` but returns an array of emails.
*
* ```js
* // return 2 emails from 'user@user.com'
* const emails = await I.grabEmailsMatching({ from: 'user@user.com'}, 2);
* ```
* @param {object} query to locate an email
* @param {num} [num] Number of emails to return.
* @returns {Promise<[Email]>} emails matching criteria.
*/
async grabEmailsMatching(query, num) {
const emailPreviews = await this.mailslurp.waitForMatchingEmails(
matchEmailBy(query),
num,
this.currentMailbox.id,
this.config.timeout
);
debug(`Received ${emailPreviews.length} emails`);
return Promise.all(emailPreviews.map(e => this.mailslurp.getEmail(e.id)));
}
/**
* Returns all emails from a mailbox.
*
* ```js
* const emails = await I.grabAllEmailsFromMailbox();
* ```
* @returns {Promise<[Email]>} emails.
*/
async grabAllEmailsFromMailbox() {
const emailPreviews = await this.mailslurp.getEmails(this.currentMailbox.id);
debug(`Received ${emailPreviews.length} emails`);
return Promise.all(emailPreviews.map(e => this.mailslurp.getEmail(e.id)));
}
/**
* Checks that current email subject contains a text.
*
* ```js
* I.seeInEmailSubject('Restore password');
* ```
*
* Requires an opened email. Use either `waitForEmail*` methods to open. Or open manually with `I.openEmail()` method.
*/
seeInEmailSubject(text) {
this._hasCurrentEmail();
const email = this.currentEmail;
expect(email.subject).toContain(`${text}`);
}
/**
* Checks that current email subject does not contain a text.
*
* ```js
* I.seeInEmailSubject('Restore password');
* ```
*
* Requires an opened email. Use either `waitForEmail*` methods to open. Or open manually with `I.openEmail()` method.
*/
dontSeeInEmailSubject(text) {
this._hasCurrentEmail();
const email = this.currentEmail;
expect(email.subject).not.toContain(`${text}`);
}
/**
* Checks that current email body contains a text.
*
* ```js
* I.seeInEmailBody('Click link');
* ```
*
* Requires an opened email. Use either `waitForEmail*` methods to open. Or open manually with `I.openEmail()` method.
*/
seeInEmailBody(text) {
this._hasCurrentEmail();
const email = this.currentEmail;
expect(email.body).toContain(`${text}`);
}
/**
* Checks that current email body does not contain a text.
*
* ```js
* I.dontSeeInEmailBody('Click link');
* ```
*
* Requires an opened email. Use either `waitForEmail*` methods to open. Or open manually with `I.openEmail()` method.
*/
dontSeeInEmailBody(text) {
this._hasCurrentEmail();
const email = this.currentEmail;
expect(email.body).not.toContain(`${text}`);
}
/**
* Checks that email is from a specified address.
*
* ```js
* I.seeEmailIsFrom('user@user.com');
* ```
*
* Requires an opened email. Use either `waitForEmail*` methods to open. Or open manually with `I.openEmail()` method.
*/
seeEmailIsFrom(text) {
this._hasCurrentEmail();
const email = this.currentEmail;
expect(email.from).toContain(`${text}`);
}
/**
* Checks that current email subject equals to text.
*
* ```js
* I.seeEmailSubjectEquals('Restore password');
* ```
*
* Requires an opened email. Use either `waitForEmail*` methods to open. Or open manually with `I.openEmail()` method.
*/
seeEmailSubjectEquals(text) {
this._hasCurrentEmail();
const email = this.currentEmail;
expect(email.subject).toEqual(`${text}`);
}
/**
* Checks that current email subject doesn't equal to text.
*
* ```js
* I.dontSeeEmailSubjectEquals('Restore password');
* ```
*
* Requires an opened email. Use either `waitForEmail*` methods to open. Or open manually with `I.openEmail()` method.
*/
dontSeeEmailSubjectEquals(text) {
this._hasCurrentEmail();
const email = this.currentEmail;
expect(email.subject).not.toEqual(`${text}`);
}
/**
* Checks that current email has expected number of attachments.
*
* ```js
* I.seeNumberOfEmailAttachments(2);
* ```
*
* Requires an opened email. Use either `waitForEmail*` methods to open. Or open manually with `I.openEmail()` method.
*/
seeNumberOfEmailAttachments(number) {
this._hasCurrentEmail();
const email = this.currentEmail;
expect(email.attachments.length).toEqual(number);
}
/**
* Checks that current email has an attachment with specified name.
*
* ```js
* I.seeEmailAttachment('ExampleAttachment.pdf');
* ```
* Be aware that Mailslurp SDK removes special characters in name of attachment,
* e.g. "Example-Attachment.pdf" will have name "ExampleAttachment.pdf".
*
* Requires an opened email. Use either `waitForEmail*` methods to open. Or open manually with `I.openEmail()` method.
*/
async seeEmailAttachment(nameRegExp) {
this._hasCurrentEmail();
const email = this.currentEmail;
let foundAttachmentNames = []
for (let attachmentId of email.attachments) {
let attachmentMetaData = await this.mailslurp.getAttachmentMetaData(attachmentId, email.id)
if (attachmentMetaData.name.match(new RegExp(nameRegExp))) {
// Attachment found. We are finished here.
return
}
foundAttachmentNames.push(attachmentMetaData.name)
}
expect(
`Attachment with name "${nameRegExp}" not found in e-mail with subject "${email.subject}".`
+ (foundAttachmentNames.length > 0 ?
` Found attachments: "${foundAttachmentNames.join(',')}"`
: ' No attachments found at all in e-mail.'
)
).toBeFalsy();
}
_hasCurrentEmail() {
if (!this.currentEmail) throw new Error('No email opened. Open an email with waitForEmail* methods');
}
}
export = MailSlurp;
function printEmailDebug(email) {
if (this.config.debug) debug(`Received email from ${email.from} with ${email.subject}`);
}
function matchEmailBy(options) {
return { matches: Object.entries(options).map(([key, value]) => {
if (value[0] === '=') {
return {
field: key.toUpperCase(),
value,
should: 'EQUAL'
}
}
return {
field: key.toUpperCase(),
value: value,
should: 'CONTAIN'
}
})};
}