mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
107 lines
4.0 KiB
JavaScript
107 lines
4.0 KiB
JavaScript
/**
|
|
* Copyright 2015 IBM Corp.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
|
|
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() {
|
|
|
|
beforeEach(function(done) {
|
|
helper.startServer(done);
|
|
});
|
|
|
|
afterEach(function(done) {
|
|
helper.unload();
|
|
helper.stopServer(done);
|
|
});
|
|
|
|
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() {
|
|
var n1 = helper.getNode("n1");
|
|
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() {
|
|
|
|
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");
|
|
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() {
|
|
var n1 = helper.getNode("n1");
|
|
n1.should.have.property('name', "emailout");
|
|
n1.emit("input", {payload:"Hello World"});
|
|
//done();
|
|
});
|
|
setTimeout(function() {
|
|
try {
|
|
var logEvents = helper.log().args.filter(function(evt) {
|
|
return evt[0].type == "e-mail";
|
|
});
|
|
//console.log(logEvents);
|
|
//logEvents.should.have.length(3);
|
|
logEvents[0][0].should.have.a.property('msg');
|
|
logEvents[0][0].msg.toString().should.startWith("Error: connect ECONNREFUSED");
|
|
done();
|
|
}
|
|
catch(e) { done(e); }
|
|
//finally { smtpTransport.sendMail.restore(); }
|
|
}, 1000);
|
|
})
|
|
|
|
});
|
|
});
|