mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.1 KiB
51 lines
1.1 KiB
process.mixin(require("../common.js"));
|
|
http = require("/http.js");
|
|
|
|
puts("hello world");
|
|
|
|
var body = "exports.A = function() { return 'A';}";
|
|
var server = http.createServer(function (req, res) {
|
|
puts("req?");
|
|
res.sendHeader(200, {
|
|
"Content-Length": body.length,
|
|
"Content-Type": "text/plain"
|
|
});
|
|
res.sendBody(body);
|
|
res.finish();
|
|
});
|
|
server.listen(PORT);
|
|
|
|
var errors = 0;
|
|
var successes = 0;
|
|
|
|
var promise = process.cat("http://localhost:"+PORT, "utf8");
|
|
|
|
promise.addCallback(function (content) {
|
|
assert.equal(body, content);
|
|
server.close();
|
|
successes += 1;
|
|
});
|
|
|
|
promise.addErrback(function () {
|
|
errors += 1;
|
|
});
|
|
|
|
var dirname = process.path.dirname(__filename);
|
|
var fixtures = process.path.join(dirname, "fixtures");
|
|
var x = process.path.join(fixtures, "x.txt");
|
|
|
|
promise = process.cat(x, "utf8");
|
|
|
|
promise.addCallback(function (content) {
|
|
assert.equal("xyz", content.replace(/[\r\n]/, ''));
|
|
successes += 1;
|
|
});
|
|
|
|
promise.addErrback(function () {
|
|
errors += 1;
|
|
});
|
|
|
|
process.addListener("exit", function () {
|
|
assert.equal(2, successes);
|
|
assert.equal(0, errors);
|
|
});
|
|
|