mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Link Call should not call into subflow...
- includes missing jsdoc - improves speed (no searching, only lookups) - code formatting consistency - improve tests
This commit is contained in:
parent
e653a933f1
commit
249f7e45fb
@ -21,14 +21,15 @@
|
|||||||
* @property {string} name - Name of target Node
|
* @property {string} name - Name of target Node
|
||||||
* @property {number} flowId - ID of flow where the target node exists
|
* @property {number} flowId - ID of flow where the target node exists
|
||||||
* @property {string} flowName - Name of flow where the target node exists
|
* @property {string} flowName - Name of flow where the target node exists
|
||||||
|
* @property {boolean} isSubFlow - True if the link-in node exists in a subflow instance
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
module.exports = function(RED) {
|
module.exports = function(RED) {
|
||||||
"use strict";
|
"use strict";
|
||||||
const crypto = require("crypto");
|
const crypto = require("crypto");
|
||||||
const targetCache = (function() {
|
const targetCache = (function () {
|
||||||
const registry = { ids: {}, named: {}};
|
const registry = { id: {}, name: {} };
|
||||||
function getIndex(/** @type {[LinkTarget]}*/ targets, id) {
|
function getIndex(/** @type {[LinkTarget]}*/ targets, id) {
|
||||||
for (let index = 0; index < (targets || []).length; index++) {
|
for (let index = 0; index < (targets || []).length; index++) {
|
||||||
const element = targets[index];
|
const element = targets[index];
|
||||||
@ -49,18 +50,23 @@ module.exports = function(RED) {
|
|||||||
id: node.id,
|
id: node.id,
|
||||||
name: node.name || node.id,
|
name: node.name || node.id,
|
||||||
flowId: node._flow.flow.id,
|
flowId: node._flow.flow.id,
|
||||||
flowName: isSubFlow ? node._flow.subflowDef.name : node._flow.flow.label,
|
flowName: isSubFlow ? node._flow.subflowDef.name : node._flow.flow.label,
|
||||||
isSubFlow: isSubFlow
|
isSubFlow: isSubFlow
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
/**
|
/**
|
||||||
* Get a list of targets registerd to this name
|
* Get a list of targets registerd to this name
|
||||||
* @param {string} name
|
* @param {string} name Name of the target
|
||||||
|
* @param {boolean} [excludeSubflows] set `true` to exclude
|
||||||
* @returns {[LinkTarget]} Targets registerd to this name.
|
* @returns {[LinkTarget]} Targets registerd to this name.
|
||||||
*/
|
*/
|
||||||
getTargets(name) {
|
getTargets(name, excludeSubflows) {
|
||||||
return registry.named[name] || [];
|
const targets = registry.name[name] || [];
|
||||||
|
if (excludeSubflows) {
|
||||||
|
return targets.filter(e => e.isSubFlow != true);
|
||||||
|
}
|
||||||
|
return targets;
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
* Get a single target by registered name.
|
* Get a single target by registered name.
|
||||||
@ -70,15 +76,15 @@ module.exports = function(RED) {
|
|||||||
* @param {string} [flowId]
|
* @param {string} [flowId]
|
||||||
* @returns {LinkTarget} target
|
* @returns {LinkTarget} target
|
||||||
*/
|
*/
|
||||||
getTarget(name, flowId) {
|
getTarget(name, flowId) {
|
||||||
|
/** @type {[LinkTarget]}*/
|
||||||
let possibleTargets = this.getTargets(name);
|
let possibleTargets = this.getTargets(name);
|
||||||
/** @type {LinkTarget}*/ let target;
|
/** @type {LinkTarget}*/
|
||||||
if(possibleTargets.length) {
|
let target;
|
||||||
if(flowId) {
|
if (possibleTargets.length && flowId) {
|
||||||
possibleTargets = possibleTargets.filter(e => e.flowId == flowId);
|
possibleTargets = possibleTargets.filter(e => e.flowId == flowId);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if(possibleTargets.length === 1) {
|
if (possibleTargets.length === 1) {
|
||||||
target = possibleTargets[0];
|
target = possibleTargets[0];
|
||||||
}
|
}
|
||||||
return target;
|
return target;
|
||||||
@ -89,35 +95,35 @@ module.exports = function(RED) {
|
|||||||
* @returns {LinkTarget} target
|
* @returns {LinkTarget} target
|
||||||
*/
|
*/
|
||||||
getTargetById(nodeId) {
|
getTargetById(nodeId) {
|
||||||
return registry.ids[nodeId];
|
return registry.id[nodeId];
|
||||||
},
|
},
|
||||||
register(/** @type {LinkInNode} */ node) {
|
register(/** @type {LinkInNode} */ node) {
|
||||||
const target = generateTarget(node);
|
const target = generateTarget(node);
|
||||||
const tByName = this.getTarget(target.name, target.flowId);
|
const tByName = this.getTarget(target.name, target.flowId);
|
||||||
if(!tByName) {
|
if (!tByName || tByName.id !== target.id) {
|
||||||
registry.named[target.name] = registry.named[target.name] || [];
|
registry.name[target.name] = registry.name[target.name] || [];
|
||||||
registry.named[target.name].push(target)
|
registry.name[target.name].push(target)
|
||||||
}
|
}
|
||||||
registry.ids[target.id] = target;
|
registry.id[target.id] = target;
|
||||||
return target;
|
return target;
|
||||||
},
|
},
|
||||||
remove(node) {
|
remove(node) {
|
||||||
const target = generateTarget(node);
|
const target = generateTarget(node);
|
||||||
const tn = this.getTarget(target.name, target.flowId);
|
const tn = this.getTarget(target.name, target.flowId);
|
||||||
if(tn) {
|
if (tn) {
|
||||||
const targs = this.getTargets(tn.name);
|
const targs = this.getTargets(tn.name);
|
||||||
const idx = getIndex(targs, tn.id);
|
const idx = getIndex(targs, tn.id);
|
||||||
if(idx > -1) {
|
if (idx > -1) {
|
||||||
targs.splice(idx,1);
|
targs.splice(idx, 1);
|
||||||
}
|
}
|
||||||
if(targs.length === 0) {
|
if (targs.length === 0) {
|
||||||
delete registry.named[tn.name];
|
delete registry.name[tn.name];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
delete registry.ids[target.id];
|
delete registry.id[target.id];
|
||||||
},
|
},
|
||||||
clear() {
|
clear() {
|
||||||
registry = { ids: {}, named: {}};
|
registry = { id: {}, name: {} };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
@ -187,17 +193,27 @@ module.exports = function(RED) {
|
|||||||
if (isNaN(timeout)) {
|
if (isNaN(timeout)) {
|
||||||
timeout = 30000;
|
timeout = 30000;
|
||||||
}
|
}
|
||||||
function findNode(target) {
|
function getTargetNode(msg) {
|
||||||
let foundNode = RED.nodes.getNode(target); //1st see if the target is a direct node id
|
const dynamicMode = linkType === "dynamic";
|
||||||
if(!foundNode) {
|
const target = dynamicMode ? msg.target : staticTarget
|
||||||
//first look in this flow for the node
|
|
||||||
|
////1st see if the target is a direct node id
|
||||||
|
let foundNode;
|
||||||
|
if (targetCache.getTargetById(target)) {
|
||||||
|
foundNode = RED.nodes.getNode(target)
|
||||||
|
}
|
||||||
|
if (target && !foundNode && dynamicMode) {
|
||||||
|
//next, look in **this flow only** for the node
|
||||||
let cachedTarget = targetCache.getTarget(target, node._flow.flow.id);
|
let cachedTarget = targetCache.getTarget(target, node._flow.flow.id);
|
||||||
if(!cachedTarget) {
|
if (!cachedTarget) {
|
||||||
//single target node not found in registry! get all possible targets
|
//single target node not found in registry!
|
||||||
const possibleTargets = targetCache.getTargets(target);
|
//get all possible targets from regular flows (exclude subflow instances)
|
||||||
if(possibleTargets.length === 1) {
|
const possibleTargets = targetCache.getTargets(target, true);
|
||||||
|
if (possibleTargets.length === 1) {
|
||||||
|
//only 1 link-in found with this name - good, lets use it
|
||||||
cachedTarget = possibleTargets[0];
|
cachedTarget = possibleTargets[0];
|
||||||
} else if (possibleTargets.length > 1) {
|
} else if (possibleTargets.length > 1) {
|
||||||
|
//more than 1 link-in has this name, raise an error
|
||||||
throw new Error(`Multiple link-in nodes named '${target}' found`);
|
throw new Error(`Multiple link-in nodes named '${target}' found`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -205,15 +221,15 @@ module.exports = function(RED) {
|
|||||||
foundNode = RED.nodes.getNode(cachedTarget.id);
|
foundNode = RED.nodes.getNode(cachedTarget.id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(foundNode instanceof LinkInNode) {
|
if (foundNode instanceof LinkInNode) {
|
||||||
return foundNode;
|
return foundNode;
|
||||||
}
|
}
|
||||||
throw new Error(`link-in node '${target}' not found`);
|
throw new Error(`target link-in node '${target || ""}' not found`);
|
||||||
}
|
}
|
||||||
this.on("input", function(msg, send, done) {
|
this.on("input", function (msg, send, done) {
|
||||||
try {
|
try {
|
||||||
let targetNode = linkType == "dynamic" ? findNode(msg.target) : RED.nodes.getNode(staticTarget);
|
const targetNode = getTargetNode(msg);
|
||||||
if (targetNode && targetNode instanceof LinkInNode) {
|
if (targetNode instanceof LinkInNode) {
|
||||||
msg._linkSource = msg._linkSource || [];
|
msg._linkSource = msg._linkSource || [];
|
||||||
const messageEvent = {
|
const messageEvent = {
|
||||||
id: crypto.randomBytes(14).toString('hex'),
|
id: crypto.randomBytes(14).toString('hex'),
|
||||||
@ -223,9 +239,9 @@ module.exports = function(RED) {
|
|||||||
msg: RED.util.cloneMessage(msg),
|
msg: RED.util.cloneMessage(msg),
|
||||||
send,
|
send,
|
||||||
done,
|
done,
|
||||||
ts: setTimeout(function() {
|
ts: setTimeout(function () {
|
||||||
timeoutMessage(messageEvent.id)
|
timeoutMessage(messageEvent.id)
|
||||||
}, timeout )
|
}, timeout)
|
||||||
};
|
};
|
||||||
msg._linkSource.push(messageEvent);
|
msg._linkSource.push(messageEvent);
|
||||||
targetNode.receive(msg);
|
targetNode.receive(msg);
|
||||||
|
@ -120,62 +120,102 @@ describe('link Node', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe("link-call node", function() {
|
describe("link-call node", function() {
|
||||||
it('should call static link-in node and get response', function(done) {
|
it('should call static link-in node and get response', function (done) {
|
||||||
var flow = [{id:"link-in-1", type:"link in", wires: [[ "func"]]},
|
var flow = [{ id: "link-in-1", type: "link in", wires: [["func"]] },
|
||||||
{id:"func", type:"helper", wires: [["link-out-1"]]},
|
{ id: "func", type: "helper", wires: [["link-out-1"]] },
|
||||||
{id:"link-out-1", type:"link out", mode: "return"},
|
{ id: "link-out-1", type: "link out", mode: "return" },
|
||||||
{id:"link-call", type:"link call", links:["link-in-1"], wires:[["n4"]]},
|
{ id: "link-call", type: "link call", links: ["link-in-1"], wires: [["n4"]] },
|
||||||
{id:"n4", type:"helper"} ];
|
{ id: "n4", type: "helper" }];
|
||||||
helper.load(linkNode, flow, function() {
|
helper.load(linkNode, flow, function () {
|
||||||
var func = helper.getNode("func");
|
var func = helper.getNode("func");
|
||||||
func.on("input", function(msg, send, done) {
|
func.on("input", function (msg, send, done) {
|
||||||
msg.payload = "123";
|
msg.payload = "123";
|
||||||
send(msg);
|
send(msg);
|
||||||
done();
|
done();
|
||||||
})
|
})
|
||||||
var n1 = helper.getNode("link-call");
|
var n1 = helper.getNode("link-call");
|
||||||
var n4 = helper.getNode("n4");
|
var n4 = helper.getNode("n4");
|
||||||
n4.on("input", function(msg) {
|
n4.on("input", function (msg) {
|
||||||
try {
|
try {
|
||||||
msg.should.have.property('payload', '123');
|
msg.should.have.property('payload', '123');
|
||||||
done();
|
done();
|
||||||
} catch(err) {
|
} catch (err) {
|
||||||
done(err);
|
done(err);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
n1.receive({payload:"hello"});
|
n1.receive({ payload: "hello" });
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should call link-in node by name and get response', function(done) {
|
it('should call link-in node by name and get response', function (done) {
|
||||||
|
this.timeout(500);
|
||||||
var payload = Date.now();
|
var payload = Date.now();
|
||||||
var flow = [{id:"link-in-1", type:"link in", name:"double payload", wires: [[ "func"]]},
|
var flow = [
|
||||||
{id:"func", type:"helper", wires: [["link-out-1"]]},
|
{ id: "tab-flow-1", type: "tab", label: "Flow 1" },
|
||||||
{id:"link-out-1", type:"link out", mode: "return"},
|
{ id: "tab-flow-2", type: "tab", label: "Flow 2" },
|
||||||
{id:"link-call", type:"link call", linkType:"dynamic", links:[], wires:[["n4"]]},
|
{ id: "link-in-1", z: "tab-flow-1", type: "link in", name: "double payload", wires: [["func"]] },
|
||||||
{id:"n4", type:"helper"} ];
|
{ id: "link-in-2", z: "tab-flow-2", type: "link in", name: "double payload", wires: [["func"]] },
|
||||||
helper.load(linkNode, flow, function() {
|
{ id: "func", z: "tab-flow-1", type: "helper", wires: [["link-out-1"]] },
|
||||||
|
{ id: "link-out-1", z: "tab-flow-1", type: "link out", mode: "return" },
|
||||||
|
{ id: "link-call", z: "tab-flow-1", type: "link call", linkType: "dynamic", links: [], wires: [["n4"]] },
|
||||||
|
{ id: "n4", z: "tab-flow-1", type: "helper" }
|
||||||
|
];
|
||||||
|
helper.load(linkNode, flow, function () {
|
||||||
var func = helper.getNode("func");
|
var func = helper.getNode("func");
|
||||||
func.on("input", function(msg, send, done) {
|
func.on("input", function (msg, send, done) {
|
||||||
msg.payload += msg.payload;
|
msg.payload += msg.payload;
|
||||||
send(msg);
|
send(msg);
|
||||||
done();
|
done();
|
||||||
})
|
})
|
||||||
var n1 = helper.getNode("link-call");
|
var n1 = helper.getNode("link-call");
|
||||||
var n4 = helper.getNode("n4");
|
var n4 = helper.getNode("n4");
|
||||||
n4.on("input", function(msg) {
|
n4.on("input", function (msg) {
|
||||||
try {
|
try {
|
||||||
msg.should.have.property('payload');
|
msg.should.have.property('payload');
|
||||||
msg.payload.should.eql(payload + payload);
|
msg.payload.should.eql(payload + payload);
|
||||||
done();
|
done();
|
||||||
} catch(err) {
|
} catch (err) {
|
||||||
done(err);
|
done(err);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
n1.receive({payload:payload, target:"double payload" });
|
n1.receive({ payload: payload, target: "double payload" });
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
it('should timeout waiting for link return', function(done) {
|
// //TODO: This test is DISABLED - helper.load() calls callback but none of the nodes are available (issue loading a flow with a subflow)
|
||||||
|
// it('should call link-in node by name in subflow', function (done) {
|
||||||
|
// this.timeout(9999500);
|
||||||
|
// var payload = Date.now();
|
||||||
|
// var flow = [
|
||||||
|
// {"id":"sub-flow-template","type":"subflow","name":"Subflow","info":"","category":"","in":[{"wires":[{"id":"link-call-1"}]}],"out":[{"wires":[{"id":"link-call-1","port":0}]}]},
|
||||||
|
// {"id":"link-call-1","type":"link call","z":"sub-flow-template","name":"","links":[],"linkType":"dynamic","timeout":"5","wires":[[]]},
|
||||||
|
// {"id":"link-in-1","type":"link in","z":"sub-flow-template","name":"double payload","links":[],"wires":[["func"]]},
|
||||||
|
// {"id":"func","type":"function","z":"sub-flow-template","name":"payload.a x payload.b","func":"msg.payload += msg.payload\nreturn msg;\n","outputs":1,"wires":[["link-out-1"]]},
|
||||||
|
// {"id":"link-out-1","type":"link out","z":"sub-flow-template","name":"","mode":"return","links":[],"wires":[]},
|
||||||
|
// {"id":"sub-flow-1","type":"subflow:sub-flow-template","z":"tab-flow-1","name":"","wires":[["n4"]]},
|
||||||
|
// { id: "n4", z: "tab-flow-1", type: "helper" }
|
||||||
|
// ];
|
||||||
|
// helper.load(linkNode, flow, function () {
|
||||||
|
// var sf = helper.getNode("sub-flow-1");
|
||||||
|
// var func = helper.getNode("func");
|
||||||
|
// var n4 = helper.getNode("n4");
|
||||||
|
// func.on("input", function (msg, send, done) {
|
||||||
|
// msg.payload += msg.payload;
|
||||||
|
// send(msg);
|
||||||
|
// done();
|
||||||
|
// })
|
||||||
|
// n4.on("input", function (msg) {
|
||||||
|
// try {
|
||||||
|
// msg.should.have.property('payload');
|
||||||
|
// msg.payload.should.eql(payload + payload);
|
||||||
|
// done();
|
||||||
|
// } catch (err) {
|
||||||
|
// done(err);
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
// sf.receive({ payload: payload, target: "double payload" });
|
||||||
|
// });
|
||||||
|
// })
|
||||||
|
it('should timeout waiting for link return', function (done) {
|
||||||
this.timeout(1000);
|
this.timeout(1000);
|
||||||
const flow = [
|
const flow = [
|
||||||
{ id: "tab-flow-1", type: "tab", label: "Flow 1" },
|
{ id: "tab-flow-1", type: "tab", label: "Flow 1" },
|
||||||
@ -186,30 +226,64 @@ describe('link Node', function() {
|
|||||||
{ id: "catch-all", z: "tab-flow-1", type: "catch", scope: ["link-call"], uncaught: true, wires: [["n4"]] },
|
{ id: "catch-all", z: "tab-flow-1", type: "catch", scope: ["link-call"], uncaught: true, wires: [["n4"]] },
|
||||||
{ id: "n4", z: "tab-flow-1", type: "helper" }
|
{ id: "n4", z: "tab-flow-1", type: "helper" }
|
||||||
];
|
];
|
||||||
helper.load(linkNode, flow, function() {
|
helper.load(linkNode, flow, function () {
|
||||||
const funcNode = helper.getNode("func");
|
const funcNode = helper.getNode("func");
|
||||||
const linkCallNode = helper.getNode("link-call");
|
const linkCallNode = helper.getNode("link-call");
|
||||||
const helperNode = helper.getNode("n4");
|
const helperNode = helper.getNode("n4");
|
||||||
funcNode.on("input", function(msg, send, done) {
|
funcNode.on("input", function (msg, send, done) {
|
||||||
msg.payload += msg.payload;
|
msg.payload += msg.payload;
|
||||||
send(msg);
|
send(msg);
|
||||||
done();
|
done();
|
||||||
})
|
})
|
||||||
helperNode.on("input", function(msg) {
|
helperNode.on("input", function (msg) {
|
||||||
try {
|
try {
|
||||||
msg.should.have.property("target", "double payload");
|
msg.should.have.property("target", "double payload");
|
||||||
msg.should.have.property("error");
|
msg.should.have.property("error");
|
||||||
msg.error.should.have.property("message", "timeout");
|
msg.error.should.have.property("message", "timeout");
|
||||||
msg.error.should.have.property("source");
|
msg.error.should.have.property("source");
|
||||||
done();
|
done();
|
||||||
} catch(err) {
|
} catch (err) {
|
||||||
done(err);
|
done(err);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
linkCallNode.receive({payload:"hello", target:"double payload" });
|
linkCallNode.receive({ payload: "hello", target: "double payload" });
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
it('should raise error due to multiple targets', function(done) {
|
it('should raise error due to multiple targets on same tab', function (done) {
|
||||||
|
this.timeout(55500);
|
||||||
|
const flow = [
|
||||||
|
{ id: "tab-flow-1", type: "tab", label: "Flow 1" },
|
||||||
|
{ id: "link-in-1", z: "tab-flow-1", type: "link in", name: "double payload", wires: [["func"]] },
|
||||||
|
{ id: "link-in-2", z: "tab-flow-1", type: "link in", name: "double payload", wires: [["func"]] },
|
||||||
|
{ id: "func", z: "tab-flow-1", type: "helper", wires: [["link-out-1"]] },
|
||||||
|
{ id: "link-out-1", z: "tab-flow-1", type: "link out", mode: "return" },
|
||||||
|
{ id: "link-call", z: "tab-flow-1", type: "link call", linkType: "dynamic", links: [], wires: [["n4"]] },
|
||||||
|
{ id: "catch-all", z: "tab-flow-1", type: "catch", scope: ["link-call"], uncaught: true, wires: [["n4"]] },
|
||||||
|
{ id: "n4", z: "tab-flow-1", type: "helper" }
|
||||||
|
];
|
||||||
|
helper.load(linkNode, flow, function () {
|
||||||
|
const funcNode = helper.getNode("func");
|
||||||
|
const linkCall = helper.getNode("link-call");
|
||||||
|
const helperNode = helper.getNode("n4");
|
||||||
|
funcNode.on("input", function (msg, send, _done) {
|
||||||
|
done(new Error("Function should not be called"))
|
||||||
|
})
|
||||||
|
helperNode.on("input", function (msg) {
|
||||||
|
try {
|
||||||
|
msg.should.have.property("target", "double payload");
|
||||||
|
msg.should.have.property("error");
|
||||||
|
msg.error.should.have.property("message");
|
||||||
|
msg.error.message.should.match(/.*Multiple link-in nodes.*/)
|
||||||
|
msg.error.should.have.property("source");
|
||||||
|
done();
|
||||||
|
} catch (err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
linkCall.receive({ payload: "hello", target: "double payload" });
|
||||||
|
});
|
||||||
|
})
|
||||||
|
it('should raise error due to multiple targets on different tabs', function (done) {
|
||||||
this.timeout(500);
|
this.timeout(500);
|
||||||
const flow = [
|
const flow = [
|
||||||
{ id: "tab-flow-1", type: "tab", label: "Flow 1" },
|
{ id: "tab-flow-1", type: "tab", label: "Flow 1" },
|
||||||
@ -223,26 +297,26 @@ describe('link Node', function() {
|
|||||||
{ id: "catch-all", z: "tab-flow-1", type: "catch", scope: ["link-call"], uncaught: true, wires: [["n4"]] },
|
{ id: "catch-all", z: "tab-flow-1", type: "catch", scope: ["link-call"], uncaught: true, wires: [["n4"]] },
|
||||||
{ id: "n4", z: "tab-flow-1", type: "helper" }
|
{ id: "n4", z: "tab-flow-1", type: "helper" }
|
||||||
];
|
];
|
||||||
helper.load(linkNode, flow, function() {
|
helper.load(linkNode, flow, function () {
|
||||||
const funcNode = helper.getNode("func");
|
const funcNode = helper.getNode("func");
|
||||||
const linkCall = helper.getNode("link-call");
|
const linkCall = helper.getNode("link-call");
|
||||||
const helperNode = helper.getNode("n4");
|
const helperNode = helper.getNode("n4");
|
||||||
funcNode.on("input", function(msg, send, _done) {
|
funcNode.on("input", function (msg, send, _done) {
|
||||||
done(new Error("Function should not be called"))
|
done(new Error("Function should not be called"))
|
||||||
})
|
})
|
||||||
helperNode.on("input", function(msg) {
|
helperNode.on("input", function (msg) {
|
||||||
try{
|
try {
|
||||||
msg.should.have.property("target", "double payload");
|
msg.should.have.property("target", "double payload");
|
||||||
msg.should.have.property("error");
|
msg.should.have.property("error");
|
||||||
msg.error.should.have.property("message");
|
msg.error.should.have.property("message");
|
||||||
msg.error.message.should.match(/.*Multiple link-in nodes.*/)
|
msg.error.message.should.match(/.*Multiple link-in nodes.*/)
|
||||||
msg.error.should.have.property("source");
|
msg.error.should.have.property("source");
|
||||||
done();
|
done();
|
||||||
} catch(err) {
|
} catch (err) {
|
||||||
done(err);
|
done(err);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
linkCall.receive({payload:"hello", target:"double payload" });
|
linkCall.receive({ payload: "hello", target: "double payload" });
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
it('should allow nested link-call flows', function(done) {
|
it('should allow nested link-call flows', function(done) {
|
||||||
|
Loading…
Reference in New Issue
Block a user