keyserver/test/integration/email-test.js

74 lines
2.0 KiB
JavaScript
Raw Normal View History

'use strict';
const config = require('config');
2016-05-31 14:50:28 +00:00
const Email = require('../../src/email/email');
const tpl = require('../../src/email/templates.json');
describe('Email Integration Tests', function() {
this.timeout(20000);
2017-08-15 08:03:06 +00:00
let email;
let keyId;
let userId;
let origin;
let publicKeyArmored;
2017-08-15 08:03:06 +00:00
const recipient = {name: 'Test User', email: 'safewithme.testuser@gmail.com'};
2016-06-06 17:54:44 +00:00
2017-08-15 08:03:06 +00:00
before(() => {
publicKeyArmored = require('fs').readFileSync(`${__dirname}/../key1.asc`, 'utf8');
2016-05-31 14:50:28 +00:00
origin = {
protocol: 'http',
2017-08-15 08:03:06 +00:00
host: `localhost:${config.server.port}`
2016-05-31 14:50:28 +00:00
};
2016-06-08 12:01:30 +00:00
email = new Email();
email.init(config.email);
});
beforeEach(() => {
2016-06-09 09:38:00 +00:00
keyId = '0123456789ABCDF0';
userId = {
2016-06-06 17:54:44 +00:00
name: recipient.name,
email: recipient.email,
nonce: 'qwertzuioasdfghjkqwertzuio',
publicKeyArmored
};
});
2016-05-31 14:50:28 +00:00
describe("_sendHelper", () => {
2017-08-17 09:44:26 +00:00
it('should work', async () => {
2017-08-15 08:03:06 +00:00
const mailOptions = {
2016-06-06 17:54:44 +00:00
from: email._sender,
to: recipient,
subject: 'Hello ✔', // Subject line
text: 'Hello world 🐴', // plaintext body
html: '<b>Hello world 🐴</b>' // html body
};
2017-08-16 04:27:03 +00:00
const info = await email._sendHelper(mailOptions);
expect(info).to.exist;
});
});
2016-05-31 14:50:28 +00:00
describe("send verifyKey template", () => {
2017-08-17 09:44:26 +00:00
it('should send plaintext email', async () => {
delete userId.publicKeyArmored;
2017-08-16 04:27:03 +00:00
await email.send({template: tpl.verifyKey, userId, keyId, origin});
});
2017-08-17 09:44:26 +00:00
it('should send pgp encrypted email', async () => {
2017-08-16 04:27:03 +00:00
await email.send({template: tpl.verifyKey, userId, keyId, origin});
2016-05-31 14:50:28 +00:00
});
});
describe("send verifyRemove template", () => {
2017-08-17 09:44:26 +00:00
it('should send plaintext email', async () => {
delete userId.publicKeyArmored;
2017-08-16 04:27:03 +00:00
await email.send({template: tpl.verifyRemove, userId, keyId, origin});
});
2017-08-17 09:44:26 +00:00
it('should send pgp encrypted email', async () => {
2017-08-16 04:27:03 +00:00
await email.send({template: tpl.verifyRemove, userId, keyId, origin});
});
});
2017-08-15 08:03:06 +00:00
});