Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 'connection' header, copying of headers, and support Windows named pipes #294

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 13 additions & 9 deletions lib/node-http-proxy/http-proxy.js
Expand Up @@ -209,13 +209,14 @@ HttpProxy.prototype.proxyRequest = function (req, res, buffer) {
//
// Setup outgoing proxy with relevant properties.
//
outgoing.host = this.target.host;
outgoing.hostname = this.target.hostname;
outgoing.port = this.target.port;
outgoing.agent = this.target.agent;
outgoing.method = req.method;
outgoing.path = req.url;
outgoing.headers = req.headers;
outgoing.host = this.target.host;
outgoing.hostname = this.target.hostname;
outgoing.port = this.target.port;
outgoing.socketPath = this.target.socketPath;
outgoing.agent = this.target.agent;
outgoing.method = req.method;
outgoing.path = req.url;
outgoing.headers = req.headers;

//
// If the changeOrigin option is specified, change the
Expand All @@ -234,7 +235,7 @@ HttpProxy.prototype.proxyRequest = function (req, res, buffer) {
//
// Process the `reverseProxy` `response` when it's received.
//
if (response.headers.connection) {
if (!response.headers.connection) {
if (req.headers.connection) { response.headers.connection = req.headers.connection }
else { response.headers.connection = 'close' }
}
Expand All @@ -254,7 +255,10 @@ HttpProxy.prototype.proxyRequest = function (req, res, buffer) {
}

// Set the headers of the client response
res.writeHead(response.statusCode, response.headers);
Object.keys(response.headers).forEach(function(key){
res.setHeader(key, response.headers[key]);
});
res.writeHead(response.statusCode);

// If `response.statusCode === 304`: No 'data' event and no 'end'
if (response.statusCode === 304) {
Expand Down
11 changes: 6 additions & 5 deletions lib/node-http-proxy/routing-proxy.js
Expand Up @@ -85,11 +85,12 @@ RoutingProxy.prototype.add = function (options) {
//
// TODO: Consume properties in `options` related to the `ProxyTable`.
//
options.target = options.target || {};
options.target.host = options.target.host || options.host;
options.target.port = options.target.port || options.port;
options.target.https = this.target && this.target.https ||
options.target && options.target.https;
options.target = options.target || {};
options.target.host = options.target.host || options.host;
options.target.port = options.target.port || options.port;
options.target.socketPath = options.target.socketPath || options.socketPath;
options.target.https = this.target && this.target.https ||
options.target && options.target.https;

//
// Setup options to pass-thru to the new `HttpProxy` instance
Expand Down
11 changes: 11 additions & 0 deletions test/helpers/http.js
Expand Up @@ -61,6 +61,12 @@ exports.createServer = function (options, callback) {
});
}

if (options.outputHeaders){
Object.keys(options.outputHeaders).forEach(function(header){
res.setHeader(header, options.outputHeaders[header]);
});
}

res.writeHead(200, { 'Content-Type': 'text/plain' });
res.write(options.output || 'hello proxy');
res.end();
Expand Down Expand Up @@ -113,6 +119,11 @@ exports.createProxyServer = function (options, callback) {
function requestHandler(req, res) {
var buffer = httpProxy.buffer(req);

if (options.outputHeaders){
Object.keys(options.outputHeaders).forEach(function(header){
res.setHeader(header, options.outputHeaders[header]);
});
}
setTimeout(function () {
//
// Setup options dynamically for `RoutingProxy.prototype.proxyRequest`
Expand Down
36 changes: 33 additions & 3 deletions test/http/http-test.js
Expand Up @@ -42,11 +42,41 @@ vows.describe(helpers.describe()).addBatch({
"and headers": macros.http.assertProxied({
request: { headers: { host: 'unknown.com' } }
}),
"and request close connection header": macros.http.assertProxied({
request: { headers: { connection: "close" } },
outputHeaders: { connection: "close" }
}),
"and request keep alive connection header": macros.http.assertProxied({
request: { headers: { connection: "keep-alive" } },
outputHeaders: { connection: "keep-alive" }
}),
"and response close connection header": macros.http.assertProxied({
request: { headers: { connection: "" } }, // Must explicitly set to "" because otherwise node will automatically add a "connection: keep-alive" header
targetHeaders: { connection: "close" },
outputHeaders: { connection: "close" }
}),
"and response keep-alive connection header": macros.http.assertProxied({
request: { headers: { connection: "" } }, // Must explicitly set to "" because otherwise node will automatically add a "connection: keep-alive" header
targetHeaders: { connection: "keep-alive" },
outputHeaders: { connection: "keep-alive" }
}),
"and no connection header": macros.http.assertProxied({
request: { headers: { connection: "" } }, // Must explicitly set to "" because otherwise node will automatically add a "connection: keep-alive" header
outputHeaders: { connection: "keep-alive" }
}),
"and forwarding enabled": macros.http.assertForwardProxied()
},
"and latency": macros.http.assertProxied({
latency: 2000
})
"and latency": {
"and no headers": macros.http.assertProxied({
latency: 2000
}),
"and response headers": macros.http.assertProxied({
targetHeaders: { "x-testheader": "target" },
proxyHeaders: { "X-TestHeader": "proxy" },
outputHeaders: { "x-testheader": "target" },
latency: 1000
})
}
},
"With a no valid target server": {
"and no latency": macros.http.assertInvalidProxy(),
Expand Down
21 changes: 17 additions & 4 deletions test/macros/http.js
Expand Up @@ -31,6 +31,12 @@ exports.assertRequest = function (options) {
},
"should succeed": function (err, res, body) {
assert.isNull(err);
if (options.assert.headers) {
Object.keys(options.assert.headers).forEach(function(header){
assert.equal(res.headers[header], options.assert.headers[header]);
});
}

if (options.assert.body) {
assert.equal(body, options.assert.body);
}
Expand All @@ -56,10 +62,14 @@ exports.assertRequest = function (options) {
exports.assertProxied = function (options) {
options = options || {};

var ports = options.ports || helpers.nextPortPair,
output = options.output || 'hello world from ' + ports.target,
protocol = helpers.protocols.proxy,
req = options.request || {};
var ports = options.ports || helpers.nextPortPair,
output = options.output || 'hello world from ' + ports.target,
outputHeaders = options.outputHeaders,
targetHeaders = options.targetHeaders,
proxyHeaders = options.proxyHeaders,
protocol = helpers.protocols.proxy,
req = options.request || {};


req.uri = req.uri || protocol + '://127.0.0.1:' + ports.proxy;

Expand All @@ -72,12 +82,14 @@ exports.assertProxied = function (options) {
helpers.http.createServerPair({
target: {
output: output,
outputHeaders: targetHeaders,
port: ports.target,
headers: req.headers
},
proxy: {
latency: options.latency,
port: ports.proxy,
outputHeaders: proxyHeaders,
proxy: {
forward: options.forward,
target: {
Expand All @@ -92,6 +104,7 @@ exports.assertProxied = function (options) {
"the proxy request": exports.assertRequest({
request: req,
assert: {
headers: outputHeaders,
body: output
}
})
Expand Down