mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 05:21:19 +00:00

The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
41 lines
903 B
JavaScript
41 lines
903 B
JavaScript
var common = require('../common');
|
|
var tls = require('tls');
|
|
var net = require('net');
|
|
var fs = require('fs');
|
|
var assert = require('assert');
|
|
|
|
var options = {
|
|
key: fs.readFileSync(common.fixturesDir + '/test_key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/test_cert.pem')
|
|
};
|
|
|
|
var bonkers = new Buffer(1024 * 1024);
|
|
bonkers.fill(42);
|
|
|
|
var server = tls.createServer(options, function(c) {
|
|
|
|
}).listen(common.PORT, function() {
|
|
var client = net.connect(common.PORT, function() {
|
|
client.write(bonkers);
|
|
});
|
|
|
|
var once = false;
|
|
|
|
var writeAgain = setTimeout(function() {
|
|
client.write(bonkers);
|
|
});
|
|
|
|
client.on('error', function(err) {
|
|
if (!once) {
|
|
clearTimeout(writeAgain);
|
|
once = true;
|
|
client.destroy();
|
|
server.close();
|
|
}
|
|
});
|
|
|
|
client.on('close', function (hadError) {
|
|
assert.strictEqual(hadError, true, 'Client never errored');
|
|
});
|
|
});
|