0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/disabled/test-cat.js
Oleg Efimov 093dfaf801 GJSLint all tests, only 3 long lines left in test-url.js
test/simple/test-url.js:31:(0110) Line too long (82 characters).
test/simple/test-url.js:39:(0110) Line too long (85 characters).
test/simple/test-url.js:40:(0110) Line too long (92 characters).
2010-12-05 15:42:41 -08:00

53 lines
1.1 KiB
JavaScript

var common = require('../common.js');
var assert = require('assert');
var http = require('http');
console.log('hello world');
var body = 'exports.A = function() { return "A";}';
var server = http.createServer(function(req, res) {
console.log('req?');
res.sendHeader(200, {
'Content-Length': body.length,
'Content-Type': 'text/plain'
});
res.sendBody(body);
res.finish();
});
server.listen(common.PORT);
var errors = 0;
var successes = 0;
var promise = process.cat('http://localhost:' + common.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);
});