mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
additional test to cover last line in encodeObject
This commit is contained in:
parent
63cc9adeaa
commit
c54509df3d
@ -842,7 +842,7 @@ describe("@node-red/util/util", function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
for (var i = 0; i < 1000; i++) {
|
for (var i = 0; i < 1000; i++) {
|
||||||
msg.msg.obj.big += 'some more string ';
|
msg.msg.obj.big += 'some more string ';
|
||||||
}
|
}
|
||||||
|
|
||||||
var result = util.encodeObject(msg);
|
var result = util.encodeObject(msg);
|
||||||
@ -855,11 +855,11 @@ describe("@node-red/util/util", function() {
|
|||||||
it('test bad toString', function(done) {
|
it('test bad toString', function(done) {
|
||||||
var msg = {
|
var msg = {
|
||||||
msg: {
|
msg: {
|
||||||
mystrangeobj:"hello",
|
mystrangeobj:"hello",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
msg.msg.toString = function(){
|
msg.msg.toString = function(){
|
||||||
throw new Error('Exception in toString - should have been caught');
|
throw new Error('Exception in toString - should have been caught');
|
||||||
}
|
}
|
||||||
msg.msg.constructor = { name: "strangeobj" };
|
msg.msg.constructor = { name: "strangeobj" };
|
||||||
|
|
||||||
@ -868,8 +868,21 @@ describe("@node-red/util/util", function() {
|
|||||||
success.should.eql(true);
|
success.should.eql(true);
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
it('test bad object constructor', function(done) {
|
||||||
|
var msg = {
|
||||||
|
msg: {
|
||||||
|
mystrangeobj:"hello",
|
||||||
|
constructor: {
|
||||||
|
get name(){
|
||||||
|
throw new Error('Exception in constructor name');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
var result = util.encodeObject(msg);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user