Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-http-proxy.js « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2a04e169b52599d9b90abc68267f9bf63c85fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
include("mjsunit.js");

var PROXY_PORT = 8869;
var BACKEND_PORT = 8870;

var backend = new node.http.Server(function (req, res) {
  // node.debug("backend");
  res.sendHeader(200, [["content-type", "text/plain"]]);
  res.sendBody("hello world\n");
  res.finish();
});
// node.debug("listen backend")
backend.listen(BACKEND_PORT);

var proxy_client = new node.http.Client(BACKEND_PORT);
var proxy = new node.http.Server(function (req, res) {
  // node.debug("proxy req");
  var proxy_req = proxy_client.get(req.uri.path);
  proxy_req.finish(function(proxy_res) {
    res.sendHeader(proxy_res.statusCode, proxy_res.headers);
    proxy_res.onBody = function(chunk) { 
      res.sendBody(chunk);
    };
    proxy_res.onBodyComplete = function() {
      res.finish();
      // node.debug("proxy res");
    };
  });
});
// node.debug("listen proxy")
proxy.listen(PROXY_PORT);

var body = "";

function onLoad () {
  var client = new node.http.Client(PROXY_PORT);
  var req = client.get("/test");
  // node.debug("client req")
  req.finish(function (res) {
    // node.debug("got res");
    assertEquals(200, res.statusCode);
    res.setBodyEncoding("utf8");
    res.onBody = function (chunk) { body += chunk; };
    res.onBodyComplete = function () {
      proxy.close();
      backend.close();
      // node.debug("closed both");
    };
  });
}

function onExit () {
  assertEquals(body, "hello world\n");
}