2010-07-16 02:47:25 +08:00
|
|
|
common = require("../common");
|
|
|
|
assert = common.assert
|
2010-03-19 05:01:17 +08:00
|
|
|
net = require("net");
|
2010-03-20 10:22:04 +08:00
|
|
|
http = require("http");
|
2010-01-05 13:07:50 +08:00
|
|
|
url = require("url");
|
|
|
|
qs = require("querystring");
|
2009-05-19 20:49:28 +08:00
|
|
|
|
2009-06-09 01:10:23 +08:00
|
|
|
var request_number = 0;
|
|
|
|
var requests_sent = 0;
|
|
|
|
var server_response = "";
|
|
|
|
var client_got_eof = false;
|
2009-05-19 20:49:28 +08:00
|
|
|
|
2009-09-28 18:36:36 +08:00
|
|
|
http.createServer(function (req, res) {
|
2009-08-27 00:22:00 +08:00
|
|
|
res.id = request_number;
|
|
|
|
req.id = request_number++;
|
|
|
|
|
|
|
|
if (req.id == 0) {
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal("GET", req.method);
|
2010-01-05 13:07:50 +08:00
|
|
|
assert.equal("/hello", url.parse(req.url).pathname);
|
|
|
|
assert.equal("world", qs.parse(url.parse(req.url).query).hello);
|
|
|
|
assert.equal("b==ar", qs.parse(url.parse(req.url).query).foo);
|
2009-08-27 00:22:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (req.id == 1) {
|
2010-07-16 02:47:25 +08:00
|
|
|
common.error("req 1");
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal("POST", req.method);
|
2010-01-05 13:07:50 +08:00
|
|
|
assert.equal("/quit", url.parse(req.url).pathname);
|
2009-12-02 13:38:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (req.id == 2) {
|
2010-07-16 02:47:25 +08:00
|
|
|
common.error("req 2");
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal("foo", req.headers['x-x']);
|
2009-12-02 13:38:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (req.id == 3) {
|
2010-07-16 02:47:25 +08:00
|
|
|
common.error("req 3");
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal("bar", req.headers['x-x']);
|
2009-08-27 00:22:00 +08:00
|
|
|
this.close();
|
2010-07-16 02:47:25 +08:00
|
|
|
common.error("server closed");
|
2009-08-27 00:22:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
setTimeout(function () {
|
2010-02-26 04:54:48 +08:00
|
|
|
res.writeHead(200, {"Content-Type": "text/plain"});
|
2010-02-17 14:16:29 +08:00
|
|
|
res.write(url.parse(req.url).pathname);
|
2010-04-09 01:44:22 +08:00
|
|
|
res.end();
|
2009-08-27 00:22:00 +08:00
|
|
|
}, 1);
|
|
|
|
|
2010-07-16 02:47:25 +08:00
|
|
|
}).listen(common.PORT);
|
2009-08-27 00:22:00 +08:00
|
|
|
|
2010-07-16 02:47:25 +08:00
|
|
|
var c = net.createConnection(common.PORT);
|
2009-08-27 00:22:00 +08:00
|
|
|
|
|
|
|
c.setEncoding("utf8");
|
|
|
|
|
|
|
|
c.addListener("connect", function () {
|
2010-02-17 05:15:30 +08:00
|
|
|
c.write( "GET /hello?hello=world&foo=b==ar HTTP/1.1\r\n\r\n" );
|
2009-08-27 00:22:00 +08:00
|
|
|
requests_sent += 1;
|
|
|
|
});
|
|
|
|
|
2010-02-12 16:25:15 +08:00
|
|
|
c.addListener("data", function (chunk) {
|
2009-08-27 00:22:00 +08:00
|
|
|
server_response += chunk;
|
|
|
|
|
|
|
|
if (requests_sent == 1) {
|
2010-02-17 05:15:30 +08:00
|
|
|
c.write("POST /quit HTTP/1.1\r\n\r\n");
|
2009-12-02 13:38:42 +08:00
|
|
|
requests_sent += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (requests_sent == 2) {
|
2010-02-17 05:15:30 +08:00
|
|
|
c.write("GET / HTTP/1.1\r\nX-X: foo\r\n\r\n"
|
|
|
|
+"GET / HTTP/1.1\r\nX-X: bar\r\n\r\n");
|
2010-04-09 01:44:22 +08:00
|
|
|
c.end();
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal(c.readyState, "readOnly");
|
2009-12-02 13:38:42 +08:00
|
|
|
requests_sent += 2;
|
2009-08-27 00:22:00 +08:00
|
|
|
}
|
2009-12-02 13:38:42 +08:00
|
|
|
|
2009-08-27 00:22:00 +08:00
|
|
|
});
|
2009-06-30 19:56:52 +08:00
|
|
|
|
2010-02-12 16:25:15 +08:00
|
|
|
c.addListener("end", function () {
|
2009-08-27 00:22:00 +08:00
|
|
|
client_got_eof = true;
|
|
|
|
});
|
2009-06-30 19:56:52 +08:00
|
|
|
|
2009-08-27 00:22:00 +08:00
|
|
|
c.addListener("close", function () {
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal(c.readyState, "closed");
|
2009-08-27 00:22:00 +08:00
|
|
|
});
|
2009-06-09 01:10:23 +08:00
|
|
|
|
2009-08-27 00:51:04 +08:00
|
|
|
process.addListener("exit", function () {
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal(4, request_number);
|
|
|
|
assert.equal(4, requests_sent);
|
2009-06-09 01:10:23 +08:00
|
|
|
|
|
|
|
var hello = new RegExp("/hello");
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal(true, hello.exec(server_response) != null);
|
2009-06-09 01:10:23 +08:00
|
|
|
|
|
|
|
var quit = new RegExp("/quit");
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal(true, quit.exec(server_response) != null);
|
2009-06-09 01:10:23 +08:00
|
|
|
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal(true, client_got_eof);
|
2009-08-27 00:51:04 +08:00
|
|
|
});
|