74 lines
2.0 KiB
JavaScript
74 lines
2.0 KiB
JavaScript
'use strict';
|
|
|
|
const config = require('config');
|
|
const Email = require('../../src/email/email');
|
|
const tpl = require('../../src/email/templates');
|
|
|
|
describe('Email Integration Tests', function() {
|
|
this.timeout(20000);
|
|
|
|
let email;
|
|
let keyId;
|
|
let userId;
|
|
let origin;
|
|
let publicKeyArmored;
|
|
|
|
const recipient = {name: 'Test User', email: 'safewithme.testuser@gmail.com'};
|
|
|
|
before(() => {
|
|
publicKeyArmored = require('fs').readFileSync(`${__dirname}/../fixtures/key1.asc`, 'utf8');
|
|
origin = {
|
|
protocol: 'http',
|
|
host: `localhost:${config.server.port}`
|
|
};
|
|
email = new Email();
|
|
email.init(config.email);
|
|
});
|
|
|
|
beforeEach(() => {
|
|
keyId = '0123456789ABCDF0';
|
|
userId = {
|
|
name: recipient.name,
|
|
email: recipient.email,
|
|
nonce: 'qwertzuioasdfghjkqwertzuio',
|
|
publicKeyArmored
|
|
};
|
|
});
|
|
|
|
describe('_sendHelper', () => {
|
|
it('should work', async () => {
|
|
const mailOptions = {
|
|
from: {name: email._sender.name, address: email._sender.email},
|
|
to: {name: recipient.name, address: recipient.email},
|
|
subject: 'Hello ✔', // Subject line
|
|
text: 'Hello world 🐴', // plaintext body
|
|
html: '<b>Hello world 🐴</b>' // html body
|
|
};
|
|
const info = await email._sendHelper(mailOptions);
|
|
expect(info).to.exist;
|
|
});
|
|
});
|
|
|
|
describe('send verifyKey template', () => {
|
|
it('should send plaintext email', async () => {
|
|
delete userId.publicKeyArmored;
|
|
await email.send({template: tpl.verifyKey, userId, keyId, origin});
|
|
});
|
|
|
|
it('should send pgp encrypted email', async () => {
|
|
await email.send({template: tpl.verifyKey, userId, keyId, origin});
|
|
});
|
|
});
|
|
|
|
describe('send verifyRemove template', () => {
|
|
it('should send plaintext email', async () => {
|
|
delete userId.publicKeyArmored;
|
|
await email.send({template: tpl.verifyRemove, userId, keyId, origin});
|
|
});
|
|
|
|
it('should send pgp encrypted email', async () => {
|
|
await email.send({template: tpl.verifyRemove, userId, keyId, origin});
|
|
});
|
|
});
|
|
});
|