summaryrefslogtreecommitdiff
path: root/src/test/ssl
diff options
context:
space:
mode:
authorMichael Paquier2020-02-06 23:10:40 +0000
committerMichael Paquier2020-02-06 23:10:40 +0000
commit414c2fd1e1c0ccd1af1cad046bef1264e3f4347f (patch)
tree15666167017bbc1dbe4b6b4a7e4aa06ab7f9e935 /src/test/ssl
parentfc7a5e9eaa2fa34b053ffe52e0e57f1fd6b1f939 (diff)
Revert "Add GUC checks for ssl_min_protocol_version and ssl_max_protocol_version"
This reverts commit 41aadee, as the GUC checks could run on older values with the new values used, and result in incorrect errors if both parameters are changed at the same time. Per complaint from Tom Lane. Discussion: https://postgr.es/m/27574.1581015893@sss.pgh.pa.us Backpatch-through: 12
Diffstat (limited to 'src/test/ssl')
-rw-r--r--src/test/ssl/t/001_ssltests.pl20
1 files changed, 1 insertions, 19 deletions
diff --git a/src/test/ssl/t/001_ssltests.pl b/src/test/ssl/t/001_ssltests.pl
index 6b57b16fab5..e740099aca8 100644
--- a/src/test/ssl/t/001_ssltests.pl
+++ b/src/test/ssl/t/001_ssltests.pl
@@ -13,7 +13,7 @@ use SSLServer;
if ($ENV{with_openssl} eq 'yes')
{
- plan tests => 93;
+ plan tests => 91;
}
else
{
@@ -97,24 +97,6 @@ command_ok(
'restart succeeds with password-protected key file');
$node->_update_pid(1);
-# Test compatibility of SSL protocols.
-# TLSv1.1 is lower than TLSv1.2, so it won't work.
-$node->append_conf(
- 'postgresql.conf',
- qq{ssl_min_protocol_version='TLSv1.2'
-ssl_max_protocol_version='TLSv1.1'});
-command_fails(
- [ 'pg_ctl', '-D', $node->data_dir, '-l', $node->logfile, 'restart' ],
- 'restart fails with incorrect SSL protocol bounds');
-# Go back to the defaults, this works.
-$node->append_conf(
- 'postgresql.conf',
- qq{ssl_min_protocol_version='TLSv1.2'
-ssl_max_protocol_version=''});
-command_ok(
- [ 'pg_ctl', '-D', $node->data_dir, '-l', $node->logfile, 'restart' ],
- 'restart succeeds with correct SSL protocol bounds');
-
### Run client-side tests.
###
### Test that libpq accepts/rejects the connection correctly, depending