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.
47 lines
1.0 KiB
47 lines
1.0 KiB
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
var fs = require('fs');
|
|
var util = require('util');
|
|
var path = require('path');
|
|
var fn = path.join(common.fixturesDir, 'does_not_exist.txt');
|
|
|
|
var got_error = false;
|
|
var conn_closed = false;
|
|
|
|
var server = net.createServer(function(stream) {
|
|
util.pump(fs.createReadStream(fn), stream, function(err) {
|
|
if (err) {
|
|
got_error = true;
|
|
} else {
|
|
// util.pump's callback fired with no error
|
|
// this shouldn't happen as the file doesn't exist...
|
|
assert.equal(true, false);
|
|
}
|
|
server.close();
|
|
});
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
var conn = net.createConnection(common.PORT);
|
|
conn.setEncoding('utf8');
|
|
conn.on('data', function(chunk) {
|
|
buffer += chunk;
|
|
});
|
|
|
|
conn.on('end', function() {
|
|
conn.end();
|
|
});
|
|
|
|
conn.on('close', function() {
|
|
conn_closed = true;
|
|
});
|
|
});
|
|
|
|
var buffer = '';
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(true, got_error);
|
|
assert.equal(true, conn_closed);
|
|
});
|
|
|