2014-08-28 15:25:41 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2014-08-28 15:25:41 +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");
|
|
|
|
|
2018-08-20 17:17:24 +02:00
|
|
|
var NR_TEST_UTILS = require("nr-test-utils");
|
|
|
|
|
|
|
|
var util = NR_TEST_UTILS.require("@node-red/util").util;
|
|
|
|
|
|
|
|
describe("@node-red/util/util", function() {
|
2015-06-02 16:54:37 +02:00
|
|
|
describe('generateId', function() {
|
|
|
|
it('generates an id', function() {
|
|
|
|
var id = util.generateId();
|
|
|
|
var id2 = util.generateId();
|
|
|
|
id.should.not.eql(id2);
|
|
|
|
});
|
|
|
|
});
|
2015-03-06 15:14:47 +01:00
|
|
|
describe('compareObjects', function() {
|
2016-04-01 11:12:15 +02:00
|
|
|
it('numbers', function() {
|
|
|
|
util.compareObjects(0,0).should.equal(true);
|
|
|
|
util.compareObjects(0,1).should.equal(false);
|
|
|
|
util.compareObjects(1000,1001).should.equal(false);
|
|
|
|
util.compareObjects(1000,1000).should.equal(true);
|
|
|
|
util.compareObjects(0,"0").should.equal(false);
|
|
|
|
util.compareObjects(1,"1").should.equal(false);
|
|
|
|
util.compareObjects(0,null).should.equal(false);
|
|
|
|
util.compareObjects(0,undefined).should.equal(false);
|
|
|
|
});
|
|
|
|
it('strings', function() {
|
|
|
|
util.compareObjects("","").should.equal(true);
|
|
|
|
util.compareObjects("a","a").should.equal(true);
|
|
|
|
util.compareObjects("",null).should.equal(false);
|
|
|
|
util.compareObjects("",undefined).should.equal(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('arrays', function() {
|
|
|
|
util.compareObjects(["a"],["a"]).should.equal(true);
|
|
|
|
util.compareObjects(["a"],["a","b"]).should.equal(false);
|
|
|
|
util.compareObjects(["a","b"],["b"]).should.equal(false);
|
2015-03-06 15:14:47 +01:00
|
|
|
util.compareObjects(["a"],"a").should.equal(false);
|
2016-04-01 11:12:15 +02:00
|
|
|
util.compareObjects([[1],["a"]],[[1],["a"]]).should.equal(true);
|
|
|
|
util.compareObjects([[1],["a"]],[["a"],[1]]).should.equal(false);
|
2015-03-06 15:14:47 +01:00
|
|
|
});
|
2016-04-01 11:12:15 +02:00
|
|
|
it('objects', function() {
|
2015-03-06 15:14:47 +01:00
|
|
|
util.compareObjects({"a":1},{"a":1,"b":1}).should.equal(false);
|
2016-04-01 11:12:15 +02:00
|
|
|
util.compareObjects({"a":1,"b":1},{"a":1,"b":1}).should.equal(true);
|
|
|
|
util.compareObjects({"b":1,"a":1},{"a":1,"b":1}).should.equal(true);
|
2015-03-06 15:14:47 +01:00
|
|
|
});
|
2016-04-01 11:12:15 +02:00
|
|
|
it('Buffer', function() {
|
2018-10-24 14:45:34 +02:00
|
|
|
util.compareObjects(Buffer.from("hello"),Buffer.from("hello")).should.equal(true);
|
|
|
|
util.compareObjects(Buffer.from("hello"),Buffer.from("hello ")).should.equal(false);
|
|
|
|
util.compareObjects(Buffer.from("hello"),"hello").should.equal(false);
|
2016-04-01 11:12:15 +02:00
|
|
|
});
|
|
|
|
|
2015-03-06 15:14:47 +01:00
|
|
|
});
|
|
|
|
|
2014-08-28 15:25:41 +02:00
|
|
|
describe('ensureString', function() {
|
|
|
|
it('strings are preserved', function() {
|
2014-09-03 14:18:26 +02:00
|
|
|
util.ensureString('string').should.equal('string');
|
2014-08-28 15:25:41 +02:00
|
|
|
});
|
|
|
|
it('Buffer is converted', function() {
|
2018-10-24 14:45:34 +02:00
|
|
|
var s = util.ensureString(Buffer.from('foo'));
|
2014-08-28 15:25:41 +02:00
|
|
|
s.should.equal('foo');
|
|
|
|
(typeof s).should.equal('string');
|
|
|
|
});
|
|
|
|
it('Object is converted to JSON', function() {
|
2014-09-03 14:18:26 +02:00
|
|
|
var s = util.ensureString({foo: "bar"});
|
2014-08-28 15:25:41 +02:00
|
|
|
(typeof s).should.equal('string');
|
|
|
|
should.deepEqual(JSON.parse(s), {foo:"bar"});
|
|
|
|
});
|
|
|
|
it('stringifies other things', function() {
|
2014-09-03 14:18:26 +02:00
|
|
|
var s = util.ensureString(123);
|
2014-08-28 15:25:41 +02:00
|
|
|
(typeof s).should.equal('string');
|
|
|
|
s.should.equal('123');
|
|
|
|
});
|
|
|
|
});
|
2014-09-10 13:46:56 +02:00
|
|
|
|
|
|
|
describe('ensureBuffer', function() {
|
|
|
|
it('Buffers are preserved', function() {
|
2018-10-24 14:45:34 +02:00
|
|
|
var b = Buffer.from('');
|
2014-09-10 13:46:56 +02:00
|
|
|
util.ensureBuffer(b).should.equal(b);
|
|
|
|
});
|
|
|
|
it('string is converted', function() {
|
|
|
|
var b = util.ensureBuffer('foo');
|
2018-10-24 14:45:34 +02:00
|
|
|
var expected = Buffer.from('foo');
|
2014-09-10 13:46:56 +02:00
|
|
|
for (var i = 0; i < expected.length; i++) {
|
|
|
|
b[i].should.equal(expected[i]);
|
|
|
|
}
|
|
|
|
Buffer.isBuffer(b).should.equal(true);
|
|
|
|
});
|
|
|
|
it('Object is converted to JSON', function() {
|
|
|
|
var obj = {foo: "bar"}
|
|
|
|
var b = util.ensureBuffer(obj);
|
|
|
|
Buffer.isBuffer(b).should.equal(true);
|
|
|
|
should.deepEqual(JSON.parse(b), obj);
|
|
|
|
});
|
|
|
|
it('stringifies other things', function() {
|
|
|
|
var b = util.ensureBuffer(123);
|
|
|
|
Buffer.isBuffer(b).should.equal(true);
|
2018-10-24 14:45:34 +02:00
|
|
|
var expected = Buffer.from('123');
|
2014-09-10 13:46:56 +02:00
|
|
|
for (var i = 0; i < expected.length; i++) {
|
|
|
|
b[i].should.equal(expected[i]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2015-03-06 15:14:47 +01:00
|
|
|
|
2014-11-06 12:39:30 +01:00
|
|
|
describe('cloneMessage', function() {
|
|
|
|
it('clones a simple message', function() {
|
|
|
|
var msg = {string:"hi",array:[1,2,3],object:{a:1,subobject:{b:2}}};
|
2015-03-06 15:14:47 +01:00
|
|
|
|
2014-11-06 12:39:30 +01:00
|
|
|
var cloned = util.cloneMessage(msg);
|
2015-03-06 15:14:47 +01:00
|
|
|
|
2014-11-06 12:39:30 +01:00
|
|
|
cloned.should.eql(msg);
|
2015-03-06 15:14:47 +01:00
|
|
|
|
2014-11-06 12:39:30 +01:00
|
|
|
cloned.should.not.equal(msg);
|
|
|
|
cloned.array.should.not.equal(msg.string);
|
|
|
|
cloned.object.should.not.equal(msg.object);
|
|
|
|
cloned.object.subobject.should.not.equal(msg.object.subobject);
|
2015-03-06 15:14:47 +01:00
|
|
|
|
2014-11-06 12:39:30 +01:00
|
|
|
cloned.should.not.have.property("req");
|
|
|
|
cloned.should.not.have.property("res");
|
|
|
|
});
|
|
|
|
it('does not clone http req/res properties', function() {
|
|
|
|
var msg = {req:{a:1},res:{b:2}};
|
2015-03-06 15:14:47 +01:00
|
|
|
|
2014-11-06 12:39:30 +01:00
|
|
|
var cloned = util.cloneMessage(msg);
|
2015-03-06 15:14:47 +01:00
|
|
|
|
2014-11-06 12:39:30 +01:00
|
|
|
cloned.should.eql(msg);
|
|
|
|
cloned.should.not.equal(msg);
|
2015-03-06 15:14:47 +01:00
|
|
|
|
2014-11-06 12:39:30 +01:00
|
|
|
cloned.req.should.equal(msg.req);
|
|
|
|
cloned.res.should.equal(msg.res);
|
|
|
|
});
|
2020-02-06 11:04:55 +01:00
|
|
|
it('handles undefined values without throwing an error', function() {
|
|
|
|
var result = util.cloneMessage(undefined);
|
|
|
|
should.not.exist(result);
|
|
|
|
})
|
2015-12-29 23:19:32 +01:00
|
|
|
});
|
2018-07-25 10:27:27 +02:00
|
|
|
describe('getObjectProperty', function() {
|
|
|
|
it('gets a property beginning with "msg."', function() {
|
|
|
|
// getMessageProperty strips off `msg.` prefixes.
|
|
|
|
// getObjectProperty does not
|
|
|
|
var obj = { msg: { a: "foo"}, a: "bar"};
|
|
|
|
var v = util.getObjectProperty(obj,"msg.a");
|
|
|
|
v.should.eql("foo");
|
|
|
|
})
|
|
|
|
});
|
2015-12-29 23:19:32 +01:00
|
|
|
describe('getMessageProperty', function() {
|
|
|
|
it('retrieves a simple property', function() {
|
|
|
|
var v = util.getMessageProperty({a:"foo"},"msg.a");
|
|
|
|
v.should.eql("foo");
|
|
|
|
var v2 = util.getMessageProperty({a:"foo"},"a");
|
|
|
|
v2.should.eql("foo");
|
|
|
|
});
|
2021-01-27 21:32:52 +01:00
|
|
|
it('retrieves a nested property', function() {
|
|
|
|
var v = util.getMessageProperty({a:"foo",b:{foo:1,bar:2}},"msg.b[msg.a]");
|
|
|
|
v.should.eql(1);
|
|
|
|
var v2 = util.getMessageProperty({a:"bar",b:{foo:1,bar:2}},"b[msg.a]");
|
|
|
|
v2.should.eql(2);
|
|
|
|
});
|
|
|
|
|
2015-12-29 23:19:32 +01:00
|
|
|
it('should return undefined if property does not exist', function() {
|
|
|
|
var v = util.getMessageProperty({a:"foo"},"msg.b");
|
|
|
|
should.not.exist(v);
|
|
|
|
});
|
|
|
|
it('should throw error if property parent does not exist', function() {
|
|
|
|
/*jshint immed: false */
|
|
|
|
(function() {
|
|
|
|
util.getMessageProperty({a:"foo"},"msg.a.b.c");
|
|
|
|
}).should.throw();
|
2016-06-08 00:01:23 +02:00
|
|
|
});
|
|
|
|
it('retrieves a property with array syntax', function() {
|
|
|
|
var v = util.getMessageProperty({a:["foo","bar"]},"msg.a[0]");
|
|
|
|
v.should.eql("foo");
|
|
|
|
var v2 = util.getMessageProperty({a:[null,{b:"foo"}]},"a[1].b");
|
|
|
|
v2.should.eql("foo");
|
|
|
|
var v3 = util.getMessageProperty({a:[[["foo"]]]},"a[0][0][0]");
|
|
|
|
v3.should.eql("foo");
|
|
|
|
});
|
|
|
|
|
2014-11-06 12:39:30 +01:00
|
|
|
});
|
2018-07-25 10:27:27 +02:00
|
|
|
describe('setObjectProperty', function() {
|
|
|
|
it('set a property beginning with "msg."', function() {
|
|
|
|
// setMessageProperty strips off `msg.` prefixes.
|
|
|
|
// setObjectProperty does not
|
|
|
|
var obj = {};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setObjectProperty(obj,"msg.a","bar");
|
|
|
|
result.should.be.true();
|
2018-07-25 10:27:27 +02:00
|
|
|
obj.should.have.property("msg");
|
|
|
|
obj.msg.should.have.property("a","bar");
|
|
|
|
})
|
|
|
|
});
|
2015-12-29 23:19:32 +01:00
|
|
|
describe('setMessageProperty', function() {
|
|
|
|
it('sets a property', function() {
|
|
|
|
var msg = {a:"foo"};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg,"msg.a","bar");
|
|
|
|
result.should.be.true();
|
2015-12-29 23:19:32 +01:00
|
|
|
msg.a.should.eql('bar');
|
|
|
|
});
|
|
|
|
it('sets a deep level property', function() {
|
|
|
|
var msg = {a:{b:{c:"foo"}}};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg,"msg.a.b.c","bar");
|
|
|
|
result.should.be.true();
|
2015-12-29 23:19:32 +01:00
|
|
|
msg.a.b.c.should.eql('bar');
|
|
|
|
});
|
|
|
|
it('creates missing parent properties by default', function() {
|
|
|
|
var msg = {a:{}};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg,"msg.a.b.c","bar");
|
|
|
|
result.should.be.true();
|
2015-12-29 23:19:32 +01:00
|
|
|
msg.a.b.c.should.eql('bar');
|
|
|
|
})
|
|
|
|
it('does not create missing parent properties', function() {
|
|
|
|
var msg = {a:{}};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg,"msg.a.b.c","bar",false);
|
|
|
|
result.should.be.false();
|
2015-12-29 23:19:32 +01:00
|
|
|
should.not.exist(msg.a.b);
|
|
|
|
})
|
2020-06-01 14:13:14 +02:00
|
|
|
it('does not create missing parent properties of array', function () {
|
2018-07-25 02:15:27 +02:00
|
|
|
var msg = {a:{}};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg, "msg.a.b[1].c", "bar", false);
|
|
|
|
result.should.be.false();
|
|
|
|
should.not.exist(msg.a.b);
|
|
|
|
})
|
|
|
|
|
|
|
|
it('does not create missing parent properties of string', function() {
|
|
|
|
var msg = {a:"foo"};
|
|
|
|
var result = util.setMessageProperty(msg, "msg.a.b.c", "bar", false);
|
|
|
|
result.should.be.false();
|
|
|
|
should.not.exist(msg.a.b);
|
|
|
|
})
|
|
|
|
it('does not set property of existing string property', function() {
|
|
|
|
var msg = {a:"foo"};
|
|
|
|
var result = util.setMessageProperty(msg, "msg.a.b", "bar", false);
|
|
|
|
result.should.be.false();
|
|
|
|
should.not.exist(msg.a.b);
|
|
|
|
})
|
|
|
|
|
|
|
|
it('does not set property of existing number property', function() {
|
|
|
|
var msg = {a:123};
|
|
|
|
var result = util.setMessageProperty(msg, "msg.a.b", "bar", false);
|
|
|
|
result.should.be.false();
|
|
|
|
should.not.exist(msg.a.b);
|
|
|
|
})
|
|
|
|
it('does not create missing parent properties of number', function() {
|
|
|
|
var msg = {a:123};
|
|
|
|
var result = util.setMessageProperty(msg, "msg.a.b.c", "bar", false);
|
|
|
|
result.should.be.false();
|
|
|
|
should.not.exist(msg.a.b);
|
|
|
|
})
|
|
|
|
|
|
|
|
it('does not set property of existing boolean property', function() {
|
|
|
|
var msg = {a:true};
|
|
|
|
var result = util.setMessageProperty(msg, "msg.a.b", "bar", false);
|
|
|
|
result.should.be.false();
|
2018-07-25 02:15:27 +02:00
|
|
|
should.not.exist(msg.a.b);
|
|
|
|
})
|
2020-06-01 14:13:14 +02:00
|
|
|
it('does not create missing parent properties of boolean', function() {
|
|
|
|
var msg = {a:true};
|
|
|
|
var result = util.setMessageProperty(msg, "msg.a.b.c", "bar", false);
|
|
|
|
result.should.be.false();
|
|
|
|
should.not.exist(msg.a.b);
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2015-12-29 23:19:32 +01:00
|
|
|
it('deletes property if value is undefined', function() {
|
|
|
|
var msg = {a:{b:{c:"foo"}}};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg,"msg.a.b.c",undefined);
|
|
|
|
result.should.be.true();
|
2015-12-29 23:19:32 +01:00
|
|
|
should.not.exist(msg.a.b.c);
|
|
|
|
})
|
|
|
|
it('does not create missing parent properties if value is undefined', function() {
|
|
|
|
var msg = {a:{}};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg,"msg.a.b.c",undefined);
|
|
|
|
result.should.be.false();
|
2015-12-29 23:19:32 +01:00
|
|
|
should.not.exist(msg.a.b);
|
2016-06-08 00:01:23 +02:00
|
|
|
});
|
|
|
|
it('sets a property with array syntax', function() {
|
|
|
|
var msg = {a:{b:["foo",{c:["",""]}]}};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg,"msg.a.b[1].c[1]","bar");
|
|
|
|
result.should.be.true();
|
2016-06-08 00:01:23 +02:00
|
|
|
msg.a.b[1].c[1].should.eql('bar');
|
|
|
|
});
|
|
|
|
it('creates missing array elements - final property', function() {
|
|
|
|
var msg = {a:[]};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg,"msg.a[2]","bar");
|
|
|
|
result.should.be.true();
|
2016-06-08 00:01:23 +02:00
|
|
|
msg.a.should.have.length(3);
|
|
|
|
msg.a[2].should.eql("bar");
|
|
|
|
});
|
|
|
|
it('creates missing array elements - mid property', function() {
|
|
|
|
var msg = {};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg,"msg.a[2].b","bar");
|
|
|
|
result.should.be.true();
|
2016-06-08 00:01:23 +02:00
|
|
|
msg.a.should.have.length(3);
|
|
|
|
msg.a[2].b.should.eql("bar");
|
|
|
|
});
|
|
|
|
it('creates missing array elements - multi-arrays', function() {
|
|
|
|
var msg = {};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg,"msg.a[2][2]","bar");
|
|
|
|
result.should.be.true();
|
2016-06-08 00:01:23 +02:00
|
|
|
msg.a.should.have.length(3);
|
|
|
|
msg.a.should.be.instanceOf(Array);
|
|
|
|
msg.a[2].should.have.length(3);
|
|
|
|
msg.a[2].should.be.instanceOf(Array);
|
|
|
|
msg.a[2][2].should.eql("bar");
|
|
|
|
});
|
2018-07-25 02:15:27 +02:00
|
|
|
it('does not create missing array elements - mid property', function () {
|
|
|
|
var msg = {a:[]};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg, "msg.a[1][1]", "bar", false);
|
|
|
|
result.should.be.false();
|
2018-07-25 02:15:27 +02:00
|
|
|
msg.a.should.empty();
|
|
|
|
});
|
2016-06-08 00:01:23 +02:00
|
|
|
it('does not create missing array elements - final property', function() {
|
|
|
|
var msg = {a:{}};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg,"msg.a.b[2]","bar",false);
|
|
|
|
result.should.be.false();
|
2016-06-08 00:01:23 +02:00
|
|
|
should.not.exist(msg.a.b);
|
|
|
|
// check it has not been misinterpreted
|
|
|
|
msg.a.should.not.have.property("b[2]");
|
|
|
|
});
|
|
|
|
it('deletes property inside array if value is undefined', function() {
|
|
|
|
var msg = {a:[1,2,3]};
|
2020-06-01 14:13:14 +02:00
|
|
|
var result = util.setMessageProperty(msg,"msg.a[1]",undefined);
|
|
|
|
result.should.be.true();
|
2016-06-08 00:01:23 +02:00
|
|
|
msg.a.should.have.length(2);
|
|
|
|
msg.a[0].should.eql(1);
|
|
|
|
msg.a[1].should.eql(3);
|
2015-12-29 23:19:32 +01:00
|
|
|
})
|
2021-01-27 21:32:52 +01:00
|
|
|
it('handles nested message property references', function() {
|
|
|
|
var obj = {a:"foo",b:{}};
|
|
|
|
var result = util.setObjectProperty(obj,"b[msg.a]","bar");
|
|
|
|
result.should.be.true();
|
|
|
|
obj.b.should.have.property("foo","bar");
|
|
|
|
});
|
|
|
|
it('handles nested message property references', function() {
|
|
|
|
var obj = {a:"foo",b:{"foo":[0,0,0]}};
|
|
|
|
var result = util.setObjectProperty(obj,"b[msg.a][2]","bar");
|
|
|
|
result.should.be.true();
|
|
|
|
obj.b.foo.should.eql([0,0,"bar"])
|
|
|
|
});
|
2015-12-31 00:09:35 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('evaluateNodeProperty', function() {
|
|
|
|
it('returns string',function() {
|
|
|
|
var result = util.evaluateNodeProperty('hello','str');
|
|
|
|
result.should.eql('hello');
|
|
|
|
});
|
|
|
|
it('returns number',function() {
|
|
|
|
var result = util.evaluateNodeProperty('0123','num');
|
|
|
|
result.should.eql(123);
|
|
|
|
});
|
|
|
|
it('returns evaluated json',function() {
|
|
|
|
var result = util.evaluateNodeProperty('{"a":123}','json');
|
|
|
|
result.should.eql({a:123});
|
|
|
|
});
|
|
|
|
it('returns regex',function() {
|
|
|
|
var result = util.evaluateNodeProperty('^abc$','re');
|
|
|
|
result.toString().should.eql("/^abc$/");
|
|
|
|
});
|
2016-06-08 00:01:23 +02:00
|
|
|
it('returns boolean',function() {
|
|
|
|
var result = util.evaluateNodeProperty('true','bool');
|
|
|
|
result.should.be.true();
|
|
|
|
result = util.evaluateNodeProperty('TrUe','bool');
|
|
|
|
result.should.be.true();
|
|
|
|
result = util.evaluateNodeProperty('false','bool');
|
|
|
|
result.should.be.false();
|
|
|
|
result = util.evaluateNodeProperty('','bool');
|
|
|
|
result.should.be.false();
|
|
|
|
});
|
2016-04-18 15:38:32 +02:00
|
|
|
it('returns date',function() {
|
|
|
|
var result = util.evaluateNodeProperty('','date');
|
|
|
|
(Date.now() - result).should.be.approximately(0,50);
|
|
|
|
});
|
2018-07-25 02:15:27 +02:00
|
|
|
it('returns bin', function () {
|
|
|
|
var result = util.evaluateNodeProperty('[1, 2]','bin');
|
|
|
|
result[0].should.eql(1);
|
|
|
|
result[1].should.eql(2);
|
|
|
|
});
|
2022-05-22 10:59:27 +02:00
|
|
|
it('throws an error if buffer data is not array or string', function (done) {
|
|
|
|
try {
|
|
|
|
var result = util.evaluateNodeProperty('12','bin');
|
|
|
|
done("should throw an error");
|
|
|
|
} catch (err) {
|
|
|
|
if (err.code === "INVALID_BUFFER_DATA") {
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
done("should throw an error");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2015-12-31 00:09:35 +01:00
|
|
|
it('returns msg property',function() {
|
|
|
|
var result = util.evaluateNodeProperty('foo.bar','msg',{},{foo:{bar:"123"}});
|
|
|
|
result.should.eql("123");
|
|
|
|
});
|
2018-07-25 02:15:27 +02:00
|
|
|
it('throws an error if callback is not defined', function (done) {
|
|
|
|
try {
|
|
|
|
util.evaluateNodeProperty(' ','msg',{},{foo:{bar:"123"}});
|
|
|
|
done("should throw an error");
|
|
|
|
} catch (err) {
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
});
|
2015-12-31 00:09:35 +01:00
|
|
|
it('returns flow property',function() {
|
|
|
|
var result = util.evaluateNodeProperty('foo.bar','flow',{
|
|
|
|
context:function() { return {
|
|
|
|
flow: { get: function(k) {
|
|
|
|
if (k === 'foo.bar') {
|
|
|
|
return '123';
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
},{});
|
|
|
|
result.should.eql("123");
|
|
|
|
});
|
|
|
|
it('returns global property',function() {
|
|
|
|
var result = util.evaluateNodeProperty('foo.bar','global',{
|
|
|
|
context:function() { return {
|
|
|
|
global: { get: function(k) {
|
|
|
|
if (k === 'foo.bar') {
|
|
|
|
return '123';
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
},{});
|
|
|
|
result.should.eql("123");
|
|
|
|
});
|
2018-07-25 02:15:27 +02:00
|
|
|
it('returns jsonata result', function () {
|
|
|
|
var result = util.evaluateNodeProperty('$abs(-1)','jsonata',{},{});
|
|
|
|
result.should.eql(1);
|
|
|
|
});
|
2018-07-09 13:40:25 +02:00
|
|
|
it('returns null', function() {
|
|
|
|
var result = util.evaluateNodeProperty(null,'null');
|
|
|
|
(result === null).should.be.true();
|
|
|
|
})
|
2018-05-21 16:10:06 +02:00
|
|
|
describe('environment variable', function() {
|
|
|
|
before(function() {
|
|
|
|
process.env.NR_TEST_A = "foo";
|
|
|
|
process.env.NR_TEST_B = "${NR_TEST_A}";
|
|
|
|
})
|
|
|
|
after(function() {
|
|
|
|
delete process.env.NR_TEST_A;
|
|
|
|
delete process.env.NR_TEST_B;
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns an environment variable - NR_TEST_A', function() {
|
|
|
|
var result = util.evaluateNodeProperty('NR_TEST_A','env');
|
|
|
|
result.should.eql('foo');
|
|
|
|
});
|
|
|
|
it('returns an environment variable - ${NR_TEST_A}', function() {
|
|
|
|
var result = util.evaluateNodeProperty('${NR_TEST_A}','env');
|
|
|
|
result.should.eql('foo');
|
|
|
|
});
|
|
|
|
it('returns an environment variable - ${NR_TEST_A', function() {
|
|
|
|
var result = util.evaluateNodeProperty('${NR_TEST_A','env');
|
|
|
|
result.should.eql('');
|
|
|
|
});
|
|
|
|
it('returns an environment variable - foo${NR_TEST_A}bar', function() {
|
|
|
|
var result = util.evaluateNodeProperty('123${NR_TEST_A}456','env');
|
|
|
|
result.should.eql('123foo456');
|
|
|
|
});
|
|
|
|
it('returns an environment variable - foo${NR_TEST_B}bar', function() {
|
|
|
|
var result = util.evaluateNodeProperty('123${NR_TEST_B}456','env');
|
|
|
|
result.should.eql('123${NR_TEST_A}456');
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
2016-06-08 00:01:23 +02:00
|
|
|
});
|
2015-12-31 00:09:35 +01:00
|
|
|
|
2016-06-08 00:01:23 +02:00
|
|
|
describe('normalisePropertyExpression', function() {
|
|
|
|
function testABC(input,expected) {
|
|
|
|
var result = util.normalisePropertyExpression(input);
|
|
|
|
// console.log("+",input);
|
|
|
|
// console.log(result);
|
|
|
|
result.should.eql(expected);
|
|
|
|
}
|
2021-01-27 21:32:52 +01:00
|
|
|
function testABCWithMessage(input,msg,expected) {
|
|
|
|
var result = util.normalisePropertyExpression(input,msg);
|
|
|
|
// console.log("+",input);
|
|
|
|
// console.log(result);
|
|
|
|
result.should.eql(expected);
|
|
|
|
}
|
|
|
|
function testInvalid(input,msg) {
|
2016-06-08 00:01:23 +02:00
|
|
|
/*jshint immed: false */
|
|
|
|
(function() {
|
2021-01-27 21:32:52 +01:00
|
|
|
util.normalisePropertyExpression(input,msg);
|
2016-06-08 00:01:23 +02:00
|
|
|
}).should.throw();
|
|
|
|
}
|
2021-01-27 21:32:52 +01:00
|
|
|
function testToString(input,msg,expected) {
|
|
|
|
var result = util.normalisePropertyExpression(input,msg,true);
|
|
|
|
console.log("+",input);
|
|
|
|
console.log(result);
|
|
|
|
result.should.eql(expected);
|
|
|
|
}
|
2016-06-08 00:01:23 +02:00
|
|
|
it('pass a.b.c',function() { testABC('a.b.c',['a','b','c']); })
|
|
|
|
it('pass a["b"]["c"]',function() { testABC('a["b"]["c"]',['a','b','c']); })
|
|
|
|
it('pass a["b"].c',function() { testABC('a["b"].c',['a','b','c']); })
|
|
|
|
it("pass a['b'].c",function() { testABC("a['b'].c",['a','b','c']); })
|
|
|
|
|
|
|
|
it("pass a[0].c",function() { testABC("a[0].c",['a',0,'c']); })
|
|
|
|
it("pass a.0.c",function() { testABC("a.0.c",['a',0,'c']); })
|
|
|
|
it("pass a['a.b[0]'].c",function() { testABC("a['a.b[0]'].c",['a','a.b[0]','c']); })
|
|
|
|
it("pass a[0][0][0]",function() { testABC("a[0][0][0]",['a',0,0,0]); })
|
2017-01-06 12:23:19 +01:00
|
|
|
it("pass '1.2.3.4'",function() { testABC("'1.2.3.4'",['1.2.3.4']); })
|
|
|
|
it("pass 'a.b'[1]",function() { testABC("'a.b'[1]",['a.b',1]); })
|
|
|
|
it("pass 'a.b'.c",function() { testABC("'a.b'.c",['a.b','c']); })
|
|
|
|
|
2021-01-27 21:32:52 +01:00
|
|
|
it("pass a[msg.b]",function() { testABC("a[msg.b]",["a",["msg","b"]]); })
|
|
|
|
it("pass a[msg[msg.b]]",function() { testABC("a[msg[msg.b]]",["a",["msg",["msg","b"]]]); })
|
|
|
|
it("pass a[msg.b]",function() { testABC("a[msg.b]",["a",["msg","b"]]); })
|
|
|
|
it("pass a[msg.b]",function() { testABC("a[msg.b]",["a",["msg","b"]]); })
|
|
|
|
it("pass a[msg['b]\"[']]",function() { testABC("a[msg['b]\"[']]",["a",["msg","b]\"["]]); })
|
|
|
|
it("pass a[msg['b][']]",function() { testABC("a[msg['b][']]",["a",["msg","b]["]]); })
|
|
|
|
it("pass b[msg.a][2]",function() { testABC("b[msg.a][2]",["b",["msg","a"],2])})
|
|
|
|
|
|
|
|
it("pass b[msg.a][2] (with message)",function() { testABCWithMessage("b[msg.a][2]",{a: "foo"},["b","foo",2])})
|
2016-06-08 00:01:23 +02:00
|
|
|
|
2016-11-21 22:36:18 +01:00
|
|
|
it('pass a.$b.c',function() { testABC('a.$b.c',['a','$b','c']); })
|
|
|
|
it('pass a["$b"].c',function() { testABC('a["$b"].c',['a','$b','c']); })
|
|
|
|
it('pass a._b.c',function() { testABC('a._b.c',['a','_b','c']); })
|
|
|
|
it('pass a["_b"].c',function() { testABC('a["_b"].c',['a','_b','c']); })
|
|
|
|
|
2021-01-27 21:32:52 +01:00
|
|
|
it("pass a['a.b[0]'].c",function() { testToString("a['a.b[0]'].c",null,'a["a.b[0]"]["c"]'); })
|
|
|
|
it("pass a.b.c",function() { testToString("a.b.c",null,'a["b"]["c"]'); })
|
|
|
|
it('pass a[msg.c][0]["fred"]',function() { testToString('a[msg.c][0]["fred"]',{c:"123"},'a["123"][0]["fred"]'); })
|
|
|
|
|
2016-06-08 00:01:23 +02:00
|
|
|
it("fail a'b'.c",function() { testInvalid("a'b'.c"); })
|
|
|
|
it("fail a['b'.c",function() { testInvalid("a['b'.c"); })
|
|
|
|
it("fail a[]",function() { testInvalid("a[]"); })
|
|
|
|
it("fail a]",function() { testInvalid("a]"); })
|
|
|
|
it("fail a[",function() { testInvalid("a["); })
|
|
|
|
it("fail a[0d]",function() { testInvalid("a[0d]"); })
|
|
|
|
it("fail a['",function() { testInvalid("a['"); })
|
|
|
|
it("fail a[']",function() { testInvalid("a[']"); })
|
|
|
|
it("fail a[0']",function() { testInvalid("a[0']"); })
|
|
|
|
it("fail a.[0]",function() { testInvalid("a.[0]"); })
|
|
|
|
it("fail [0]",function() { testInvalid("[0]"); })
|
|
|
|
it("fail a[0",function() { testInvalid("a[0"); })
|
|
|
|
it("fail a.",function() { testInvalid("a."); })
|
2016-06-13 22:59:20 +02:00
|
|
|
it("fail .a",function() { testInvalid(".a"); })
|
|
|
|
it("fail a. b",function() { testInvalid("a. b"); })
|
|
|
|
it("fail a.b",function() { testInvalid(" a.b"); })
|
2016-06-08 00:01:23 +02:00
|
|
|
it("fail a[0].[1]",function() { testInvalid("a[0].[1]"); })
|
2017-01-06 12:23:19 +01:00
|
|
|
it("fail a['']",function() { testInvalid("a['']"); })
|
|
|
|
it("fail 'a.b'c",function() { testInvalid("'a.b'c"); })
|
2017-01-06 22:58:17 +01:00
|
|
|
it("fail <blank>",function() { testInvalid("");})
|
2021-01-27 21:32:52 +01:00
|
|
|
it("fail a[b]",function() { testInvalid("a[b]"); })
|
|
|
|
it("fail a[msg.]",function() { testInvalid("a[msg.]"); })
|
|
|
|
it("fail a[msg[]",function() { testInvalid("a[msg[]"); })
|
|
|
|
it("fail a[msg.[]]",function() { testInvalid("a[msg.[]]"); })
|
|
|
|
it("fail a[msg['af]]",function() { testInvalid("a[msg['af]]"); })
|
|
|
|
it("fail b[msg.undefined][2] (with message)",function() { testInvalid("b[msg.undefined][2]",{})})
|
2017-01-06 12:23:19 +01:00
|
|
|
|
2016-06-08 00:01:23 +02:00
|
|
|
});
|
2017-03-08 15:38:33 +01:00
|
|
|
|
|
|
|
describe('normaliseNodeTypeName', function() {
|
|
|
|
function normalise(input, expected) {
|
|
|
|
var result = util.normaliseNodeTypeName(input);
|
|
|
|
result.should.eql(expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
it('pass blank',function() { normalise("", "") });
|
|
|
|
it('pass ab1',function() { normalise("ab1", "ab1") });
|
|
|
|
it('pass AB1',function() { normalise("AB1", "aB1") });
|
|
|
|
it('pass a b 1',function() { normalise("a b 1", "aB1") });
|
|
|
|
it('pass a-b-1',function() { normalise("a-b-1", "aB1") });
|
|
|
|
it('pass ab1 ',function() { normalise(" ab1 ", "ab1") });
|
|
|
|
it('pass _a_b_1_',function() { normalise("_a_b_1_", "aB1") });
|
|
|
|
it('pass http request',function() { normalise("http request", "httpRequest") });
|
|
|
|
it('pass HttpRequest',function() { normalise("HttpRequest", "httpRequest") });
|
|
|
|
});
|
2017-07-09 11:40:23 +02:00
|
|
|
|
|
|
|
describe('prepareJSONataExpression', function() {
|
|
|
|
it('prepares an expression', function() {
|
|
|
|
var result = util.prepareJSONataExpression('payload',{});
|
|
|
|
result.should.have.property('evaluate');
|
|
|
|
result.should.have.property('assign');
|
|
|
|
result.should.have.property('_legacyMode', false);
|
|
|
|
});
|
|
|
|
it('prepares a legacyMode expression', function() {
|
|
|
|
var result = util.prepareJSONataExpression('msg.payload',{});
|
|
|
|
result.should.have.property('evaluate');
|
|
|
|
result.should.have.property('assign');
|
|
|
|
result.should.have.property('_legacyMode', true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
describe('evaluateJSONataExpression', function() {
|
|
|
|
it('evaluates an expression', function() {
|
|
|
|
var expr = util.prepareJSONataExpression('payload',{});
|
|
|
|
var result = util.evaluateJSONataExpression(expr,{payload:"hello"});
|
|
|
|
result.should.eql("hello");
|
|
|
|
});
|
|
|
|
it('evaluates a legacyMode expression', function() {
|
|
|
|
var expr = util.prepareJSONataExpression('msg.payload',{});
|
|
|
|
var result = util.evaluateJSONataExpression(expr,{payload:"hello"});
|
|
|
|
result.should.eql("hello");
|
|
|
|
});
|
|
|
|
it('accesses flow context from an expression', function() {
|
|
|
|
var expr = util.prepareJSONataExpression('$flowContext("foo")',{context:function() { return {flow:{get: function(key) { return {'foo':'bar'}[key]}}}}});
|
|
|
|
var result = util.evaluateJSONataExpression(expr,{payload:"hello"});
|
|
|
|
result.should.eql("bar");
|
|
|
|
});
|
2020-05-28 07:48:11 +02:00
|
|
|
it('accesses undefined environment variable from an expression', function() {
|
|
|
|
var expr = util.prepareJSONataExpression('$env("UTIL_ENV")',{});
|
|
|
|
var result = util.evaluateJSONataExpression(expr,{});
|
|
|
|
result.should.eql('');
|
|
|
|
});
|
2018-07-25 02:15:27 +02:00
|
|
|
it('accesses environment variable from an expression', function() {
|
|
|
|
process.env.UTIL_ENV = 'foo';
|
|
|
|
var expr = util.prepareJSONataExpression('$env("UTIL_ENV")',{});
|
|
|
|
var result = util.evaluateJSONataExpression(expr,{});
|
|
|
|
result.should.eql('foo');
|
|
|
|
});
|
2020-05-28 06:47:04 +02:00
|
|
|
it('accesses moment from an expression', function() {
|
2020-06-01 14:13:14 +02:00
|
|
|
var expr = util.prepareJSONataExpression('$moment("2020-05-27", "YYYY-MM-DD").add(7, "days").add(1, "months").format("YYYY-MM-DD")',{});
|
2020-05-28 06:47:04 +02:00
|
|
|
var result = util.evaluateJSONataExpression(expr,{});
|
|
|
|
result.should.eql('2020-07-03');
|
|
|
|
});
|
2020-05-28 08:20:10 +02:00
|
|
|
it('accesses moment-timezone from an expression', function() {
|
|
|
|
var expr = util.prepareJSONataExpression('$moment("2013-11-18 11:55Z").tz("Asia/Taipei").format()',{});
|
|
|
|
var result = util.evaluateJSONataExpression(expr,{});
|
|
|
|
result.should.eql('2013-11-18T19:55:00+08:00');
|
|
|
|
});
|
2017-07-09 11:40:23 +02:00
|
|
|
it('handles non-existant flow context variable', function() {
|
|
|
|
var expr = util.prepareJSONataExpression('$flowContext("nonExistant")',{context:function() { return {flow:{get: function(key) { return {'foo':'bar'}[key]}}}}});
|
|
|
|
var result = util.evaluateJSONataExpression(expr,{payload:"hello"});
|
|
|
|
should.not.exist(result);
|
|
|
|
});
|
|
|
|
it('handles non-existant global context variable', function() {
|
|
|
|
var expr = util.prepareJSONataExpression('$globalContext("nonExistant")',{context:function() { return {global:{get: function(key) { return {'foo':'bar'}[key]}}}}});
|
|
|
|
var result = util.evaluateJSONataExpression(expr,{payload:"hello"});
|
|
|
|
should.not.exist(result);
|
|
|
|
});
|
2018-07-09 16:12:09 +02:00
|
|
|
it('handles async flow context access', function(done) {
|
2018-07-13 11:12:06 +02:00
|
|
|
var expr = util.prepareJSONataExpression('$flowContext("foo")',{context:function() { return {flow:{get: function(key,store,callback) { setTimeout(()=>{callback(null,{'foo':'bar'}[key])},10)}}}}});
|
2018-07-09 16:12:09 +02:00
|
|
|
util.evaluateJSONataExpression(expr,{payload:"hello"},function(err,value) {
|
|
|
|
try {
|
|
|
|
should.not.exist(err);
|
|
|
|
value.should.eql("bar");
|
|
|
|
done();
|
|
|
|
} catch(err2) {
|
|
|
|
done(err2);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
})
|
|
|
|
it('handles async global context access', function(done) {
|
2018-07-13 11:12:06 +02:00
|
|
|
var expr = util.prepareJSONataExpression('$globalContext("foo")',{context:function() { return {global:{get: function(key,store,callback) { setTimeout(()=>{callback(null,{'foo':'bar'}[key])},10)}}}}});
|
2018-07-09 16:12:09 +02:00
|
|
|
util.evaluateJSONataExpression(expr,{payload:"hello"},function(err,value) {
|
|
|
|
try {
|
|
|
|
should.not.exist(err);
|
|
|
|
value.should.eql("bar");
|
|
|
|
done();
|
|
|
|
} catch(err2) {
|
|
|
|
done(err2);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
})
|
2018-07-13 11:12:06 +02:00
|
|
|
it('handles persistable store in flow context access', function(done) {
|
|
|
|
var storeName;
|
|
|
|
var expr = util.prepareJSONataExpression('$flowContext("foo", "flowStoreName")',{context:function() { return {flow:{get: function(key,store,callback) { storeName = store;setTimeout(()=>{callback(null,{'foo':'bar'}[key])},10)}}}}});
|
|
|
|
util.evaluateJSONataExpression(expr,{payload:"hello"},function(err,value) {
|
|
|
|
try {
|
|
|
|
should.not.exist(err);
|
|
|
|
value.should.eql("bar");
|
|
|
|
storeName.should.equal("flowStoreName");
|
|
|
|
done();
|
|
|
|
} catch(err2) {
|
|
|
|
done(err2);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
})
|
|
|
|
it('handles persistable store in global context access', function(done) {
|
|
|
|
var storeName;
|
|
|
|
var expr = util.prepareJSONataExpression('$globalContext("foo", "globalStoreName")',{context:function() { return {global:{get: function(key,store,callback) { storeName = store;setTimeout(()=>{callback(null,{'foo':'bar'}[key])},10)}}}}});
|
|
|
|
util.evaluateJSONataExpression(expr,{payload:"hello"},function(err,value) {
|
|
|
|
try {
|
|
|
|
should.not.exist(err);
|
|
|
|
value.should.eql("bar");
|
|
|
|
storeName.should.equal("globalStoreName");
|
|
|
|
done();
|
|
|
|
} catch(err2) {
|
|
|
|
done(err2);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
})
|
2018-07-25 02:15:27 +02:00
|
|
|
it('callbacks with error when invalid expression was specified', function (done) {
|
|
|
|
var expr = util.prepareJSONataExpression('$abc(1)',{});
|
|
|
|
var result = util.evaluateJSONataExpression(expr,{payload:"hello"},function(err,value){
|
|
|
|
should.exist(err);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2017-07-09 11:40:23 +02:00
|
|
|
});
|
|
|
|
|
2018-07-25 02:15:27 +02:00
|
|
|
describe('encodeObject', function () {
|
|
|
|
it('encodes Error with message', function() {
|
|
|
|
var err = new Error("encode error");
|
|
|
|
err.name = 'encodeError';
|
|
|
|
var msg = {msg:err};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("error");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.name.should.eql('encodeError');
|
|
|
|
resultJson.message.should.eql('encode error');
|
|
|
|
});
|
|
|
|
it('encodes Error without message', function() {
|
|
|
|
var err = new Error();
|
|
|
|
err.name = 'encodeError';
|
|
|
|
err.toString = function(){return 'error message';}
|
|
|
|
var msg = {msg:err};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("error");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.name.should.eql('encodeError');
|
|
|
|
resultJson.message.should.eql('error message');
|
|
|
|
});
|
|
|
|
it('encodes Buffer', function() {
|
|
|
|
var msg = {msg:Buffer.from("abc")};
|
|
|
|
var result = util.encodeObject(msg,{maxLength:4});
|
|
|
|
result.format.should.eql("buffer[3]");
|
|
|
|
result.msg[0].should.eql('6');
|
|
|
|
result.msg[1].should.eql('1');
|
|
|
|
result.msg[2].should.eql('6');
|
|
|
|
result.msg[3].should.eql('2');
|
|
|
|
});
|
|
|
|
it('encodes function', function() {
|
|
|
|
var msg = {msg:function(){}};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("function");
|
|
|
|
result.msg.should.eql('[function]');
|
|
|
|
});
|
|
|
|
it('encodes boolean', function() {
|
|
|
|
var msg = {msg:true};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("boolean");
|
|
|
|
result.msg.should.eql('true');
|
|
|
|
});
|
|
|
|
it('encodes number', function() {
|
|
|
|
var msg = {msg:123};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("number");
|
|
|
|
result.msg.should.eql('123');
|
|
|
|
});
|
|
|
|
it('encodes 0', function() {
|
|
|
|
var msg = {msg:0};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("number");
|
|
|
|
result.msg.should.eql('0');
|
|
|
|
});
|
|
|
|
it('encodes null', function() {
|
|
|
|
var msg = {msg:null};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("null");
|
|
|
|
result.msg.should.eql('(undefined)');
|
|
|
|
});
|
|
|
|
it('encodes undefined', function() {
|
|
|
|
var msg = {msg:undefined};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("undefined");
|
|
|
|
result.msg.should.eql('(undefined)');
|
|
|
|
});
|
|
|
|
it('encodes string', function() {
|
|
|
|
var msg = {msg:'1234567890'};
|
|
|
|
var result = util.encodeObject(msg,{maxLength:6});
|
|
|
|
result.format.should.eql("string[10]");
|
|
|
|
result.msg.should.eql('123456...');
|
|
|
|
});
|
2021-06-29 12:09:30 +02:00
|
|
|
|
|
|
|
it('encodes Map', function() {
|
|
|
|
const m = new Map();
|
|
|
|
m.set("a",1);
|
|
|
|
m.set("b",2);
|
|
|
|
var msg = {msg:m};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("map");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.should.have.property("__enc__",true);
|
|
|
|
resultJson.should.have.property("type","map");
|
|
|
|
resultJson.should.have.property("data",{"a":1,"b":2});
|
|
|
|
resultJson.should.have.property("length",2)
|
|
|
|
});
|
|
|
|
|
|
|
|
it('encodes Set', function() {
|
|
|
|
const m = new Set();
|
|
|
|
m.add("a");
|
|
|
|
m.add("b");
|
|
|
|
var msg = {msg:m};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("set[2]");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.should.have.property("__enc__",true);
|
|
|
|
resultJson.should.have.property("type","set");
|
|
|
|
resultJson.should.have.property("data",["a","b"]);
|
|
|
|
resultJson.should.have.property("length",2)
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2018-07-25 02:15:27 +02:00
|
|
|
describe('encode object', function() {
|
|
|
|
it('object', function() {
|
|
|
|
var msg = { msg:{"foo":"bar"} };
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("Object");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.foo.should.eql('bar');
|
|
|
|
});
|
|
|
|
it('object whose name includes error', function() {
|
|
|
|
function MyErrorObj(){
|
|
|
|
this.name = 'my error obj';
|
|
|
|
this.message = 'my error message';
|
|
|
|
};
|
|
|
|
var msg = { msg:new MyErrorObj() };
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("MyErrorObj");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.name.should.eql('my error obj');
|
|
|
|
resultJson.message.should.eql('my error message');
|
|
|
|
});
|
2020-09-07 22:05:27 +02:00
|
|
|
|
|
|
|
it('object with undefined property', function() {
|
|
|
|
var msg = { msg:{a:1,b:undefined,c:3 } };
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("Object");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.should.have.property("a",1);
|
|
|
|
resultJson.should.have.property("c",3);
|
|
|
|
resultJson.should.have.property("b");
|
|
|
|
resultJson.b.should.have.property("__enc__", true);
|
|
|
|
resultJson.b.should.have.property("type", "undefined");
|
|
|
|
});
|
2022-02-03 15:59:25 +01:00
|
|
|
it('object with no prototype builtins', function() {
|
|
|
|
const payload = new Object(null);
|
|
|
|
payload.c = 3;
|
|
|
|
var msg = { msg:{b:payload} };
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("Object");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.should.have.property("b");
|
|
|
|
resultJson.b.should.have.property("c", 3);
|
|
|
|
});
|
|
|
|
it('object with overriden hasOwnProperty', function() {
|
|
|
|
var msg = { msg:{b:{hasOwnProperty:null}} };
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("Object");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.should.have.property("b");
|
|
|
|
resultJson.b.should.have.property("hasOwnProperty");
|
|
|
|
});
|
2021-06-29 12:09:30 +02:00
|
|
|
it('object with Map property', function() {
|
|
|
|
const m = new Map();
|
|
|
|
m.set("a",1);
|
|
|
|
m.set("b",2);
|
|
|
|
var msg = {msg:{"aMap":m}};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("Object");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.should.have.property("aMap");
|
|
|
|
resultJson.aMap.should.have.property("__enc__",true);
|
|
|
|
resultJson.aMap.should.have.property("type","map");
|
|
|
|
resultJson.aMap.should.have.property("data",{"a":1,"b":2});
|
|
|
|
resultJson.aMap.should.have.property("length",2)
|
|
|
|
});
|
|
|
|
it('object with Set property', function() {
|
|
|
|
const m = new Set();
|
|
|
|
m.add("a");
|
|
|
|
m.add("b");
|
|
|
|
var msg = {msg:{"aSet":m}};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("Object");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.should.have.property("aSet");
|
|
|
|
resultJson.aSet.should.have.property("__enc__",true);
|
|
|
|
resultJson.aSet.should.have.property("type","set");
|
|
|
|
resultJson.aSet.should.have.property("data",["a","b"]);
|
|
|
|
resultJson.aSet.should.have.property("length",2)
|
|
|
|
});
|
2018-07-25 02:15:27 +02:00
|
|
|
it('constructor of IncomingMessage', function() {
|
|
|
|
function IncomingMessage(){};
|
|
|
|
var msg = { msg:new IncomingMessage() };
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("Object");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.should.empty();
|
|
|
|
});
|
|
|
|
it('_req key in msg', function() {
|
|
|
|
function Socket(){};
|
|
|
|
var msg = { msg:{"_req":123} };
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("Object");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson._req.__enc__.should.eql(true);
|
|
|
|
resultJson._req.type.should.eql('internal');
|
|
|
|
});
|
|
|
|
it('_res key in msg', function() {
|
|
|
|
function Socket(){};
|
|
|
|
var msg = { msg:{"_res":123} };
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("Object");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson._res.__enc__.should.eql(true);
|
|
|
|
resultJson._res.type.should.eql('internal');
|
|
|
|
});
|
|
|
|
it('array of error', function() {
|
|
|
|
var msg = { msg:[new Error("encode error")] };
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("array[1]");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson[0].should.eql('Error: encode error');
|
|
|
|
});
|
|
|
|
it('long array in msg', function() {
|
|
|
|
var msg = {msg:{array:[1,2,3,4]}};
|
|
|
|
var result = util.encodeObject(msg,{maxLength:2});
|
|
|
|
result.format.should.eql("Object");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.array.__enc__.should.eql(true);
|
|
|
|
resultJson.array.data[0].should.eql(1);
|
|
|
|
resultJson.array.data[1].should.eql(2);
|
|
|
|
resultJson.array.length.should.eql(4);
|
|
|
|
});
|
|
|
|
it('array of string', function() {
|
|
|
|
var msg = { msg:["abcde","12345"] };
|
|
|
|
var result = util.encodeObject(msg,{maxLength:3});
|
|
|
|
result.format.should.eql("array[2]");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson[0].should.eql('abc...');
|
|
|
|
resultJson[1].should.eql('123...');
|
|
|
|
});
|
2020-09-07 22:05:27 +02:00
|
|
|
it('array containing undefined', function() {
|
|
|
|
var msg = { msg:[1,undefined,3]};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("array[3]");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson[0].should.eql(1);
|
|
|
|
resultJson[2].should.eql(3);
|
|
|
|
resultJson[1].__enc__.should.be.true();
|
|
|
|
resultJson[1].type.should.eql("undefined");
|
|
|
|
});
|
2018-07-25 02:15:27 +02:00
|
|
|
it('array of function', function() {
|
|
|
|
var msg = { msg:[function(){}] };
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("array[1]");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson[0].__enc__.should.eql(true);
|
|
|
|
resultJson[0].type.should.eql('function');
|
|
|
|
});
|
|
|
|
it('array of number', function() {
|
|
|
|
var msg = { msg:[1,2,3] };
|
|
|
|
var result = util.encodeObject(msg,{maxLength:2});
|
|
|
|
result.format.should.eql("array[3]");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.__enc__.should.eql(true);
|
|
|
|
resultJson.data[0].should.eql(1);
|
|
|
|
resultJson.data[1].should.eql(2);
|
|
|
|
resultJson.data.length.should.eql(2);
|
|
|
|
resultJson.length.should.eql(3);
|
|
|
|
});
|
|
|
|
it('array of special number', function() {
|
|
|
|
var msg = { msg:[NaN,Infinity,-Infinity] };
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("array[3]");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson[0].__enc__.should.eql(true);
|
|
|
|
resultJson[0].type.should.eql('number');
|
|
|
|
resultJson[0].data.should.eql('NaN');
|
|
|
|
resultJson[1].data.should.eql('Infinity');
|
|
|
|
resultJson[2].data.should.eql('-Infinity');
|
|
|
|
});
|
|
|
|
it('constructor of Buffer in msg', function() {
|
2018-10-24 14:45:34 +02:00
|
|
|
var msg = { msg:{buffer:Buffer.from([1,2,3,4])} };
|
2018-07-25 02:15:27 +02:00
|
|
|
var result = util.encodeObject(msg,{maxLength:2});
|
|
|
|
result.format.should.eql("Object");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.buffer.__enc__.should.eql(true);
|
|
|
|
resultJson.buffer.length.should.eql(4);
|
|
|
|
resultJson.buffer.data[0].should.eql(1);
|
|
|
|
resultJson.buffer.data[1].should.eql(2);
|
|
|
|
});
|
|
|
|
it('constructor of ServerResponse', function() {
|
|
|
|
function ServerResponse(){};
|
|
|
|
var msg = { msg: new ServerResponse() };
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("Object");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.should.eql('[internal]');
|
|
|
|
});
|
|
|
|
it('constructor of Socket in msg', function() {
|
|
|
|
function Socket(){};
|
|
|
|
var msg = { msg: { socket: new Socket() } };
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("Object");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
resultJson.socket.should.eql('[internal]');
|
|
|
|
});
|
2019-11-02 12:27:08 +01:00
|
|
|
it('object which fails to serialise', function(done) {
|
|
|
|
var msg = {
|
|
|
|
msg: {
|
|
|
|
obj:{
|
|
|
|
cantserialise:{
|
|
|
|
message:'this will not be displayed',
|
|
|
|
toJSON: function(val) {
|
|
|
|
throw 'this exception should have been caught';
|
|
|
|
return 'should not display because we threw first';
|
|
|
|
},
|
|
|
|
},
|
|
|
|
canserialise:{
|
|
|
|
message:'this should be displayed',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("error");
|
|
|
|
var success = (result.msg.indexOf('cantserialise') > 0);
|
|
|
|
success &= (result.msg.indexOf('this exception should have been caught') > 0);
|
|
|
|
success &= (result.msg.indexOf('canserialise') > 0);
|
|
|
|
success.should.eql(1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
it('object which fails to serialise - different error type', function(done) {
|
|
|
|
var msg = {
|
|
|
|
msg: {
|
|
|
|
obj:{
|
|
|
|
cantserialise:{
|
|
|
|
message:'this will not be displayed',
|
|
|
|
toJSON: function(val) {
|
|
|
|
throw new Error('this exception should have been caught');
|
|
|
|
return 'should not display because we threw first';
|
|
|
|
},
|
|
|
|
},
|
|
|
|
canserialise:{
|
|
|
|
message:'this should be displayed',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("error");
|
|
|
|
var success = (result.msg.indexOf('cantserialise') > 0);
|
|
|
|
success &= (result.msg.indexOf('this exception should have been caught') > 0);
|
|
|
|
success &= (result.msg.indexOf('canserialise') > 0);
|
|
|
|
success.should.eql(1);
|
|
|
|
done();
|
|
|
|
});
|
2019-11-02 13:37:07 +01:00
|
|
|
it('very large object which fails to serialise should be truncated', function(done) {
|
|
|
|
var msg = {
|
|
|
|
msg: {
|
|
|
|
obj:{
|
|
|
|
big:"",
|
|
|
|
cantserialise:{
|
|
|
|
message:'this will not be displayed',
|
|
|
|
toJSON: function(val) {
|
|
|
|
throw new Error('this exception should have been caught');
|
|
|
|
return 'should not display because we threw first';
|
|
|
|
},
|
|
|
|
},
|
|
|
|
canserialise:{
|
|
|
|
message:'this should be displayed',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
2020-02-06 11:04:55 +01:00
|
|
|
|
2019-11-02 13:37:07 +01:00
|
|
|
for (var i = 0; i < 1000; i++) {
|
2019-11-02 14:03:37 +01:00
|
|
|
msg.msg.obj.big += 'some more string ';
|
2019-11-02 13:37:07 +01:00
|
|
|
}
|
2020-02-06 11:04:55 +01:00
|
|
|
|
2019-11-02 13:37:07 +01:00
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
result.format.should.eql("error");
|
|
|
|
var resultJson = JSON.parse(result.msg);
|
|
|
|
var success = (resultJson.message.length <= 1000);
|
|
|
|
success.should.eql(true);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
it('test bad toString', function(done) {
|
|
|
|
var msg = {
|
|
|
|
msg: {
|
2019-11-02 14:03:37 +01:00
|
|
|
mystrangeobj:"hello",
|
2019-11-02 13:37:07 +01:00
|
|
|
},
|
|
|
|
};
|
|
|
|
msg.msg.toString = function(){
|
2019-11-02 14:03:37 +01:00
|
|
|
throw new Error('Exception in toString - should have been caught');
|
2019-11-02 13:37:07 +01:00
|
|
|
}
|
|
|
|
msg.msg.constructor = { name: "strangeobj" };
|
2020-02-06 11:04:55 +01:00
|
|
|
|
2019-11-02 13:37:07 +01:00
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
var success = (result.msg.indexOf('[Type not printable]') >= 0);
|
|
|
|
success.should.eql(true);
|
|
|
|
done();
|
|
|
|
});
|
2019-11-02 14:03:37 +01:00
|
|
|
it('test bad object constructor', function(done) {
|
|
|
|
var msg = {
|
|
|
|
msg: {
|
|
|
|
mystrangeobj:"hello",
|
2020-02-06 11:04:55 +01:00
|
|
|
constructor: {
|
2019-11-02 14:03:37 +01:00
|
|
|
get name(){
|
|
|
|
throw new Error('Exception in constructor name');
|
|
|
|
}
|
2020-02-06 11:04:55 +01:00
|
|
|
}
|
2019-11-02 14:03:37 +01:00
|
|
|
},
|
|
|
|
};
|
|
|
|
var result = util.encodeObject(msg);
|
|
|
|
done();
|
|
|
|
});
|
2019-11-02 13:37:07 +01:00
|
|
|
|
2018-07-25 02:15:27 +02:00
|
|
|
});
|
|
|
|
});
|
2021-01-27 21:32:52 +01:00
|
|
|
|
2014-08-28 15:25:41 +02:00
|
|
|
});
|