loopback/test/email.test.js

86 lines
2.1 KiB
JavaScript
Raw Normal View History

var loopback = require('../');
var MyEmail;
var assert = require('assert');
2014-07-24 05:09:24 +00:00
var MailConnector = require('../lib/connectors/mail');
2014-11-21 02:35:36 +00:00
describe('Email connector', function() {
it('should set up SMTP', function() {
2014-07-24 05:09:24 +00:00
var connector = new MailConnector({transports: [
{type: 'smtp', service: 'gmail'}
]});
assert(connector.transportForName('smtp'));
});
2014-11-21 02:35:36 +00:00
it('should set up DIRECT', function() {
2014-07-24 05:09:24 +00:00
var connector = new MailConnector({transports: [
{type: 'direct', name: 'localhost'}
]});
assert(connector.transportForName('direct'));
});
2014-11-21 02:35:36 +00:00
it('should set up STUB', function() {
2014-07-24 05:09:24 +00:00
var connector = new MailConnector({transports: [
{type: 'stub', service: 'gmail'}
]});
assert(connector.transportForName('stub'));
});
2014-11-21 02:35:36 +00:00
it('should set up a single transport for SMTP' , function() {
var connector = new MailConnector({transport:
{type: 'smtp', service: 'gmail'}
});
assert(connector.transportForName('smtp'));
});
2014-07-24 05:09:24 +00:00
});
2014-11-21 02:35:36 +00:00
describe('Email and SMTP', function() {
beforeEach(function() {
MyEmail = loopback.Email.extend('my-email');
loopback.autoAttach();
});
2014-11-21 02:35:36 +00:00
it('should have a send method', function() {
assert(typeof MyEmail.send === 'function');
assert(typeof MyEmail.prototype.send === 'function');
});
2014-11-21 02:35:36 +00:00
describe('MyEmail', function() {
it('MyEmail.send(options, callback)', function(done) {
var options = {
to: 'to@to.com',
from: 'from@from.com',
subject: 'subject',
text: 'text',
html: '<h1>html</h1>'
};
MyEmail.send(options, function(err, mail) {
2014-07-15 23:46:43 +00:00
assert(!err);
assert(mail.response);
assert(mail.envelope);
assert(mail.messageId);
done(err);
});
});
2014-11-21 02:35:36 +00:00
it('myEmail.send(callback)', function(done) {
var message = new MyEmail({
to: 'to@to.com',
from: 'from@from.com',
subject: 'subject',
text: 'text',
html: '<h1>html</h1>'
});
2014-11-21 02:35:36 +00:00
message.send(function(err, mail) {
2014-07-15 23:46:43 +00:00
assert(mail.response);
assert(mail.envelope);
assert(mail.messageId);
done(err);
});
});
});
});