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.

90 lines
2.0 KiB

node.mixin(require("common.js"));
tcp = require("/tcp.js");
http = require("/http.js");
var port = 8222;
var request_number = 0;
var requests_sent = 0;
var server_response = "";
var client_got_eof = false;
http.createServer(function (req, res) {
15 years ago
res.id = request_number;
req.id = request_number++;
puts("server got request " + req.id);
req.addListener("complete", function () {
puts("request complete " + req.id);
});
15 years ago
if (req.id == 0) {
assertEquals("GET", req.method);
assertEquals("/hello", req.uri.path);
assertEquals("world", req.uri.params["hello"]);
assertEquals("b==ar", req.uri.params["foo"]);
15 years ago
}
if (req.id == 1) {
assertEquals("POST", req.method);
assertEquals("/quit", req.uri.path);
this.close();
puts("server closed");
15 years ago
}
setTimeout(function () {
puts("send response " + req.id);
15 years ago
res.sendHeader(200, {"Content-Type": "text/plain"});
res.sendBody(req.uri.path);
res.finish();
}, 1);
}).listen(port);
var c = tcp.createConnection(port);
15 years ago
c.setEncoding("utf8");
c.addListener("connect", function () {
puts("client connected. sending first request");
c.send("GET /hello?hello=world&foo=b==ar HTTP/1.1\r\n\r\n" );
15 years ago
requests_sent += 1;
});
c.addListener("receive", function (chunk) {
server_response += chunk;
if (requests_sent == 1) {
puts("send request 2");
15 years ago
c.send("POST /quit HTTP/1.1\r\n\r\n");
puts("close client");
15 years ago
c.close();
assertEquals(c.readyState, "readOnly");
requests_sent += 1;
}
});
15 years ago
c.addListener("eof", function () {
puts("client got eof");
15 years ago
client_got_eof = true;
});
15 years ago
c.addListener("close", function () {
puts("client closed");
15 years ago
assertEquals(c.readyState, "closed");
});
process.addListener("exit", function () {
assertEquals(2, request_number);
assertEquals(2, requests_sent);
var hello = new RegExp("/hello");
assertTrue(hello.exec(server_response) != null);
var quit = new RegExp("/quit");
assertTrue(quit.exec(server_response) != null);
assertTrue(client_got_eof);
});