0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/test/simple/test-http-chunked.js

18 lines
446 B
JavaScript
Raw Normal View History

2010-02-25 07:36:17 +01:00
process.mixin(require("../common"));
var http = require("http");
var UTF8_STRING = "Il était tué";
var server = http.createServer(function(req, res) {
2010-02-25 21:54:48 +01:00
res.writeHead(200, {"Content-Type": "text/plain; charset=utf8"});
res.write(UTF8_STRING, 'utf8');
res.close();
});
server.listen(PORT);
2010-02-20 01:26:48 +01:00
http.cat("http://localhost:"+PORT+"/", "utf8", function (err, data) {
if (err) throw err;
assert.equal(UTF8_STRING, data);
server.close();
})