loopback/test/email.test.js

94 lines
2.5 KiB
JavaScript
Raw Normal View History

2016-05-03 22:50:21 +00:00
// Copyright IBM Corp. 2013,2016. All Rights Reserved.
// Node module: loopback
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
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() {
var connector = new MailConnector({ transports: [
{ type: 'smtp', service: 'gmail' },
] });
2014-07-24 05:09:24 +00:00
assert(connector.transportForName('smtp'));
});
2014-11-21 02:35:36 +00:00
it('should set up DIRECT', function() {
var connector = new MailConnector({ transports: [
{ type: 'direct', name: 'localhost' },
] });
2014-07-24 05:09:24 +00:00
assert(connector.transportForName('direct'));
});
2014-11-21 02:35:36 +00:00
it('should set up STUB', function() {
var connector = new MailConnector({ transports: [
{ type: 'stub', service: 'gmail' },
] });
2014-07-24 05:09:24 +00:00
assert(connector.transportForName('stub'));
});
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');
var ds = loopback.createDataSource('email', {
connector: loopback.Mail,
transports: [{ type: 'STUB' }],
});
MyEmail.attachTo(ds);
});
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);
});
});
});
});