2014-05-03 23:26:35 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2014-05-03 23:26:35 +02:00
|
|
|
*
|
|
|
|
* 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");
|
2014-07-30 11:56:42 +02:00
|
|
|
var util = require("util");
|
2014-05-03 23:26:35 +02:00
|
|
|
|
2018-08-20 17:17:24 +02:00
|
|
|
var NR_TEST_UTILS = require("nr-test-utils");
|
|
|
|
var index = NR_TEST_UTILS.require("@node-red/runtime/lib/nodes/index");
|
|
|
|
var credentials = NR_TEST_UTILS.require("@node-red/runtime/lib/nodes/credentials");
|
|
|
|
var log = NR_TEST_UTILS.require("@node-red/util").log;
|
2015-03-13 22:26:50 +01:00
|
|
|
|
2014-05-03 23:26:35 +02:00
|
|
|
|
2016-09-21 22:58:50 +02:00
|
|
|
describe('red/runtime/nodes/credentials', function() {
|
2015-11-04 12:13:02 +01:00
|
|
|
|
2016-09-23 11:38:30 +02:00
|
|
|
var encryptionDisabledSettings = {
|
|
|
|
get: function(key) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-01 23:05:49 +02:00
|
|
|
afterEach(function() {
|
|
|
|
index.clearRegistry();
|
|
|
|
});
|
2015-11-04 12:13:02 +01:00
|
|
|
|
2021-04-28 22:49:32 +02:00
|
|
|
it('loads provided credentials',function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.init({
|
|
|
|
log: log,
|
|
|
|
settings: encryptionDisabledSettings
|
|
|
|
});
|
2015-11-04 12:13:02 +01:00
|
|
|
|
2021-04-28 22:49:32 +02:00
|
|
|
return credentials.load({"a":{"b":1,"c":2}}).then(function() {
|
2014-05-03 23:26:35 +02:00
|
|
|
credentials.get("a").should.have.property('b',1);
|
|
|
|
credentials.get("a").should.have.property('c',2);
|
|
|
|
});
|
|
|
|
});
|
2021-04-28 22:49:32 +02:00
|
|
|
it('adds a new credential',function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.init({
|
|
|
|
log: log,
|
|
|
|
settings: encryptionDisabledSettings
|
|
|
|
});
|
2021-04-28 22:49:32 +02:00
|
|
|
return credentials.load({"a":{"b":1,"c":2}}).then(function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.dirty().should.be.false();
|
2016-09-21 22:58:50 +02:00
|
|
|
should.not.exist(credentials.get("b"));
|
2021-04-28 22:49:32 +02:00
|
|
|
return credentials.add("b",{"foo":"bar"}).then(function() {
|
2016-09-21 22:58:50 +02:00
|
|
|
credentials.get("b").should.have.property("foo","bar");
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.dirty().should.be.true();
|
2016-09-21 22:58:50 +02:00
|
|
|
});
|
2014-05-03 23:26:35 +02:00
|
|
|
});
|
|
|
|
});
|
2021-04-28 22:49:32 +02:00
|
|
|
it('deletes an existing credential',function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.init({
|
|
|
|
log: log,
|
|
|
|
settings: encryptionDisabledSettings
|
|
|
|
});
|
2021-04-28 22:49:32 +02:00
|
|
|
return credentials.load({"a":{"b":1,"c":2}}).then(function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.dirty().should.be.false();
|
2016-09-21 22:58:50 +02:00
|
|
|
credentials.delete("a");
|
2014-05-03 23:26:35 +02:00
|
|
|
should.not.exist(credentials.get("a"));
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.dirty().should.be.true();
|
2014-05-03 23:26:35 +02:00
|
|
|
});
|
|
|
|
});
|
2015-11-04 12:13:02 +01:00
|
|
|
|
2021-04-28 22:49:32 +02:00
|
|
|
it('exports the credentials, clearing dirty flag', function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.init({
|
|
|
|
log: log,
|
|
|
|
settings: encryptionDisabledSettings
|
|
|
|
});
|
2016-09-21 22:58:50 +02:00
|
|
|
var creds = {"a":{"b":1,"c":2}};
|
2021-04-28 22:49:32 +02:00
|
|
|
return credentials.load(creds).then(function() {
|
|
|
|
return credentials.add("b",{"foo":"bar"})
|
|
|
|
}).then(function() {
|
|
|
|
credentials.dirty().should.be.true();
|
|
|
|
return credentials.export().then(function(exported) {
|
|
|
|
exported.should.eql(creds);
|
|
|
|
credentials.dirty().should.be.false();
|
|
|
|
})
|
2014-07-16 10:25:08 +02:00
|
|
|
});
|
2016-09-21 22:58:50 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
describe("#clean",function() {
|
2021-04-28 22:49:32 +02:00
|
|
|
it("removes credentials of unknown nodes",function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.init({
|
|
|
|
log: log,
|
2021-04-28 22:49:32 +02:00
|
|
|
settings: encryptionDisabledSettings,
|
|
|
|
nodes: { getType: () => function(){} }
|
2016-09-23 11:38:30 +02:00
|
|
|
});
|
2016-09-21 22:58:50 +02:00
|
|
|
var creds = {"a":{"b":1,"c":2},"b":{"d":3}};
|
2021-04-28 22:49:32 +02:00
|
|
|
return credentials.load(creds).then(function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.dirty().should.be.false();
|
2016-09-21 22:58:50 +02:00
|
|
|
should.exist(credentials.get("a"));
|
|
|
|
should.exist(credentials.get("b"));
|
2021-04-28 22:49:32 +02:00
|
|
|
return credentials.clean([{id:"b"}]).then(function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.dirty().should.be.true();
|
2016-09-21 22:58:50 +02:00
|
|
|
should.not.exist(credentials.get("a"));
|
|
|
|
should.exist(credentials.get("b"));
|
2014-07-28 15:29:35 +02:00
|
|
|
});
|
2016-09-21 22:58:50 +02:00
|
|
|
});
|
2014-07-28 15:29:35 +02:00
|
|
|
});
|
2021-04-28 22:49:32 +02:00
|
|
|
it("extracts credentials of known nodes",function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.init({
|
|
|
|
log: log,
|
2021-04-28 22:49:32 +02:00
|
|
|
settings: encryptionDisabledSettings,
|
|
|
|
nodes: { getType: () => function(){} }
|
2016-09-23 11:38:30 +02:00
|
|
|
});
|
2016-09-21 22:58:50 +02:00
|
|
|
credentials.register("testNode",{"b":"text","c":"password"})
|
|
|
|
var creds = {"a":{"b":1,"c":2}};
|
|
|
|
var newConfig = [{id:"a",type:"testNode",credentials:{"b":"newBValue","c":"newCValue"}}];
|
2021-04-28 22:49:32 +02:00
|
|
|
return credentials.load(creds).then(function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.dirty().should.be.false();
|
2021-04-28 22:49:32 +02:00
|
|
|
return credentials.clean(newConfig).then(function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.dirty().should.be.true();
|
2016-09-21 22:58:50 +02:00
|
|
|
credentials.get("a").should.have.property('b',"newBValue");
|
|
|
|
credentials.get("a").should.have.property('c',"newCValue");
|
|
|
|
should.not.exist(newConfig[0].credentials);
|
|
|
|
});
|
|
|
|
});
|
2014-07-28 15:29:35 +02:00
|
|
|
});
|
2015-11-04 12:13:02 +01:00
|
|
|
|
|
|
|
|
2016-09-21 22:58:50 +02:00
|
|
|
});
|
2014-07-30 11:56:42 +02:00
|
|
|
|
2021-04-28 22:49:32 +02:00
|
|
|
it('warns if a node has no credential definition', function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.init({
|
|
|
|
log: log,
|
2021-04-28 22:49:32 +02:00
|
|
|
settings: encryptionDisabledSettings,
|
|
|
|
nodes: { getType: () => function(){} }
|
2016-09-23 11:38:30 +02:00
|
|
|
});
|
2021-04-28 22:49:32 +02:00
|
|
|
return credentials.load({}).then(function() {
|
2016-09-21 22:58:50 +02:00
|
|
|
var node = {id:"node",type:"test",credentials:{
|
|
|
|
user1:"newUser",
|
|
|
|
password1:"newPassword"
|
|
|
|
}};
|
|
|
|
sinon.spy(log,"warn");
|
|
|
|
credentials.extract(node);
|
2016-09-23 11:38:30 +02:00
|
|
|
log.warn.called.should.be.true();
|
2016-09-21 22:58:50 +02:00
|
|
|
should.not.exist(node.credentials);
|
2015-02-03 23:02:26 +01:00
|
|
|
log.warn.restore();
|
2014-07-30 11:56:42 +02:00
|
|
|
});
|
2016-09-21 22:58:50 +02:00
|
|
|
})
|
2015-11-04 12:13:02 +01:00
|
|
|
|
2016-09-21 22:58:50 +02:00
|
|
|
it('extract credential updates in the provided node', function(done) {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.init({
|
|
|
|
log: log,
|
2021-04-28 22:49:32 +02:00
|
|
|
settings: encryptionDisabledSettings,
|
|
|
|
nodes: { getType: () => function(){} }
|
2016-09-23 11:38:30 +02:00
|
|
|
});
|
2016-09-21 22:58:50 +02:00
|
|
|
var defintion = {
|
2015-03-13 22:26:50 +01:00
|
|
|
user1:{type:"text"},
|
|
|
|
password1:{type:"password"},
|
|
|
|
user2:{type:"text"},
|
|
|
|
password2:{type:"password"},
|
|
|
|
user3:{type:"text"},
|
|
|
|
password3:{type:"password"}
|
2015-11-04 12:13:02 +01:00
|
|
|
|
2016-09-21 22:58:50 +02:00
|
|
|
};
|
|
|
|
credentials.register("test",defintion);
|
|
|
|
var def = credentials.getDefinition("test");
|
|
|
|
defintion.should.eql(def);
|
|
|
|
|
|
|
|
credentials.load({"node":{user1:"abc",password1:"123",user2:"def",password2:"456",user3:"ghi",password3:"789"}}).then(function() {
|
|
|
|
var node = {id:"node",type:"test",credentials:{
|
|
|
|
// user1 unchanged
|
|
|
|
password1:"__PWRD__",
|
|
|
|
user2: "",
|
|
|
|
password2:" ",
|
|
|
|
user3:"newUser",
|
|
|
|
password3:"newPassword"
|
|
|
|
}};
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.dirty().should.be.false();
|
2016-09-21 22:58:50 +02:00
|
|
|
credentials.extract(node);
|
|
|
|
|
|
|
|
node.should.not.have.a.property("credentials");
|
|
|
|
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.dirty().should.be.true();
|
2016-09-21 22:58:50 +02:00
|
|
|
var newCreds = credentials.get("node");
|
|
|
|
newCreds.should.have.a.property("user1","abc");
|
|
|
|
newCreds.should.have.a.property("password1","123");
|
|
|
|
newCreds.should.not.have.a.property("user2");
|
|
|
|
newCreds.should.not.have.a.property("password2");
|
|
|
|
newCreds.should.have.a.property("user3","newUser");
|
|
|
|
newCreds.should.have.a.property("password3","newPassword");
|
2015-11-04 12:13:02 +01:00
|
|
|
|
2016-09-21 22:58:50 +02:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('extract ignores node without credentials', function(done) {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.init({
|
|
|
|
log: log,
|
2021-04-28 22:49:32 +02:00
|
|
|
settings: encryptionDisabledSettings,
|
|
|
|
nodes: { getType: () => function(){} }
|
2016-09-23 11:38:30 +02:00
|
|
|
});
|
2016-09-21 22:58:50 +02:00
|
|
|
credentials.load({"node":{user1:"abc",password1:"123"}}).then(function() {
|
|
|
|
var node = {id:"node",type:"test"};
|
|
|
|
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.dirty().should.be.false();
|
2016-09-21 22:58:50 +02:00
|
|
|
credentials.extract(node);
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.dirty().should.be.false();
|
2016-09-21 22:58:50 +02:00
|
|
|
done();
|
|
|
|
});
|
2015-03-13 22:26:50 +01:00
|
|
|
});
|
2016-09-23 11:38:30 +02:00
|
|
|
|
|
|
|
describe("encryption",function() {
|
|
|
|
var settings = {};
|
|
|
|
var runtime = {
|
|
|
|
log: log,
|
|
|
|
settings: {
|
|
|
|
get: function(key) {
|
|
|
|
return settings[key];
|
|
|
|
},
|
|
|
|
set: function(key,value) {
|
|
|
|
settings[key] = value;
|
2020-11-30 15:38:48 +01:00
|
|
|
return Promise.resolve();
|
2016-09-23 11:38:30 +02:00
|
|
|
},
|
|
|
|
delete: function(key) {
|
|
|
|
delete settings[key];
|
2020-11-30 15:38:48 +01:00
|
|
|
return Promise.resolve();
|
2016-09-23 11:38:30 +02:00
|
|
|
}
|
2021-04-28 22:49:32 +02:00
|
|
|
},
|
|
|
|
nodes: { getType: () => function(){} }
|
2016-09-23 11:38:30 +02:00
|
|
|
}
|
|
|
|
it('migrates to encrypted and generates default key', function(done) {
|
|
|
|
settings = {};
|
|
|
|
credentials.init(runtime);
|
|
|
|
credentials.load({"node":{user1:"abc",password1:"123"}}).then(function() {
|
|
|
|
settings.should.have.a.property("_credentialSecret");
|
|
|
|
settings._credentialSecret.should.have.a.length(64);
|
|
|
|
credentials.dirty().should.be.true();
|
|
|
|
credentials.export().then(function(result) {
|
|
|
|
result.should.have.a.property("$");
|
|
|
|
// reset everything - but with _credentialSecret still set
|
|
|
|
credentials.init(runtime);
|
|
|
|
// load the freshly encrypted version
|
|
|
|
credentials.load(result).then(function() {
|
|
|
|
should.exist(credentials.get("node"));
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('uses default key', function(done) {
|
|
|
|
settings = {
|
|
|
|
_credentialSecret: "e3a36f47f005bf2aaa51ce3fc6fcaafd79da8d03f2b1a9281f8fb0a285e6255a"
|
|
|
|
};
|
|
|
|
// {"node":{user1:"abc",password1:"123"}}
|
|
|
|
var cryptedFlows = {"$":"5b89d8209b5158a3c313675561b1a5b5phN1gDBe81Zv98KqS/hVDmc9EKvaKqRIvcyXYvBlFNzzzJtvN7qfw06i"};
|
|
|
|
credentials.init(runtime);
|
|
|
|
credentials.load(cryptedFlows).then(function() {
|
|
|
|
should.exist(credentials.get("node"));
|
|
|
|
credentials.dirty().should.be.false();
|
|
|
|
credentials.add("node",{user1:"def",password1:"456"});
|
|
|
|
credentials.export().then(function(result) {
|
|
|
|
result.should.have.a.property("$");
|
|
|
|
// reset everything - but with _credentialSecret still set
|
|
|
|
credentials.init(runtime);
|
|
|
|
// load the freshly encrypted version
|
|
|
|
credentials.load(result).then(function() {
|
|
|
|
should.exist(credentials.get("node"));
|
|
|
|
credentials.get("node").should.have.a.property("user1","def");
|
|
|
|
credentials.get("node").should.have.a.property("password1","456");
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('uses user key', function(done) {
|
|
|
|
settings = {
|
|
|
|
credentialSecret: "e3a36f47f005bf2aaa51ce3fc6fcaafd79da8d03f2b1a9281f8fb0a285e6255a"
|
|
|
|
};
|
|
|
|
// {"node":{user1:"abc",password1:"123"}}
|
|
|
|
var cryptedFlows = {"$":"5b89d8209b5158a3c313675561b1a5b5phN1gDBe81Zv98KqS/hVDmc9EKvaKqRIvcyXYvBlFNzzzJtvN7qfw06i"};
|
|
|
|
credentials.init(runtime);
|
|
|
|
credentials.load(cryptedFlows).then(function() {
|
|
|
|
credentials.dirty().should.be.false();
|
|
|
|
should.exist(credentials.get("node"));
|
|
|
|
credentials.add("node",{user1:"def",password1:"456"});
|
|
|
|
credentials.export().then(function(result) {
|
|
|
|
result.should.have.a.property("$");
|
|
|
|
|
|
|
|
// reset everything - but with _credentialSecret still set
|
|
|
|
credentials.init(runtime);
|
|
|
|
// load the freshly encrypted version
|
|
|
|
credentials.load(result).then(function() {
|
|
|
|
should.exist(credentials.get("node"));
|
|
|
|
credentials.get("node").should.have.a.property("user1","def");
|
|
|
|
credentials.get("node").should.have.a.property("password1","456");
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('uses user key - when settings are otherwise unavailable', function(done) {
|
|
|
|
var runtime = {
|
|
|
|
log: log,
|
|
|
|
settings: {
|
|
|
|
get: function(key) {
|
|
|
|
if (key === 'credentialSecret') {
|
|
|
|
return "e3a36f47f005bf2aaa51ce3fc6fcaafd79da8d03f2b1a9281f8fb0a285e6255a";
|
|
|
|
}
|
|
|
|
throw new Error();
|
|
|
|
},
|
|
|
|
set: function(key,value) {
|
|
|
|
throw new Error();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// {"node":{user1:"abc",password1:"123"}}
|
|
|
|
var cryptedFlows = {"$":"5b89d8209b5158a3c313675561b1a5b5phN1gDBe81Zv98KqS/hVDmc9EKvaKqRIvcyXYvBlFNzzzJtvN7qfw06i"};
|
|
|
|
credentials.init(runtime);
|
|
|
|
credentials.load(cryptedFlows).then(function() {
|
|
|
|
should.exist(credentials.get("node"));
|
|
|
|
credentials.add("node",{user1:"def",password1:"456"});
|
|
|
|
credentials.export().then(function(result) {
|
|
|
|
result.should.have.a.property("$");
|
|
|
|
|
|
|
|
// reset everything - but with _credentialSecret still set
|
|
|
|
credentials.init(runtime);
|
|
|
|
// load the freshly encrypted version
|
|
|
|
credentials.load(result).then(function() {
|
|
|
|
should.exist(credentials.get("node"));
|
|
|
|
credentials.get("node").should.have.a.property("user1","def");
|
|
|
|
credentials.get("node").should.have.a.property("password1","456");
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2021-04-28 22:49:32 +02:00
|
|
|
it('migrates from default key to user key', function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
settings = {
|
|
|
|
_credentialSecret: "e3a36f47f005bf2aaa51ce3fc6fcaafd79da8d03f2b1a9281f8fb0a285e6255a",
|
|
|
|
credentialSecret: "aaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbcccccccccccccddddddddddddeeeee"
|
|
|
|
};
|
|
|
|
// {"node":{user1:"abc",password1:"123"}}
|
|
|
|
var cryptedFlows = {"$":"5b89d8209b5158a3c313675561b1a5b5phN1gDBe81Zv98KqS/hVDmc9EKvaKqRIvcyXYvBlFNzzzJtvN7qfw06i"};
|
|
|
|
credentials.init(runtime);
|
2021-04-28 22:49:32 +02:00
|
|
|
return credentials.load(cryptedFlows).then(function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.dirty().should.be.true();
|
|
|
|
should.exist(credentials.get("node"));
|
2021-04-28 22:49:32 +02:00
|
|
|
return credentials.export().then(function(result) {
|
2016-09-23 11:38:30 +02:00
|
|
|
result.should.have.a.property("$");
|
|
|
|
settings.should.not.have.a.property("_credentialSecret");
|
|
|
|
|
|
|
|
// reset everything - but with _credentialSecret still set
|
|
|
|
credentials.init(runtime);
|
|
|
|
// load the freshly encrypted version
|
2021-04-28 22:49:32 +02:00
|
|
|
return credentials.load(result).then(function() {
|
2016-09-23 11:38:30 +02:00
|
|
|
should.exist(credentials.get("node"));
|
|
|
|
credentials.get("node").should.have.a.property("user1","abc");
|
|
|
|
credentials.get("node").should.have.a.property("password1","123");
|
|
|
|
})
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('migrates from default key to user key - unencrypted original', function(done) {
|
|
|
|
settings = {
|
|
|
|
_credentialSecret: "e3a36f47f005bf2aaa51ce3fc6fcaafd79da8d03f2b1a9281f8fb0a285e6255a",
|
|
|
|
credentialSecret: "aaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbcccccccccccccddddddddddddeeeee"
|
|
|
|
};
|
|
|
|
// {"node":{user1:"abc",password1:"123"}}
|
|
|
|
var unencryptedFlows = {"node":{user1:"abc",password1:"123"}};
|
|
|
|
credentials.init(runtime);
|
|
|
|
credentials.load(unencryptedFlows).then(function() {
|
|
|
|
credentials.dirty().should.be.true();
|
|
|
|
should.exist(credentials.get("node"));
|
|
|
|
credentials.export().then(function(result) {
|
|
|
|
result.should.have.a.property("$");
|
|
|
|
settings.should.not.have.a.property("_credentialSecret");
|
|
|
|
// reset everything - but with _credentialSecret still set
|
|
|
|
credentials.init(runtime);
|
|
|
|
// load the freshly encrypted version
|
|
|
|
credentials.load(result).then(function() {
|
|
|
|
should.exist(credentials.get("node"));
|
|
|
|
credentials.get("node").should.have.a.property("user1","abc");
|
|
|
|
credentials.get("node").should.have.a.property("password1","123");
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('migrates from default key to unencrypted', function(done) {
|
|
|
|
settings = {
|
|
|
|
_credentialSecret: "e3a36f47f005bf2aaa51ce3fc6fcaafd79da8d03f2b1a9281f8fb0a285e6255a",
|
|
|
|
credentialSecret: false
|
|
|
|
};
|
|
|
|
// {"node":{user1:"abc",password1:"123"}}
|
|
|
|
var cryptedFlows = {"$":"5b89d8209b5158a3c313675561b1a5b5phN1gDBe81Zv98KqS/hVDmc9EKvaKqRIvcyXYvBlFNzzzJtvN7qfw06i"};
|
|
|
|
credentials.init(runtime);
|
|
|
|
credentials.load(cryptedFlows).then(function() {
|
|
|
|
credentials.dirty().should.be.true();
|
|
|
|
should.exist(credentials.get("node"));
|
|
|
|
credentials.export().then(function(result) {
|
|
|
|
result.should.not.have.a.property("$");
|
|
|
|
settings.should.not.have.a.property("_credentialSecret");
|
|
|
|
result.should.eql({"node":{user1:"abc",password1:"123"}});
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('handles bad default key - resets credentials', function(done) {
|
|
|
|
settings = {
|
|
|
|
_credentialSecret: "badbadbadbadbadbadbadbadbadbadbadbadbadbadbadbadbadbadbadbadbadb"
|
|
|
|
};
|
|
|
|
// {"node":{user1:"abc",password1:"123"}}
|
|
|
|
var cryptedFlows = {"$":"5b89d8209b5158a3c313675561b1a5b5phN1gDBe81Zv98KqS/hVDmc9EKvaKqRIvcyXYvBlFNzzzJtvN7qfw06i"};
|
|
|
|
credentials.init(runtime);
|
|
|
|
credentials.load(cryptedFlows).then(function() {
|
2017-09-20 11:30:07 +02:00
|
|
|
// credentials.dirty().should.be.true();
|
|
|
|
// should.not.exist(credentials.get("node"));
|
|
|
|
done();
|
2018-04-24 16:01:49 +02:00
|
|
|
}).catch(function(err) {
|
2017-09-20 11:30:07 +02:00
|
|
|
err.should.have.property('code','credentials_load_failed');
|
2016-09-23 11:38:30 +02:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('handles bad user key - resets credentials', function(done) {
|
|
|
|
settings = {
|
|
|
|
credentialSecret: "badbadbadbadbadbadbadbadbadbadbadbadbadbadbadbadbadbadbadbadbadb"
|
|
|
|
};
|
|
|
|
// {"node":{user1:"abc",password1:"123"}}
|
|
|
|
var cryptedFlows = {"$":"5b89d8209b5158a3c313675561b1a5b5phN1gDBe81Zv98KqS/hVDmc9EKvaKqRIvcyXYvBlFNzzzJtvN7qfw06i"};
|
|
|
|
credentials.init(runtime);
|
|
|
|
credentials.load(cryptedFlows).then(function() {
|
2017-09-20 11:30:07 +02:00
|
|
|
// credentials.dirty().should.be.true();
|
|
|
|
// should.not.exist(credentials.get("node"));
|
|
|
|
done();
|
2018-04-24 16:01:49 +02:00
|
|
|
}).catch(function(err) {
|
2017-09-20 11:30:07 +02:00
|
|
|
err.should.have.property('code','credentials_load_failed');
|
2016-09-23 11:38:30 +02:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2022-03-21 10:29:41 +01:00
|
|
|
|
2022-03-19 18:57:30 +01:00
|
|
|
it('handles bad credentials object - resets credentials', function(done) {
|
|
|
|
settings = {
|
|
|
|
credentialSecret: "e3a36f47f005bf2aaa51ce3fc6fcaafd79da8d03f2b1a9281f8fb0a285e6255a"
|
|
|
|
};
|
|
|
|
// {"node":{user1:"abc",password1:"123"}}
|
2022-03-21 10:29:41 +01:00
|
|
|
var cryptedFlows = {"BADKEY":"5b89d8209b5158a3c313675561b1a5b5phN1gDBe81Zv98KqS/hVDmc9EKvaKqRIvcyXYvBlFNzzzJtvN7qfw06i"};
|
2022-03-19 18:57:30 +01:00
|
|
|
credentials.init(runtime);
|
|
|
|
credentials.load(cryptedFlows).then(function() {
|
|
|
|
done();
|
|
|
|
}).catch(function(err) {
|
|
|
|
err.should.have.property('code','credentials_load_failed');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2016-09-23 11:38:30 +02:00
|
|
|
|
|
|
|
it('handles unavailable settings - leaves creds unencrypted', function(done) {
|
|
|
|
var runtime = {
|
|
|
|
log: log,
|
|
|
|
settings: {
|
|
|
|
get: function(key) {
|
|
|
|
throw new Error();
|
|
|
|
},
|
|
|
|
set: function(key,value) {
|
|
|
|
throw new Error();
|
|
|
|
}
|
2021-04-28 22:49:32 +02:00
|
|
|
},
|
|
|
|
nodes: { getType: () => function(){} }
|
2016-09-23 11:38:30 +02:00
|
|
|
}
|
|
|
|
// {"node":{user1:"abc",password1:"123"}}
|
|
|
|
credentials.init(runtime);
|
|
|
|
credentials.load({"node":{user1:"abc",password1:"123"}}).then(function() {
|
|
|
|
credentials.dirty().should.be.false();
|
|
|
|
should.exist(credentials.get("node"));
|
|
|
|
credentials.export().then(function(result) {
|
|
|
|
result.should.not.have.a.property("$");
|
|
|
|
result.should.have.a.property("node");
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
})
|
2015-11-04 12:13:02 +01:00
|
|
|
})
|