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

43 lines
1.0 KiB
JavaScript
Raw Normal View History

require("../common");
http = require("http");
2009-06-17 14:01:28 +08:00
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");
2010-02-26 04:54:48 +08:00
res.writeHead(200, [
2009-06-17 14:01:28 +08:00
["Content-Length", body.length],
["Content-Type", "text/plain"]
]);
2010-04-06 07:50:05 +08:00
res.close(body);
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;
server.addListener('listening', function () {
http.cat("http://localhost:"+PORT+"/", "utf8", function (err, content) {
if (err) {
throw err;
} else {
puts("got response");
got_good_server_content = true;
assert.equal(body, content);
server.close();
}
});
2009-08-27 00:22:00 +08:00
http.cat("http://localhost:12312/", "utf8", function (err, content) {
if (err) {
puts("got error (this should happen)");
bad_server_got_error = true;
}
});
2009-08-27 00:22:00 +08:00
});
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);
});