2014-07-14 22:44:34 +02:00
|
|
|
/**
|
|
|
|
* Copyright 2014 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");
|
2014-08-28 01:35:07 +02:00
|
|
|
var sinon = require("sinon");
|
2014-07-14 22:44:34 +02:00
|
|
|
var when = require("when");
|
2014-07-17 09:06:30 +02:00
|
|
|
var flows = require("../../../red/nodes/flows");
|
|
|
|
var RedNode = require("../../../red/nodes/Node");
|
|
|
|
var RED = require("../../../red/nodes");
|
|
|
|
var events = require("../../../red/events");
|
2014-08-28 01:35:07 +02:00
|
|
|
var typeRegistry = require("../../../red/nodes/registry");
|
|
|
|
|
|
|
|
|
|
|
|
var settings = {
|
|
|
|
available: function() { return false; }
|
|
|
|
}
|
2014-07-14 22:44:34 +02:00
|
|
|
|
|
|
|
function loadFlows(testFlows, cb) {
|
|
|
|
var storage = {
|
|
|
|
getFlows: function() {
|
2014-08-28 01:35:07 +02:00
|
|
|
return when.resolve(testFlows);
|
2014-07-14 22:44:34 +02:00
|
|
|
},
|
|
|
|
getCredentials: function() {
|
2014-08-28 01:35:07 +02:00
|
|
|
return when.resolve({});
|
|
|
|
}
|
2014-07-14 22:44:34 +02:00
|
|
|
};
|
2014-08-28 01:35:07 +02:00
|
|
|
RED.init(settings, storage);
|
2014-07-14 22:44:34 +02:00
|
|
|
flows.load().then(function() {
|
|
|
|
should.deepEqual(testFlows, flows.getFlows());
|
|
|
|
cb();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('flows', function() {
|
|
|
|
|
2014-10-29 22:38:05 +01:00
|
|
|
afterEach(function(done) {
|
|
|
|
flows.clear().then(function() {
|
|
|
|
loadFlows([],done);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-07-14 22:44:34 +02:00
|
|
|
describe('#add',function() {
|
|
|
|
it('should be called by node constructor',function(done) {
|
|
|
|
var n = new RedNode({id:'123',type:'abc'});
|
|
|
|
should.deepEqual(n, flows.get("123"));
|
|
|
|
flows.clear().then(function() {
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('#each',function() {
|
|
|
|
it('should "visit" all nodes',function(done) {
|
|
|
|
var nodes = [
|
|
|
|
new RedNode({id:'n0'}),
|
|
|
|
new RedNode({id:'n1'})
|
|
|
|
];
|
|
|
|
var count = 0;
|
|
|
|
flows.each(function(node) {
|
|
|
|
should.deepEqual(nodes[count], node);
|
|
|
|
count += 1;
|
|
|
|
if (count == 2) {
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('#load',function() {
|
|
|
|
it('should load nothing when storage is empty',function(done) {
|
|
|
|
loadFlows([], done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should load and start an empty tab flow',function(done) {
|
2014-08-28 01:35:07 +02:00
|
|
|
loadFlows([{"type":"tab","id":"tab1","label":"Sheet 1"}], function() {});
|
2014-07-14 22:44:34 +02:00
|
|
|
events.once('nodes-started', function() { done(); });
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should load and start a registered node type', function(done) {
|
|
|
|
RED.registerType('debug', function() {});
|
2014-08-28 01:35:07 +02:00
|
|
|
var typeRegistryGet = sinon.stub(typeRegistry,"get",function(nt) {
|
|
|
|
return function() {};
|
|
|
|
});
|
2014-07-14 22:44:34 +02:00
|
|
|
loadFlows([{"id":"n1","type":"debug"}], function() { });
|
2014-08-28 01:35:07 +02:00
|
|
|
events.once('nodes-started', function() {
|
|
|
|
typeRegistryGet.restore();
|
|
|
|
done();
|
|
|
|
});
|
2014-07-14 22:44:34 +02:00
|
|
|
});
|
|
|
|
|
2014-08-28 01:35:07 +02:00
|
|
|
it('should load and start when node type is registered', function(done) {
|
|
|
|
var typeRegistryGet = sinon.stub(typeRegistry,"get");
|
|
|
|
typeRegistryGet.onCall(0).returns(null);
|
|
|
|
typeRegistryGet.returns(function(){});
|
|
|
|
|
|
|
|
loadFlows([{"id":"n2","type":"inject"}], function() {
|
|
|
|
events.emit('type-registered','inject');
|
|
|
|
});
|
|
|
|
events.once('nodes-started', function() {
|
|
|
|
typeRegistryGet.restore();
|
|
|
|
done();
|
|
|
|
});
|
2014-07-14 22:44:34 +02:00
|
|
|
});
|
2014-10-29 22:38:05 +01:00
|
|
|
|
|
|
|
it('should not instantiate nodes of an unused subflow', function(done) {
|
|
|
|
RED.registerType('abc', function() {});
|
|
|
|
var typeRegistryGet = sinon.stub(typeRegistry,"get",function(nt) {
|
|
|
|
return function() {};
|
|
|
|
});
|
|
|
|
loadFlows([{"id":"n1","type":"subflow",inputs:[],outputs:[],wires:[]},
|
|
|
|
{"id":"n2","type":"abc","z":"n1",wires:[]}
|
|
|
|
],function() { });
|
|
|
|
events.once('nodes-started', function() {
|
|
|
|
(flows.get("n2") == null).should.be.true;
|
|
|
|
var ncount = 0
|
|
|
|
flows.each(function(n) {
|
|
|
|
ncount++;
|
|
|
|
});
|
|
|
|
ncount.should.equal(0);
|
|
|
|
console.log(ncount);
|
|
|
|
typeRegistryGet.restore();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('should instantiate nodes of an used subflow with new IDs', function(done) {
|
|
|
|
RED.registerType('abc', function() {});
|
|
|
|
var typeRegistryGet = sinon.stub(typeRegistry,"get",function(nt) {
|
|
|
|
return RedNode;
|
|
|
|
});
|
|
|
|
loadFlows([{"id":"n1","type":"subflow",inputs:[],outputs:[]},
|
|
|
|
{"id":"n2","type":"abc","z":"n1","name":"def",wires:[]},
|
|
|
|
{"id":"n3","type":"subflow:n1"}
|
|
|
|
], function() { });
|
|
|
|
events.once('nodes-started', function() {
|
|
|
|
// n2 should not get instantiated with that id
|
|
|
|
(flows.get("n2") == null).should.be.true;
|
|
|
|
var ncount = 0
|
|
|
|
var nodes = [];
|
|
|
|
flows.each(function(n) {
|
|
|
|
nodes.push(n);
|
|
|
|
});
|
|
|
|
nodes.should.have.lengthOf(2);
|
|
|
|
|
|
|
|
// Assume the nodes are instantiated in this order - not
|
|
|
|
// a requirement, but makes the test easier to write.
|
|
|
|
nodes[0].should.have.property("id","n3");
|
|
|
|
nodes[0].should.have.property("type","subflow:n1");
|
|
|
|
nodes[1].should.not.have.property("id","n2");
|
|
|
|
nodes[1].should.have.property("name","def");
|
|
|
|
|
|
|
|
// TODO: verify instance wiring is correct
|
|
|
|
typeRegistryGet.restore();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2014-07-14 22:44:34 +02:00
|
|
|
});
|
|
|
|
|
2014-07-14 23:00:09 +02:00
|
|
|
describe('#setFlows',function() {
|
|
|
|
it('should save and start an empty tab flow',function(done) {
|
|
|
|
var saved = 0;
|
|
|
|
var testFlows = [{"type":"tab","id":"tab1","label":"Sheet 1"}];
|
|
|
|
var storage = {
|
|
|
|
saveFlows: function(conf) {
|
|
|
|
var defer = when.defer();
|
|
|
|
defer.resolve();
|
|
|
|
should.deepEqual(testFlows, conf);
|
|
|
|
return defer.promise;
|
2014-07-16 12:25:43 +02:00
|
|
|
},
|
|
|
|
saveCredentials: function (creds) {
|
|
|
|
return when(true);
|
2014-07-14 23:00:09 +02:00
|
|
|
}
|
|
|
|
};
|
2014-08-28 01:35:07 +02:00
|
|
|
RED.init(settings, storage);
|
2014-07-14 23:00:09 +02:00
|
|
|
flows.setFlows(testFlows);
|
|
|
|
events.once('nodes-started', function() { done(); });
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-07-14 22:44:34 +02:00
|
|
|
});
|