Skip to content

Commit

Permalink
test: clean up tls junk test
Browse files Browse the repository at this point in the history
PR-URL: #9940
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
dguo authored and MylesBorins committed Dec 20, 2016
1 parent e371233 commit b9c4502
Showing 1 changed file with 13 additions and 17 deletions.
30 changes: 13 additions & 17 deletions test/parallel/test-tls-junk-closes-server.js
Original file line number Diff line number Diff line change
@@ -1,34 +1,30 @@
'use strict';
var common = require('../common');
const common = require('../common');

if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
var tls = require('tls');

var fs = require('fs');
var net = require('net');
const tls = require('tls');
const fs = require('fs');
const net = require('net');

var options = {
const options = {
key: fs.readFileSync(common.fixturesDir + '/keys/agent2-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent2-cert.pem')
};

var server = tls.createServer(options, function(s) {
s.write('welcome!\n');
s.pipe(s);
});
const server = tls.createServer(options, common.fail);

server.listen(0, function() {
var c = net.createConnection(this.address().port);
server.listen(0, common.mustCall(function() {
const c = net.createConnection(this.address().port);

c.on('connect', function() {
c.on('connect', common.mustCall(function() {
c.write('blah\nblah\nblah\n');
});
}));

c.on('end', function() {
c.on('end', common.mustCall(function() {
server.close();
});

});
}));
}));

0 comments on commit b9c4502

Please sign in to comment.