mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
f29762f4dd
Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
38 lines
871 B
JavaScript
38 lines
871 B
JavaScript
'use strict';
|
|
// This example sets a timeout then immediately attempts to disable the timeout
|
|
// https://github.com/joyent/node/pull/2245
|
|
|
|
var common = require('../common');
|
|
var net = require('net');
|
|
var assert = require('assert');
|
|
|
|
var T = 100;
|
|
|
|
var server = net.createServer(function(c) {
|
|
c.write('hello');
|
|
});
|
|
server.listen(common.PORT);
|
|
|
|
var killers = [0];
|
|
|
|
var left = killers.length;
|
|
killers.forEach(function(killer) {
|
|
var socket = net.createConnection(common.PORT, 'localhost');
|
|
|
|
var s = socket.setTimeout(T, function() {
|
|
socket.destroy();
|
|
if (--left === 0) server.close();
|
|
assert.ok(killer !== 0);
|
|
clearTimeout(timeout);
|
|
});
|
|
assert.ok(s instanceof net.Socket);
|
|
|
|
socket.setTimeout(killer);
|
|
|
|
var timeout = setTimeout(function() {
|
|
socket.destroy();
|
|
if (--left === 0) server.close();
|
|
assert.ok(killer === 0);
|
|
}, T * 2);
|
|
});
|