mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 18:02:21 +00:00

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>
56 lines
1.2 KiB
JavaScript
56 lines
1.2 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var http = require('http');
|
|
var assert = require('assert');
|
|
|
|
var server = http.Server(function(req, res) {
|
|
console.log('Server accepted request.');
|
|
res.writeHead(200);
|
|
res.write('Part of my res.');
|
|
|
|
res.destroy();
|
|
});
|
|
|
|
var responseClose = false;
|
|
|
|
server.listen(common.PORT, function() {
|
|
var client = http.get({
|
|
port: common.PORT,
|
|
headers: { connection: 'keep-alive' }
|
|
|
|
}, function(res) {
|
|
server.close();
|
|
|
|
console.log('Got res: ' + res.statusCode);
|
|
console.dir(res.headers);
|
|
|
|
res.on('data', function(chunk) {
|
|
console.log('Read ' + chunk.length + ' bytes');
|
|
console.log(' chunk=%j', chunk.toString());
|
|
});
|
|
|
|
res.on('end', function() {
|
|
console.log('Response ended.');
|
|
});
|
|
|
|
res.on('aborted', function() {
|
|
console.log('Response aborted.');
|
|
});
|
|
|
|
res.socket.on('close', function() {
|
|
console.log('socket closed, but not res');
|
|
});
|
|
|
|
// it would be nice if this worked:
|
|
res.on('close', function() {
|
|
console.log('Response aborted');
|
|
responseClose = true;
|
|
});
|
|
});
|
|
});
|
|
|
|
|
|
process.on('exit', function() {
|
|
assert.ok(responseClose);
|
|
});
|