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

37 lines
932 B
JavaScript
Raw Normal View History

process.mixin(require("./common"));
http = require("http");
2009-06-17 14:01:28 +08:00
PORT = 8888;
var body = "exports.A = function() { return 'A';}";
2009-09-28 18:36:36 +08:00
var server = 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-09-28 18:36:36 +08:00
http.cat("http://localhost:"+PORT+"/", "utf8").addCallback(function (content) {
2009-08-27 00:22:00 +08:00
puts("got response");
got_good_server_content = true;
assert.equal(body, content);
2009-08-27 00:22:00 +08:00
server.close();
});
2009-09-28 18:36:36 +08:00
http.cat("http://localhost:12312/", "utf8").addErrback(function () {
2009-08-27 00:22:00 +08:00
puts("got error (this should happen)");
bad_server_got_error = true;
});
2009-06-21 22:59:11 +08:00
process.addListener("exit", function () {
2009-09-28 18:36:36 +08:00
puts("exit");
assert.equal(true, got_good_server_content);
assert.equal(true, bad_server_got_error);
});