node/test/test-http-cat.js

27 lines
642 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';}";
2009-06-17 14:52:47 +08:00
var server = new node.http.Server(function (req, res) {
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
function onLoad() {
2009-06-17 14:52:47 +08:00
node.http.cat("http://localhost:"+PORT, "utf8", function(status, content) {
assertEquals(body, content);
2009-06-21 22:59:11 +08:00
assertEquals(0, status)
2009-06-17 14:52:47 +08:00
server.close()
})
2009-06-21 22:59:11 +08:00
node.http.cat("http://localhost:"+PORT+1, "utf8", function(status, content) {
assertEquals(-1, status)
assertEquals(nil, content)
})
2009-06-17 14:01:28 +08:00
}