PR-URL: https://github.com/nodejs/node/pull/60879 Refs: https://github.com/nodejs/node/pull/60832 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
34 lines
832 B
JavaScript
34 lines
832 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
}
|
|
|
|
const { hasOpenSSL } = require('../common/crypto');
|
|
|
|
const assert = require('assert');
|
|
const https = require('https');
|
|
const net = require('net');
|
|
|
|
const server = net.createServer(function(s) {
|
|
s.once('data', function() {
|
|
s.end('I was waiting for you, hello!', function() {
|
|
s.destroy();
|
|
});
|
|
});
|
|
});
|
|
|
|
server.listen(0, function() {
|
|
const req = https.request({ port: this.address().port });
|
|
req.end();
|
|
|
|
let expectedErrorMessage = new RegExp('wrong version number');
|
|
if (hasOpenSSL(3, 2)) {
|
|
expectedErrorMessage = new RegExp('packet length too long');
|
|
};
|
|
req.once('error', common.mustCall(function(err) {
|
|
assert.match(err.message, expectedErrorMessage);
|
|
server.close();
|
|
}));
|
|
});
|