node/test/mjsunit/test-http-cat.js

37 lines
900 B
JavaScript
Raw Normal View History

2009-06-17 14:01:28 +08:00
include("mjsunit.js");
PORT = 8888;
var body = "exports.A = function() { return 'A';}";
var server = node.http.createServer(function (req, res) {
puts("got request");
2009-06-17 14:01:28 +08:00
res.sendHeader(200, [
["Content-Length", body.length],
["Content-Type", "text/plain"]
]);
res.sendBody(body);
res.finish();
2009-06-17 14:52:47 +08:00
});
server.listen(PORT);
2009-06-17 14:01:28 +08:00
2009-06-29 01:05:58 +08:00
var got_good_server_content = false;
var bad_server_got_error = false;
2009-06-29 02:11:55 +08:00
function onLoad () {
2009-07-01 06:49:56 +08:00
node.http.cat("http://localhost:"+PORT+"/", "utf8").addCallback(function (content) {
puts("got response");
got_good_server_content = true;
assertEquals(body, content);
server.close();
});
2009-07-01 06:49:56 +08:00
node.http.cat("http://localhost:12312/", "utf8").addErrback(function () {
puts("got error (this should happen)");
bad_server_got_error = true;
});
2009-06-29 01:05:58 +08:00
}
2009-06-21 22:59:11 +08:00
2009-06-29 01:05:58 +08:00
function onExit () {
assertTrue(got_good_server_content);
assertTrue(bad_server_got_error);
2009-06-17 14:01:28 +08:00
}