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

test-http_simple.js - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e3bbb3cad8a711420fc44c6a11470fb87d45c87 (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
fixed = ""
for (var i = 0; i < 20*1024; i++) {
  fixed += "C";
}
stored = {};
new node.http.Server(function (req, res) {
  var commands = req.uri.path.split("/");
  var command = commands[1];
  var body = "";
  var arg = commands[2];
  var status = 200;

  //p(req.headers);

  if (command == "bytes") {
    var n = parseInt(arg, 10)
    if (n <= 0)
      throw "bytes called with n <= 0" 
    if (stored[n] === undefined) {
      puts("create stored[n]");
      stored[n] = "";
      for (var i = 0; i < n; i++) {
        stored[n] += "C"
      }
    }
    body = stored[n];

  } else if (command == "quit") {
    res.connection.server.close();
    body = "quitting";

  } else if (command == "fixed") {
    body = fixed;

  } else {
    status = 404;
    body = "not found\n";
  }

  var content_length = body.length.toString();

  res.sendHeader( status 
                , [ ["Content-Type", "text/plain"]
                  , ["Content-Length", content_length]
                  ]
                );
  res.sendBody(body);
          
  res.finish();
}).listen(8000);