mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.5 KiB
56 lines
1.5 KiB
require("../common");
|
|
http = require("http");
|
|
url = require("url");
|
|
|
|
var PROXY_PORT = PORT;
|
|
var BACKEND_PORT = PORT+1;
|
|
|
|
var backend = http.createServer(function (req, res) {
|
|
// debug("backend");
|
|
res.writeHead(200, {"content-type": "text/plain"});
|
|
res.write("hello world\n");
|
|
res.close();
|
|
});
|
|
// debug("listen backend")
|
|
backend.listen(BACKEND_PORT);
|
|
|
|
var proxy_client = http.createClient(BACKEND_PORT);
|
|
var proxy = http.createServer(function (req, res) {
|
|
debug("proxy req headers: " + JSON.stringify(req.headers));
|
|
var proxy_req = proxy_client.request(url.parse(req.url).pathname);
|
|
proxy_req.addListener('response', function(proxy_res) {
|
|
res.writeHead(proxy_res.statusCode, proxy_res.headers);
|
|
proxy_res.addListener("data", function(chunk) {
|
|
res.write(chunk);
|
|
});
|
|
proxy_res.addListener("end", function() {
|
|
res.close();
|
|
// debug("proxy res");
|
|
});
|
|
});
|
|
proxy_req.close();
|
|
});
|
|
// debug("listen proxy")
|
|
proxy.listen(PROXY_PORT);
|
|
|
|
var body = "";
|
|
|
|
var client = http.createClient(PROXY_PORT);
|
|
var req = client.request("/test");
|
|
// debug("client req")
|
|
req.addListener('response', function (res) {
|
|
// debug("got res");
|
|
assert.equal(200, res.statusCode);
|
|
res.setBodyEncoding("utf8");
|
|
res.addListener('data', function (chunk) { body += chunk; });
|
|
res.addListener('end', function () {
|
|
proxy.close();
|
|
backend.close();
|
|
// debug("closed both");
|
|
});
|
|
});
|
|
req.close();
|
|
|
|
process.addListener("exit", function () {
|
|
assert.equal(body, "hello world\n");
|
|
});
|
|
|