0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/test/test-node-cat.js

29 lines
752 B
JavaScript
Raw Normal View History

2009-06-21 16:40:08 +02:00
include("mjsunit.js");
PORT = 8888;
var body = "exports.A = function() { return 'A';}";
var server = new node.http.Server(function (req, res) {
res.sendHeader(200, [
["Content-Length", body.length],
["Content-Type", "text/plain"]
]);
res.sendBody(body);
res.finish();
});
server.listen(PORT);
function onLoad() {
node.cat("http://localhost:"+PORT, "utf8", function(status, content) {
assertEquals(body, content);
assertEquals(200, status)
server.close()
})
var dirname = node.path.dirname(__filename);
var fixtures = node.path.join(dirname, "fixtures");
var x = node.path.join(fixtures, "x.txt");
node.cat(x, "utf8", function(status, content) {
assertEquals("xyz", content.replace(/[\r\n]/, ''))
})
}