1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Update debug test to check lengths...

This commit is contained in:
Dave Conway-Jones 2015-08-12 21:56:19 +01:00
parent 999b888c54
commit b555b014b8

View File

@ -49,7 +49,7 @@ describe('debug node', function() {
}, function(msg) {
JSON.parse(msg).should.eql({
topic:"debug",data:{id:"n1",name:"Debug",msg:"test",
format:"string",property:"payload"}
format:"string [4]",property:"payload"}
});
}, done);
});
@ -64,7 +64,7 @@ describe('debug node', function() {
n1.emit("input", {payload:"test"});
}, function(msg) {
JSON.parse(msg).should.eql({
topic:"debug",data:{id:"n1",msg:"test",property:"payload",format:"string"}
topic:"debug",data:{id:"n1",msg:"test",property:"payload",format:"string [4]"}
});
count++;
}, function() {
@ -108,7 +108,7 @@ describe('debug node', function() {
n1.emit("input", {payload:"test", foo:"bar"});
}, function(msg) {
JSON.parse(msg).should.eql({
topic:"debug",data:{id:"n1",msg:"bar",property:"foo",format:"string"}
topic:"debug",data:{id:"n1",msg:"bar",property:"foo",format:"string [3]"}
});
}, done);
});
@ -122,7 +122,7 @@ describe('debug node', function() {
n1.emit("input", {payload:"test", foo: {bar: "bar"}});
}, function(msg) {
JSON.parse(msg).should.eql({
topic:"debug",data:{id:"n1",msg:"bar",property:"foo.bar",format:"string"}
topic:"debug",data:{id:"n1",msg:"bar",property:"foo.bar",format:"string [3]"}
});
}, done);
});
@ -194,7 +194,7 @@ describe('debug node', function() {
}, function(msg) {
JSON.parse(msg).should.eql({
topic:"debug",
data:{id:"n1",msg: '[\n 0,\n 1,\n 2,\n 3\n]',format:"array",
data:{id:"n1",msg: '[\n 0,\n 1,\n 2,\n 3\n]',format:"array [4]",
property:"payload"}
});
}, done);
@ -236,7 +236,7 @@ describe('debug node', function() {
id:"n1",
msg: Array(1001).join("X")+' ....',
property:"payload",
format:"string"
format:"string [1001]"
}
});
}, done);
@ -256,7 +256,7 @@ describe('debug node', function() {
id:"n1",
msg: '48454c4c4f',
property:"payload",
format: "buffer"
format: "buffer [5]"
}
});
}, done);
@ -277,7 +277,7 @@ describe('debug node', function() {
});
}, function(msg) {
JSON.parse(msg).should.eql({
topic:"debug",data:{id:"n1",msg:"message 2",property:"payload",format:"string"}
topic:"debug",data:{id:"n1",msg:"message 2",property:"payload",format:"string [9]"}
});
}, done);
});