2014-07-30 16:00:51 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2014-07-30 16:00:51 +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 jsonNode = require("nr-test-utils").require("@node-red/nodes/core/parsers/70-JSON.js");
|
2018-03-02 05:41:16 +01:00
|
|
|
var helper = require("node-red-node-test-helper");
|
2014-07-30 16:00:51 +02:00
|
|
|
|
|
|
|
describe('JSON node', function() {
|
|
|
|
|
|
|
|
before(function(done) {
|
|
|
|
helper.startServer(done);
|
|
|
|
});
|
2015-10-02 20:46:29 +02:00
|
|
|
|
2018-04-23 13:37:26 +02:00
|
|
|
after(function(done) {
|
|
|
|
helper.stopServer(done);
|
|
|
|
});
|
|
|
|
|
2014-08-01 23:05:49 +02:00
|
|
|
afterEach(function() {
|
|
|
|
helper.unload();
|
|
|
|
});
|
2014-07-30 16:00:51 +02:00
|
|
|
|
2014-07-31 11:56:31 +02:00
|
|
|
it('should convert a valid json string to a javascript object', function(done) {
|
2018-01-15 00:19:01 +01:00
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
2014-07-30 16:00:51 +02:00
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
msg.should.have.property('topic', 'bar');
|
|
|
|
msg.payload.should.have.property('employees');
|
|
|
|
msg.payload.employees[0].should.have.property('firstName', 'John');
|
|
|
|
msg.payload.employees[0].should.have.property('lastName', 'Smith');
|
|
|
|
done();
|
|
|
|
});
|
2022-03-23 23:07:43 +01:00
|
|
|
var jsonString = ' {"employees":[{"firstName":"John", "lastName":"Smith"}]}\r\n ';
|
2014-07-30 16:00:51 +02:00
|
|
|
jn1.receive({payload:jsonString,topic: "bar"});
|
|
|
|
});
|
|
|
|
});
|
2015-10-02 20:46:29 +02:00
|
|
|
|
2021-12-10 16:21:43 +01:00
|
|
|
it('should convert a buffer of a valid json string to a javascript object', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",action:"obj",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
msg.should.have.property('topic', 'bar');
|
|
|
|
msg.payload.should.have.property('employees');
|
|
|
|
msg.payload.employees[0].should.have.property('firstName', 'John');
|
|
|
|
msg.payload.employees[0].should.have.property('lastName', 'Smith');
|
|
|
|
done();
|
|
|
|
});
|
2022-03-23 23:07:43 +01:00
|
|
|
var jsonString = Buffer.from(' {"employees":[{"firstName":"John", "lastName":"Smith"}]}\r\n ');
|
2021-12-10 16:21:43 +01:00
|
|
|
jn1.receive({payload:jsonString,topic: "bar"});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-07-30 16:00:51 +02:00
|
|
|
it('should convert a javascript object to a json string', function(done) {
|
2018-01-15 00:19:01 +01:00
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
2014-07-30 16:00:51 +02:00
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
should.equal(msg.payload, '{"employees":[{"firstName":"John","lastName":"Smith"}]}');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
var obj = {employees:[{firstName:"John", lastName:"Smith"}]};
|
2015-03-24 18:43:47 +01:00
|
|
|
jn1.receive({payload:obj});
|
2014-07-30 16:00:51 +02:00
|
|
|
});
|
|
|
|
});
|
2015-10-02 20:46:29 +02:00
|
|
|
|
|
|
|
it('should convert a array to a json string', function(done) {
|
2018-01-15 00:19:01 +01:00
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
2015-10-02 20:46:29 +02:00
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
should.equal(msg.payload, '[1,2,3]');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
var obj = [1,2,3];
|
|
|
|
jn1.receive({payload:obj});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-02-15 18:07:11 +01:00
|
|
|
it('should convert a boolean to a json string', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
should.equal(msg.payload, 'true');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
var obj = true;
|
|
|
|
jn1.receive({payload:obj});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should convert a json string to a boolean', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
should.equal(msg.payload, true);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
var obj = "true";
|
|
|
|
jn1.receive({payload:obj});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should convert a number to a json string', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
should.equal(msg.payload, '2019');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
var obj = 2019;
|
|
|
|
jn1.receive({payload:obj});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should convert a json string to a number', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
should.equal(msg.payload, 1962);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
var obj = '1962';
|
|
|
|
jn1.receive({payload:obj});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-01-29 10:57:09 +01:00
|
|
|
it('should log an error if asked to parse an invalid json string', function(done) {
|
2018-01-15 00:19:01 +01:00
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
2015-01-29 10:57:09 +01:00
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
try {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn1.receive({payload:'foo',topic: "bar"});
|
2019-07-09 00:23:33 +02:00
|
|
|
setTimeout(function() {
|
|
|
|
try {
|
|
|
|
var logEvents = helper.log().args.filter(function(evt) {
|
|
|
|
return evt[0].type == "json";
|
|
|
|
});
|
|
|
|
logEvents.should.have.length(1);
|
|
|
|
logEvents[0][0].should.have.a.property('msg');
|
|
|
|
logEvents[0][0].msg.should.startWith("Unexpected token o");
|
|
|
|
logEvents[0][0].should.have.a.property('level',helper.log().ERROR);
|
|
|
|
done();
|
|
|
|
} catch(err) { done(err) }
|
|
|
|
},20);
|
2015-01-29 10:57:09 +01:00
|
|
|
} catch(err) {
|
|
|
|
done(err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2015-10-02 20:46:29 +02:00
|
|
|
|
2021-12-10 16:21:43 +01:00
|
|
|
it('should log an error if asked to parse an invalid json string in a buffer', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",action:"obj",wires:[["jn2"]]},
|
2015-01-29 10:57:09 +01:00
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
2021-12-10 16:21:43 +01:00
|
|
|
try {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn1.receive({payload:Buffer.from('{"name":foo}'),topic: "bar"});
|
|
|
|
setTimeout(function() {
|
|
|
|
try {
|
|
|
|
var logEvents = helper.log().args.filter(function(evt) {
|
|
|
|
return evt[0].type == "json";
|
|
|
|
});
|
|
|
|
logEvents.should.have.length(1);
|
|
|
|
logEvents[0][0].should.have.a.property('msg');
|
|
|
|
logEvents[0][0].msg.should.startWith("Unexpected token o");
|
|
|
|
logEvents[0][0].should.have.a.property('level',helper.log().ERROR);
|
|
|
|
done();
|
|
|
|
} catch(err) { done(err) }
|
|
|
|
},20);
|
|
|
|
} catch(err) {
|
|
|
|
done(err);
|
|
|
|
}
|
2015-03-24 18:43:47 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-12-10 16:21:43 +01:00
|
|
|
// it('should log an error if asked to parse something thats not json or js and not in force object mode', function(done) {
|
|
|
|
// var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
|
|
|
// {id:"jn2", type:"helper"}];
|
|
|
|
// helper.load(jsonNode, flow, function() {
|
|
|
|
// var jn1 = helper.getNode("jn1");
|
|
|
|
// var jn2 = helper.getNode("jn2");
|
|
|
|
// setTimeout(function() {
|
|
|
|
// try {
|
|
|
|
// var logEvents = helper.log().args.filter(function(evt) {
|
|
|
|
// return evt[0].type == "json";
|
|
|
|
// });
|
|
|
|
// logEvents.should.have.length(1);
|
|
|
|
// logEvents[0][0].should.have.a.property('msg');
|
|
|
|
// logEvents[0][0].msg.toString().should.eql('json.errors.dropped');
|
|
|
|
// done();
|
|
|
|
// } catch(err) {
|
|
|
|
// done(err);
|
|
|
|
// }
|
|
|
|
// },50);
|
|
|
|
// jn1.receive({payload:Buffer.from("abcd")});
|
|
|
|
// });
|
|
|
|
// });
|
|
|
|
|
2015-03-24 18:43:47 +01:00
|
|
|
it('should pass straight through if no payload set', function(done) {
|
2018-01-15 00:19:01 +01:00
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
2015-03-24 18:43:47 +01:00
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
msg.should.have.property('topic', 'bar');
|
|
|
|
msg.should.not.have.property('payload');
|
2015-01-29 10:57:09 +01:00
|
|
|
done();
|
2015-03-24 18:43:47 +01:00
|
|
|
});
|
|
|
|
jn1.receive({topic: "bar"});
|
2015-01-29 10:57:09 +01:00
|
|
|
});
|
|
|
|
});
|
2015-03-24 18:43:47 +01:00
|
|
|
|
2018-01-15 00:19:01 +01:00
|
|
|
it('should ensure the result is a json string', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",action:"str",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
var count = 0;
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
try {
|
|
|
|
should.equal(msg.payload, '{"employees":[{"firstName":"John","lastName":"Smith"}]}');
|
|
|
|
count++;
|
|
|
|
if (count === 2) {
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
} catch(err) {
|
|
|
|
done(err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
var obj = {employees:[{firstName:"John", lastName:"Smith"}]};
|
|
|
|
jn1.receive({payload:obj,topic: "bar"});
|
|
|
|
jn1.receive({payload:JSON.stringify(obj),topic: "bar"});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should ensure the result is a JS Object', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",action:"obj",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
var count = 0;
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
try {
|
|
|
|
msg.should.have.property('topic', 'bar');
|
|
|
|
msg.payload.should.have.property('employees');
|
|
|
|
msg.payload.employees[0].should.have.property('firstName', 'John');
|
|
|
|
msg.payload.employees[0].should.have.property('lastName', 'Smith');
|
|
|
|
count++;
|
|
|
|
if (count === 2) {
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
} catch(err) {
|
|
|
|
done(err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
var obj = {employees:[{firstName:"John", lastName:"Smith"}]};
|
|
|
|
jn1.receive({payload:obj,topic: "bar"});
|
|
|
|
jn1.receive({payload:JSON.stringify(obj),topic: "bar"});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should handle any msg property - receive existing string', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",property:"one.two",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
try {
|
|
|
|
msg.should.have.property('topic', 'bar');
|
|
|
|
msg.should.have.property('one');
|
|
|
|
msg.one.should.have.property('two');
|
|
|
|
msg.one.two.should.have.property('employees');
|
|
|
|
msg.one.two.employees[0].should.have.property('firstName', 'John');
|
|
|
|
msg.one.two.employees[0].should.have.property('lastName', 'Smith');
|
|
|
|
done();
|
|
|
|
} catch(err) {
|
|
|
|
done(err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
var jsonString = '{"employees":[{"firstName":"John", "lastName":"Smith"}]}';
|
|
|
|
jn1.receive({payload:"",one:{two:jsonString},topic: "bar"});
|
|
|
|
|
|
|
|
var logEvents = helper.log().args.filter(function(evt) {
|
|
|
|
return evt[0].type == "json";
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should handle any msg property - receive existing obj', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",property:"one.two",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
try {
|
|
|
|
should.equal(msg.one.two, '{"employees":[{"firstName":"John","lastName":"Smith"}]}');
|
|
|
|
done();
|
|
|
|
} catch(err) {
|
|
|
|
done(err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
var jsonString = '{"employees":[{"firstName":"John", "lastName":"Smith"}]}';
|
|
|
|
jn1.receive({payload:"",one:{two:JSON.parse(jsonString)},topic: "bar"});
|
|
|
|
|
|
|
|
var logEvents = helper.log().args.filter(function(evt) {
|
|
|
|
return evt[0].type == "json";
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-07-01 01:19:39 +02:00
|
|
|
|
|
|
|
it('should pass an object if provided a valid JSON string and schema', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
should.equal(msg.payload.number, 3);
|
|
|
|
should.equal(msg.payload.string, "allo");
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
var jsonString = '{"number": 3, "string": "allo"}';
|
|
|
|
var schema = {title: "testSchema", type: "object", properties: {number: {type: "number"}, string: {type: "string" }}};
|
|
|
|
jn1.receive({payload:jsonString, schema:schema});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-08-29 19:36:28 +02:00
|
|
|
it('should pass an object if provided a valid object and schema and action is object', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",action:"obj",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
should.equal(msg.payload.number, 3);
|
|
|
|
should.equal(msg.payload.string, "allo");
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
var obj = {"number": 3, "string": "allo"};
|
|
|
|
var schema = {title: "testSchema", type: "object", properties: {number: {type: "number"}, string: {type: "string" }}};
|
|
|
|
jn1.receive({payload:obj, schema:schema});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-07-01 01:19:39 +02:00
|
|
|
it('should pass a string if provided a valid object and schema', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
should.equal(msg.payload, '{"number":3,"string":"allo"}');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
var obj = {"number": 3, "string": "allo"};
|
|
|
|
var schema = {title: "testSchema", type: "object", properties: {number: {type: "number"}, string: {type: "string" }}};
|
|
|
|
jn1.receive({payload:obj, schema:schema});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-08-29 19:36:28 +02:00
|
|
|
it('should pass a string if provided a valid JSON string and schema and action is string', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",action:"str",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
should.equal(msg.payload, '{"number":3,"string":"allo"}');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
var jsonString = '{"number":3,"string":"allo"}';
|
|
|
|
var schema = {title: "testSchema", type: "object", properties: {number: {type: "number"}, string: {type: "string" }}};
|
|
|
|
jn1.receive({payload:jsonString, schema:schema});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-07-01 01:19:39 +02:00
|
|
|
it('should log an error if passed an invalid object and valid schema', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
try {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
var schema = {title: "testSchema", type: "object", properties: {number: {type: "number"}, string: {type: "string" }}};
|
|
|
|
var obj = {"number": "foo", "string": 3};
|
|
|
|
jn1.receive({payload:obj, schema:schema});
|
2019-07-09 00:23:33 +02:00
|
|
|
setTimeout(function() {
|
|
|
|
try {
|
|
|
|
var logEvents = helper.log().args.filter(function(evt) {
|
|
|
|
return evt[0].type == "json";
|
|
|
|
});
|
|
|
|
logEvents.should.have.length(1);
|
|
|
|
logEvents[0][0].should.have.a.property('msg');
|
2021-04-29 11:48:26 +02:00
|
|
|
logEvents[0][0].msg.should.startWith("json.errors.schema-error");
|
2019-07-09 00:23:33 +02:00
|
|
|
logEvents[0][0].should.have.a.property('level',helper.log().ERROR);
|
|
|
|
done();
|
|
|
|
} catch(err) { done(err) }
|
|
|
|
},50);
|
2018-07-01 01:19:39 +02:00
|
|
|
} catch(err) {
|
|
|
|
done(err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-08-29 19:36:28 +02:00
|
|
|
it('should log an error if passed an invalid object and valid schema and action is object', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",action:"obj",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
try {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
var schema = {title: "testSchema", type: "object", properties: {number: {type: "number"}, string: {type: "string" }}};
|
|
|
|
var obj = {"number": "foo", "string": 3};
|
|
|
|
jn1.receive({payload:obj, schema:schema});
|
2019-07-09 00:23:33 +02:00
|
|
|
setTimeout(function() {
|
|
|
|
try {
|
|
|
|
var logEvents = helper.log().args.filter(function(evt) {
|
|
|
|
return evt[0].type == "json";
|
|
|
|
});
|
|
|
|
logEvents.should.have.length(1);
|
|
|
|
logEvents[0][0].should.have.a.property('msg');
|
2021-04-29 11:48:26 +02:00
|
|
|
logEvents[0][0].msg.should.startWith("json.errors.schema-error");
|
2019-07-09 00:23:33 +02:00
|
|
|
logEvents[0][0].should.have.a.property('level',helper.log().ERROR);
|
|
|
|
done();
|
|
|
|
} catch(err) { done(err) }
|
|
|
|
},50);
|
2018-08-29 19:36:28 +02:00
|
|
|
} catch(err) {
|
|
|
|
done(err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should log an error if passed an invalid JSON string and valid schema', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
try {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
var schema = {title: "testSchema", type: "object", properties: {number: {type: "number"}, string: {type: "string" }}};
|
|
|
|
var jsonString = '{"number":"Hello","string":3}';
|
|
|
|
jn1.receive({payload:jsonString, schema:schema});
|
2019-07-09 00:23:33 +02:00
|
|
|
setTimeout(function() {
|
|
|
|
try {
|
|
|
|
var logEvents = helper.log().args.filter(function(evt) {
|
|
|
|
return evt[0].type == "json";
|
|
|
|
});
|
|
|
|
logEvents.should.have.length(1);
|
|
|
|
logEvents[0][0].should.have.a.property('msg');
|
2021-04-29 11:48:26 +02:00
|
|
|
logEvents[0][0].msg.should.startWith("json.errors.schema-error");
|
2019-07-09 00:23:33 +02:00
|
|
|
logEvents[0][0].should.have.a.property('level',helper.log().ERROR);
|
|
|
|
done();
|
|
|
|
} catch(err) { done(err) }
|
|
|
|
},50);
|
2018-08-29 19:36:28 +02:00
|
|
|
} catch(err) {
|
|
|
|
done(err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should log an error if passed an invalid JSON string and valid schema and action is string', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",action:"str",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
try {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
var schema = {title: "testSchema", type: "object", properties: {number: {type: "number"}, string: {type: "string" }}};
|
|
|
|
var jsonString = '{"number":"Hello","string":3}';
|
|
|
|
jn1.receive({payload:jsonString, schema:schema});
|
2019-07-09 00:23:33 +02:00
|
|
|
setTimeout(function() {
|
|
|
|
try {
|
|
|
|
var logEvents = helper.log().args.filter(function(evt) {
|
|
|
|
return evt[0].type == "json";
|
|
|
|
});
|
|
|
|
logEvents.should.have.length(1);
|
|
|
|
logEvents[0][0].should.have.a.property('msg');
|
2021-04-29 11:48:26 +02:00
|
|
|
logEvents[0][0].msg.should.startWith("json.errors.schema-error");
|
2019-07-09 00:23:33 +02:00
|
|
|
logEvents[0][0].should.have.a.property('level',helper.log().ERROR);
|
|
|
|
done();
|
|
|
|
} catch(err) { done(err) }
|
|
|
|
},50);
|
2018-08-29 19:36:28 +02:00
|
|
|
} catch(err) {
|
|
|
|
done(err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-07-01 01:19:39 +02:00
|
|
|
it('should log an error if passed a valid object and invalid schema', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
try {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
var schema = "garbage";
|
|
|
|
var obj = {"number": "foo", "string": 3};
|
|
|
|
jn1.receive({payload:obj, schema:schema});
|
2019-07-09 00:23:33 +02:00
|
|
|
setTimeout(function() {
|
|
|
|
try {
|
|
|
|
var logEvents = helper.log().args.filter(function(evt) {
|
|
|
|
return evt[0].type == "json";
|
|
|
|
});
|
|
|
|
logEvents.should.have.length(1);
|
|
|
|
logEvents[0][0].should.have.a.property('msg');
|
|
|
|
logEvents[0][0].msg.should.equal("json.errors.schema-error-compile");
|
|
|
|
logEvents[0][0].should.have.a.property('level',helper.log().ERROR);
|
|
|
|
done();
|
|
|
|
} catch(err) { done(err) }
|
|
|
|
},50);
|
2018-07-01 01:19:39 +02:00
|
|
|
} catch(err) {
|
|
|
|
done(err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2018-12-10 19:47:55 +01:00
|
|
|
|
|
|
|
it('msg.schema property should be deleted before sending to next node (string input)', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",action:"str",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
should.equal(msg.schema, undefined);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
var jsonString = '{"number":3,"string":"allo"}';
|
|
|
|
var schema = {title: "testSchema", type: "object", properties: {number: {type: "number"}, string: {type: "string" }}};
|
|
|
|
jn1.receive({payload:jsonString, schema:schema});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('msg.schema property should be deleted before sending to next node (object input)', function(done) {
|
|
|
|
var flow = [{id:"jn1",type:"json",action:"str",wires:[["jn2"]]},
|
|
|
|
{id:"jn2", type:"helper"}];
|
|
|
|
helper.load(jsonNode, flow, function() {
|
|
|
|
var jn1 = helper.getNode("jn1");
|
|
|
|
var jn2 = helper.getNode("jn2");
|
|
|
|
jn2.on("input", function(msg) {
|
|
|
|
should.equal(msg.schema, undefined);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
var jsonObject = {"number":3,"string":"allo"};
|
|
|
|
var schema = {title: "testSchema", type: "object", properties: {number: {type: "number"}, string: {type: "string" }}};
|
|
|
|
jn1.receive({payload:jsonObject, schema:schema});
|
|
|
|
});
|
|
|
|
});
|
2014-07-30 16:00:51 +02:00
|
|
|
});
|