mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
Adding No Auth support to social email out node (#277)
* Let email out node connect to SMTP without authentication Add the possibility to connect to local SMTP without authentication. * Adapt test to connect to SMTP without credentials Adapt test to connect to SMTP without credentials * Add coverage for social email out node Add coverage for social email out node * Add more coverage to email out node Add more coverage to email out node
This commit is contained in:
committed by
Dave Conway-Jones
parent
367237d946
commit
8e001fcd45
@@ -1,91 +1,190 @@
|
||||
|
||||
var should = require("should");
|
||||
var sinon = require("sinon");
|
||||
var helper = require('../../../test/helper.js');
|
||||
var emailNode = require('../../../social/email/61-email.js');
|
||||
|
||||
describe('email Node', function() {
|
||||
describe('email Node', function () {
|
||||
|
||||
beforeEach(function(done) {
|
||||
beforeEach(function (done) {
|
||||
helper.startServer(done);
|
||||
});
|
||||
|
||||
afterEach(function(done) {
|
||||
afterEach(function (done) {
|
||||
helper.unload();
|
||||
helper.stopServer(done);
|
||||
});
|
||||
|
||||
describe('email in', function() {
|
||||
describe('email in', function () {
|
||||
|
||||
it('should load with defaults', function(done) {
|
||||
var flow = [ { id:"n1", type:"e-mail in", name:"emailin", wires:[[]] } ];
|
||||
helper.load(emailNode, flow, function() {
|
||||
it('should load with defaults', function (done) {
|
||||
var flow = [{
|
||||
id: "n1",
|
||||
type: "e-mail in",
|
||||
name: "emailin",
|
||||
wires: [
|
||||
[]
|
||||
]
|
||||
}];
|
||||
helper.load(emailNode, flow, function () {
|
||||
var n1 = helper.getNode("n1");
|
||||
n1.should.have.property('name', "emailin");
|
||||
n1.should.have.property('name', "emailin");
|
||||
n1.should.have.property("repeat", 300000);
|
||||
n1.should.have.property("inserver", "imap.gmail.com");
|
||||
n1.should.have.property("inport", "993");
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
//it('should load', function(done) {
|
||||
//var flow = [ { id:"n1", type:"e-mail in", wires:[["n2"]] },
|
||||
//{id:"n2", type:"helper"} ];
|
||||
//helper.load(emailNode, flow, function() {
|
||||
//var n1 = helper.getNode("n1");
|
||||
//var n2 = helper.getNode("n2");
|
||||
//n2.on("input", function(msg) {
|
||||
//msg.should.have.property('payload', "hello");
|
||||
//done();
|
||||
//});
|
||||
//var testString = "1,2,3,4"+String.fromCharCode(10);
|
||||
//n1.emit("input", {payload:testString});
|
||||
//});
|
||||
//});
|
||||
|
||||
});
|
||||
|
||||
describe('email out', function() {
|
||||
describe('email out', function () {
|
||||
|
||||
it('should load with defaults', function(done) {
|
||||
var flow = [ { id:"n1", type:"e-mail", name:"emailout", wires:[[]] } ];
|
||||
helper.load(emailNode, flow, function() {
|
||||
it('should load with defaults', function (done) {
|
||||
var flow = [{
|
||||
id: "n1",
|
||||
type: "e-mail",
|
||||
name: "emailout",
|
||||
wires: [
|
||||
[]
|
||||
]
|
||||
}];
|
||||
helper.load(emailNode, flow, function () {
|
||||
var n1 = helper.getNode("n1");
|
||||
n1.should.have.property('name', "emailout");
|
||||
n1.should.have.property('name', "emailout");
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should fail to send an email (no valid creds)', function(done) {
|
||||
var smtpTransport = require("nodemailer").createTransport();
|
||||
//var spy = sinon.stub(smtpTransport, 'sendMail', function(arg1,arg2,arg3,arg4) {
|
||||
//console.log("HELLO");
|
||||
//console.log(arg1,arg2,arg3,arg4);
|
||||
//done();
|
||||
//});
|
||||
var flow = [ { id:"n1", type:"e-mail", name:"emailout", outserver:"smtp.gmail.com", outport:"465", wires:[[]] } ];
|
||||
helper.load(emailNode, flow, function() {
|
||||
it('should fail with no payload', function (done) {
|
||||
var flow = [{
|
||||
id: "n1",
|
||||
type: "e-mail",
|
||||
name: "emailout",
|
||||
wires: [
|
||||
[]
|
||||
]
|
||||
}];
|
||||
helper.load(emailNode, flow, function () {
|
||||
var n1 = helper.getNode("n1");
|
||||
n1.should.have.property('name', "emailout");
|
||||
n1.emit("input", {payload:"Hello World"});
|
||||
n1.credentials = {
|
||||
userid: "test",
|
||||
password: "test",
|
||||
};
|
||||
n1.emit("input", {});
|
||||
//done();
|
||||
});
|
||||
setTimeout(function() {
|
||||
setTimeout(function () {
|
||||
try {
|
||||
var logEvents = helper.log().args.filter(function(evt) {
|
||||
var logEvents = helper.log().args.filter(function (evt) {
|
||||
//console.log(evt[0].msg);
|
||||
return evt[0].type == "e-mail";
|
||||
});
|
||||
//console.log(logEvents);
|
||||
//console.log(helper.log().args);
|
||||
//console.log(helper.log());
|
||||
//logEvents.should.have.length(3);
|
||||
logEvents[0][0].should.have.a.property('msg');
|
||||
logEvents[0][0].msg.toString().should.startWith("email.errors.nouserid");
|
||||
logEvents[0][0].msg.toString().should.startWith("email.errors.nopayload");
|
||||
done();
|
||||
} catch (e) {
|
||||
done(e);
|
||||
}
|
||||
//finally { smtpTransport.sendMail.restore(); }
|
||||
}, 1000);
|
||||
});
|
||||
|
||||
it('should fail to send an email (invalid creds)', function (done) {
|
||||
//var smtpTransport = require("nodemailer").createTransport();
|
||||
//var spy = sinon.stub(smtpTransport, 'sendMail', function(arg1,arg2,arg3,arg4) {
|
||||
//console.log("HELLO");
|
||||
//console.log(arg1,arg2,arg3,arg4);
|
||||
//done();
|
||||
//});
|
||||
var flow = [{
|
||||
id: "n1",
|
||||
type: "e-mail",
|
||||
name: "test@gmail.com",
|
||||
server: "smtp.gmail.com",
|
||||
secure: true,
|
||||
port: "465",
|
||||
wires: [
|
||||
[]
|
||||
]
|
||||
}];
|
||||
helper.load(emailNode, flow, function () {
|
||||
var n1 = helper.getNode("n1");
|
||||
n1.credentials = {
|
||||
userid: "test",
|
||||
password: "test",
|
||||
};
|
||||
n1.should.have.property('name', "test@gmail.com");
|
||||
n1.emit("input", {
|
||||
payload: "Hello World",
|
||||
to: "test@gmail.com"
|
||||
});
|
||||
//done();
|
||||
});
|
||||
setTimeout(function () {
|
||||
try {
|
||||
var logEvents = helper.log().args.filter(function (evt) {
|
||||
//console.log(evt[0].msg);
|
||||
return evt[0].type == "e-mail";
|
||||
});
|
||||
//console.log(helper.log().args);
|
||||
//console.log(helper.log());
|
||||
//logEvents.should.have.length(3);
|
||||
logEvents[0][0].should.have.a.property('msg');
|
||||
logEvents[0][0].msg.toString().should.startWith("Error:");
|
||||
done();
|
||||
} catch (e) {
|
||||
done(e);
|
||||
}
|
||||
//finally { smtpTransport.sendMail.restore(); }
|
||||
}, 1000);
|
||||
})
|
||||
|
||||
it('should fail to send an email (no creds provided)', function (done) {
|
||||
//var smtpTransport = require("nodemailer").createTransport();
|
||||
//var spy = sinon.stub(smtpTransport, 'sendMail', function(arg1,arg2,arg3,arg4) {
|
||||
//console.log("HELLO");
|
||||
//console.log(arg1,arg2,arg3,arg4);
|
||||
//done();
|
||||
//});
|
||||
var flow = [{
|
||||
id: "n1",
|
||||
type: "e-mail",
|
||||
name: "test@gmail.com",
|
||||
server: "smtp.gmail.com",
|
||||
secure: true,
|
||||
port: "465",
|
||||
wires: [
|
||||
[]
|
||||
]
|
||||
}];
|
||||
helper.load(emailNode, flow, function () {
|
||||
var n1 = helper.getNode("n1");
|
||||
n1.should.have.property('name', "test@gmail.com");
|
||||
n1.emit("input", {
|
||||
payload: "Hello World",
|
||||
to: "test@gmail.com"
|
||||
});
|
||||
//done();
|
||||
});
|
||||
setTimeout(function () {
|
||||
try {
|
||||
var logEvents = helper.log().args.filter(function (evt) {
|
||||
//console.log(evt[0].msg);
|
||||
return evt[0].type == "e-mail";
|
||||
});
|
||||
//console.log(helper.log().args);
|
||||
//logEvents.should.have.length(3);
|
||||
logEvents[0][0].should.have.a.property('msg');
|
||||
logEvents[0][0].msg.toString().should.startWith("Error:");
|
||||
done();
|
||||
} catch (e) {
|
||||
done(e);
|
||||
}
|
||||
catch(e) { done(e); }
|
||||
//finally { smtpTransport.sendMail.restore(); }
|
||||
}, 1000);
|
||||
})
|
||||
|
||||
});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user