0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/test-http-cat.js

22 lines
498 B
JavaScript
Raw Normal View History

2009-06-17 08:01:28 +02:00
include("mjsunit.js");
PORT = 8888;
var body = "exports.A = function() { return 'A';}";
2009-06-17 08:52:47 +02:00
var server = new node.http.Server(function (req, res) {
2009-06-17 08:01:28 +02:00
res.sendHeader(200, [
["Content-Length", body.length],
["Content-Type", "text/plain"]
]);
res.sendBody(body);
res.finish();
2009-06-17 08:52:47 +02:00
});
server.listen(PORT);
2009-06-17 08:01:28 +02:00
function onLoad() {
2009-06-17 08:52:47 +02:00
node.http.cat("http://localhost:"+PORT, "utf8", function(status, content) {
assertEquals(body, content);
assertEquals(200, status)
server.close()
})
2009-06-17 08:01:28 +02:00
}