mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 09:52: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>
44 lines
899 B
JavaScript
44 lines
899 B
JavaScript
'use strict';
|
|
var net = require('net');
|
|
var http = require('http');
|
|
var util = require('util');
|
|
|
|
function Agent() {
|
|
http.Agent.call(this);
|
|
}
|
|
util.inherits(Agent, http.Agent);
|
|
|
|
Agent.prototype.createConnection = function() {
|
|
var self = this;
|
|
var socket = new net.Socket();
|
|
|
|
socket.on('error', function() {
|
|
socket.push('HTTP/1.1 200\r\n\r\n');
|
|
});
|
|
|
|
socket.on('newListener', function onNewListener(name) {
|
|
if (name !== 'error')
|
|
return;
|
|
socket.removeListener('newListener', onNewListener);
|
|
|
|
// Let other listeners to be set up too
|
|
process.nextTick(function() {
|
|
self.breakSocket(socket);
|
|
});
|
|
});
|
|
|
|
return socket;
|
|
};
|
|
|
|
Agent.prototype.breakSocket = function breakSocket(socket) {
|
|
socket.emit('error', new Error('Intentional error'));
|
|
};
|
|
|
|
var agent = new Agent();
|
|
|
|
http.request({
|
|
agent: agent
|
|
}).once('error', function() {
|
|
console.log('ignore');
|
|
});
|