mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 12:03:30 +00:00

Export a new common.noop no-operation function for general use. Allow using common.mustCall() without a fn argument to simplify test cases. Replace various non-op functions throughout tests with common.noop PR-URL: https://github.com/nodejs/node/pull/12027 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
38 lines
893 B
JavaScript
38 lines
893 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
const tls = require('tls');
|
|
const fs = require('fs');
|
|
const net = require('net');
|
|
|
|
const bonkers = Buffer.alloc(1024, 42);
|
|
|
|
const options = {
|
|
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
|
|
};
|
|
|
|
const server = net.createServer(common.mustCall(function(c) {
|
|
setTimeout(common.mustCall(function() {
|
|
const s = new tls.TLSSocket(c, {
|
|
isServer: true,
|
|
secureContext: tls.createSecureContext(options)
|
|
});
|
|
|
|
s.on('_tlsError', common.mustCall());
|
|
|
|
s.on('close', function() {
|
|
server.close();
|
|
s.destroy();
|
|
});
|
|
}), 200);
|
|
})).listen(0, function() {
|
|
const c = net.connect({port: this.address().port}, function() {
|
|
c.write(bonkers);
|
|
});
|
|
});
|