mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
fix websocket feedback test - now doesn't spin
This commit is contained in:
parent
1a7868159a
commit
c9dc9b4fe9
5
packages/node_modules/@node-red/nodes/core/io/22-websocket.js
generated
vendored
5
packages/node_modules/@node-red/nodes/core/io/22-websocket.js
generated
vendored
@ -250,10 +250,11 @@ module.exports = function(RED) {
|
|||||||
this.on("input", function(msg) {
|
this.on("input", function(msg) {
|
||||||
var payload;
|
var payload;
|
||||||
if (this.serverConfig.wholemsg) {
|
if (this.serverConfig.wholemsg) {
|
||||||
var sess = JSON.stringify(msg._session);
|
var sess;
|
||||||
|
if (msg._session) { sess = JSON.stringify(msg._session); }
|
||||||
delete msg._session;
|
delete msg._session;
|
||||||
payload = JSON.stringify(msg);
|
payload = JSON.stringify(msg);
|
||||||
msg._session = JSON.parse(sess);
|
if (sess) { msg._session = JSON.parse(sess); }
|
||||||
}
|
}
|
||||||
else if (msg.hasOwnProperty("payload")) {
|
else if (msg.hasOwnProperty("payload")) {
|
||||||
if (!Buffer.isBuffer(msg.payload)) { // if it's not a buffer make sure it's a string.
|
if (!Buffer.isBuffer(msg.payload)) { // if it's not a buffer make sure it's a string.
|
||||||
|
@ -481,7 +481,7 @@ describe('websocket Node', function() {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should feedback', function(done) {
|
it('should NOT feedback more than once', function(done) {
|
||||||
var flow = [
|
var flow = [
|
||||||
{ id: "server", type: "websocket-listener", path: "/ws", wholemsg: "true" },
|
{ id: "server", type: "websocket-listener", path: "/ws", wholemsg: "true" },
|
||||||
{ id: "client", type: "websocket-client", path: getWsUrl("/ws"), wholemsg: "true" },
|
{ id: "client", type: "websocket-client", path: getWsUrl("/ws"), wholemsg: "true" },
|
||||||
@ -497,11 +497,13 @@ describe('websocket Node', function() {
|
|||||||
});
|
});
|
||||||
var acc = 0;
|
var acc = 0;
|
||||||
helper.getNode("output").on("input", function(msg) {
|
helper.getNode("output").on("input", function(msg) {
|
||||||
if (acc++ > 20) {
|
acc = acc + 1;
|
||||||
helper.clearFlows();
|
|
||||||
done();
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
setTimeout( function() {
|
||||||
|
acc.should.equal(1);
|
||||||
|
helper.clearFlows();
|
||||||
|
done();
|
||||||
|
}, 250);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user