Sha256: 8e9069ae7f87dacc5a640bc86d8fdf5c5f63a259f2b35602560a5c03c017dc95

Contents?: true

Size: 1.99 KB

Versions: 3

Compression:

Stored size: 1.99 KB

Contents

common = require("../common");
assert = common.assert
net = require("net");
exchanges = 0;
starttime = null;
timeouttime = null;
timeout = 1000;

var echo_server = net.createServer(function (socket) {
  socket.setTimeout(timeout);

  socket.addListener("timeout", function () {
    console.log("server timeout");
    timeouttime = new Date;
    common.p(timeouttime);
    socket.destroy();
  });

  socket.addListener("error", function (e) {
    throw new Error("Server side socket should not get error. We disconnect willingly.");
  })

  socket.addListener("data", function (d) {
    console.log(d);
    socket.write(d);
  });

  socket.addListener("end", function () {
    socket.end();
  });
});

echo_server.listen(common.PORT, function () {
  console.log("server listening at " + common.PORT);
});

var client = net.createConnection(common.PORT);
client.setEncoding("UTF8");
client.setTimeout(0); // disable the timeout for client
client.addListener("connect", function () {
  console.log("client connected.");
  client.write("hello\r\n");
});

client.addListener("data", function (chunk) {
  assert.equal("hello\r\n", chunk);
  if (exchanges++ < 5) {
    setTimeout(function () {
      console.log("client write 'hello'");
      client.write("hello\r\n");
    }, 500);

    if (exchanges == 5) {
      console.log("wait for timeout - should come in " + timeout + " ms");
      starttime = new Date;
      common.p(starttime);
    }
  }
});

client.addListener("timeout", function () {
  throw new Error("client timeout - this shouldn't happen");
});

client.addListener("end", function () {
  console.log("client end");
  client.end();
});

client.addListener("close", function () {
  console.log("client disconnect");
  echo_server.close();
});

process.addListener("exit", function () {
  assert.ok(starttime != null);
  assert.ok(timeouttime != null);

  diff = timeouttime - starttime;
  console.log("diff = " + diff);

  assert.ok(timeout < diff);

  // Allow for 800 milliseconds more
  assert.ok(diff < timeout + 800);
});

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rednode-0.1.2 ext/node/test/pummel/test-net-timeout.js
rednode-0.1.1 ext/node/test/pummel/test-net-timeout.js
rednode-0.1.0 ext/node/test/pummel/test-net-timeout.js