0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00
nodejs/test/mjsunit/test-http-proxy.js

54 lines
1.4 KiB
JavaScript
Raw Normal View History

process.mixin(require("./common"));
http = require("http");
var PROXY_PORT = 8869;
var BACKEND_PORT = 8870;
2009-09-28 12:36:36 +02:00
var backend = http.createServer(function (req, res) {
// debug("backend");
res.sendHeader(200, {"content-type": "text/plain"});
res.sendBody("hello world\n");
res.finish();
});
// debug("listen backend")
backend.listen(BACKEND_PORT);
2009-09-28 12:36:36 +02:00
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.get(req.uri.path);
proxy_req.finish(function(proxy_res) {
res.sendHeader(proxy_res.statusCode, proxy_res.headers);
2009-08-26 22:03:19 +02:00
proxy_res.addListener("body", function(chunk) {
res.sendBody(chunk);
2009-06-27 20:40:43 +02:00
});
2009-06-29 13:18:30 +02:00
proxy_res.addListener("complete", function() {
res.finish();
// debug("proxy res");
2009-06-27 20:40:43 +02:00
});
});
});
// debug("listen proxy")
proxy.listen(PROXY_PORT);
var body = "";
2009-09-28 12:36:36 +02:00
var client = http.createClient(PROXY_PORT);
2009-08-26 18:22:00 +02:00
var req = client.get("/test");
// debug("client req")
2009-08-26 18:22:00 +02:00
req.finish(function (res) {
// debug("got res");
2009-08-26 18:22:00 +02:00
assertEquals(200, res.statusCode);
res.setBodyEncoding("utf8");
res.addListener("body", function (chunk) { body += chunk; });
res.addListener("complete", function () {
proxy.close();
backend.close();
// debug("closed both");
});
2009-08-26 18:22:00 +02:00
});
process.addListener("exit", function () {
assertEquals(body, "hello world\n");
});