2010-07-16 02:47:25 +08:00
|
|
|
common = require("../common");
|
|
|
|
assert = common.assert
|
2009-11-01 02:02:30 +08:00
|
|
|
http = require("http");
|
2010-01-05 13:07:50 +08:00
|
|
|
url = require("url");
|
2009-06-09 16:28:59 +08:00
|
|
|
|
2010-05-27 08:59:55 +08:00
|
|
|
function p (x) {
|
2010-07-16 02:47:25 +08:00
|
|
|
common.error(common.inspect(x));
|
2010-05-27 08:59:55 +08:00
|
|
|
}
|
|
|
|
|
2009-06-09 16:28:59 +08:00
|
|
|
var responses_sent = 0;
|
|
|
|
var responses_recvd = 0;
|
|
|
|
var body0 = "";
|
|
|
|
var body1 = "";
|
|
|
|
|
2010-08-12 07:38:42 +08:00
|
|
|
var server = http.createServer(function (req, res) {
|
2009-08-27 00:22:00 +08:00
|
|
|
if (responses_sent == 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);
|
2009-08-23 18:20:25 +08:00
|
|
|
|
2010-08-17 23:21:43 +08:00
|
|
|
common.p(req.headers);
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal(true, "accept" in req.headers);
|
|
|
|
assert.equal("*/*", req.headers["accept"]);
|
2009-08-23 18:20:25 +08:00
|
|
|
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal(true, "foo" in req.headers);
|
|
|
|
assert.equal("bar", req.headers["foo"]);
|
2009-08-27 00:22:00 +08:00
|
|
|
}
|
2009-06-09 16:28:59 +08:00
|
|
|
|
2009-08-27 00:22:00 +08:00
|
|
|
if (responses_sent == 1) {
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal("POST", req.method);
|
2010-01-05 13:07:50 +08:00
|
|
|
assert.equal("/world", url.parse(req.url).pathname);
|
2009-08-27 00:22:00 +08:00
|
|
|
this.close();
|
|
|
|
}
|
2009-06-09 16:28:59 +08:00
|
|
|
|
2010-02-17 14:16:29 +08:00
|
|
|
req.addListener('end', 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("The path was " + url.parse(req.url).pathname);
|
2010-04-09 01:44:22 +08:00
|
|
|
res.end();
|
2009-08-27 00:22:00 +08:00
|
|
|
responses_sent += 1;
|
|
|
|
});
|
|
|
|
|
2009-11-29 01:26:59 +08:00
|
|
|
//assert.equal("127.0.0.1", res.connection.remoteAddress);
|
2009-08-27 00:22:00 +08:00
|
|
|
});
|
2010-08-12 07:38:42 +08:00
|
|
|
server.listen(common.PORT);
|
2009-06-09 16:28:59 +08:00
|
|
|
|
2010-08-12 07:38:42 +08:00
|
|
|
server.addListener("listening", function() {
|
|
|
|
var client = http.createClient(common.PORT);
|
|
|
|
var req = client.request("/hello", {"Accept": "*/*", "Foo": "bar"});
|
2010-06-21 02:54:51 +08:00
|
|
|
req.end();
|
2010-08-12 07:38:42 +08:00
|
|
|
req.addListener('response', function (res) {
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal(200, res.statusCode);
|
2009-06-09 16:28:59 +08:00
|
|
|
responses_recvd += 1;
|
2010-08-12 07:38:42 +08:00
|
|
|
res.setEncoding("utf8");
|
|
|
|
res.addListener('data', function (chunk) { body0 += chunk; });
|
|
|
|
common.debug("Got /hello response");
|
2009-06-09 16:28:59 +08:00
|
|
|
});
|
2010-08-12 07:38:42 +08:00
|
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
req = client.request("POST", "/world");
|
|
|
|
req.end();
|
|
|
|
req.addListener('response',function (res) {
|
|
|
|
assert.equal(200, res.statusCode);
|
|
|
|
responses_recvd += 1;
|
|
|
|
res.setEncoding("utf8");
|
|
|
|
res.addListener('data', function (chunk) { body1 += chunk; });
|
|
|
|
common.debug("Got /world response");
|
|
|
|
});
|
|
|
|
}, 1);
|
|
|
|
});
|
2009-06-09 16:28:59 +08:00
|
|
|
|
2009-08-27 00:51:04 +08:00
|
|
|
process.addListener("exit", function () {
|
2010-07-16 02:47:25 +08:00
|
|
|
common.debug("responses_recvd: " + responses_recvd);
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal(2, responses_recvd);
|
2009-06-29 01:05:58 +08:00
|
|
|
|
2010-07-16 02:47:25 +08:00
|
|
|
common.debug("responses_sent: " + responses_sent);
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal(2, responses_sent);
|
2009-06-29 01:05:58 +08:00
|
|
|
|
2009-11-29 01:26:59 +08:00
|
|
|
assert.equal("The path was /hello", body0);
|
|
|
|
assert.equal("The path was /world", body1);
|
2009-08-27 00:51:04 +08:00
|
|
|
});
|
2009-06-09 16:28:59 +08:00
|
|
|
|