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.

70 lines
1.8 KiB

include("mjsunit.js");
PORT = 8888;
var responses_sent = 0;
var responses_recvd = 0;
var body0 = "";
var body1 = "";
15 years ago
node.http.createServer(function (req, res) {
if (responses_sent == 0) {
assertEquals("GET", req.method);
assertEquals("/hello", req.uri.path);
15 years ago
p(req.headers);
assertTrue("Accept" in req.headers);
assertEquals("*/*", req.headers["Accept"]);
15 years ago
assertTrue("Foo" in req.headers);
assertEquals("bar", req.headers["Foo"]);
}
15 years ago
if (responses_sent == 1) {
assertEquals("POST", req.method);
assertEquals("/world", req.uri.path);
this.close();
}
15 years ago
req.addListener("complete", function () {
res.sendHeader(200, {"Content-Type": "text/plain"});
res.sendBody("The path was " + req.uri.path);
res.finish();
responses_sent += 1;
});
//assertEquals("127.0.0.1", res.connection.remoteAddress);
}).listen(PORT);
15 years ago
var client = node.http.createClient(PORT);
var req = client.get("/hello", {"Accept": "*/*", "Foo": "bar"});
req.finish(function (res) {
assertEquals(200, res.statusCode);
responses_recvd += 1;
res.setBodyEncoding("ascii");
res.addListener("body", function (chunk) { body0 += chunk; });
node.debug("Got /hello response");
});
15 years ago
setTimeout(function () {
req = client.post("/world");
req.finish(function (res) {
assertEquals(200, res.statusCode);
responses_recvd += 1;
15 years ago
res.setBodyEncoding("utf8");
res.addListener("body", function (chunk) { body1 += chunk; });
node.debug("Got /world response");
});
15 years ago
}, 1);
process.addListener("exit", function () {
node.debug("responses_recvd: " + responses_recvd);
assertEquals(2, responses_recvd);
node.debug("responses_sent: " + responses_sent);
assertEquals(2, responses_sent);
assertEquals("The path was /hello", body0);
assertEquals("The path was /world", body1);
});