mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 12:20:27 +01:00
test: update parallel/test-tls-dhe for OpenSSL 3.5
The output of the `s_client` command invoked by the test has changed in the OpenSSL 3.5.0 version of `s_client`. Update the test so that it works with both the old and new output -- the `s_client` binary being run may not be at the exact same version of OpenSSL as used by Node.js so the updated test allows either output. PR-URL: https://github.com/nodejs/node/pull/57477 Refs: https://github.com/openssl/openssl/pull/26734 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Xuguang Mei <meixuguang@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
parent
ab9660b55a
commit
fab6906c5d
|
|
@ -85,7 +85,10 @@ function test(dhparam, keylen, expectedCipher) {
|
|||
|
||||
execFile(opensslCli, args, common.mustSucceed((stdout) => {
|
||||
assert(keylen === null ||
|
||||
stdout.includes(`Server Temp Key: DH, ${keylen} bits`));
|
||||
// s_client < OpenSSL 3.5
|
||||
stdout.includes(`Server Temp Key: DH, ${keylen} bits`) ||
|
||||
// s_client >= OpenSSL 3.5
|
||||
stdout.includes(`Peer Temp Key: DH, ${keylen} bits`));
|
||||
assert(stdout.includes(`Cipher : ${expectedCipher}`));
|
||||
server.close();
|
||||
}));
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user