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>
37 lines
793 B
JavaScript
37 lines
793 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
var net = require('net');
|
|
|
|
var caughtError = false;
|
|
|
|
var options = {
|
|
host: '127.0.0.1',
|
|
port: common.PORT
|
|
};
|
|
|
|
// start a tcp server that closes incoming connections immediately
|
|
var server = net.createServer(function(client) {
|
|
client.destroy();
|
|
server.close();
|
|
});
|
|
server.listen(options.port, options.host, onListen);
|
|
|
|
// do a GET request, expect it to fail
|
|
function onListen() {
|
|
var req = http.request(options, function(res) {
|
|
assert.ok(false, 'this should never run');
|
|
});
|
|
req.on('error', function(err) {
|
|
assert.equal(err.code, 'ECONNRESET');
|
|
caughtError = true;
|
|
});
|
|
req.end();
|
|
}
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(caughtError, true);
|
|
});
|
|
|