REGTESTS: ssl: fix ssl_default_server.vtc
authorWilliam Lallemand <wlallemand@haproxy.org>
Wed, 29 Dec 2021 17:16:27 +0000 (18:16 +0100)
committerWilly Tarreau <w@1wt.eu>
Thu, 30 Dec 2021 09:51:16 +0000 (10:51 +0100)
Patch 2c776f1 ("BUG/MEDIUM: ssl: initialize correctly ssl w/
default-server") added tests that are not relevant anymore and broke the
reg-test. revert them.

(cherry picked from commit 0387632ac0db520402550cf19a96d41f8c1661de)
Signed-off-by: Willy Tarreau <w@1wt.eu>

reg-tests/ssl/ssl_default_server.vtc

index d5ff73e..485a9ba 100644 (file)
@@ -15,7 +15,7 @@ feature cmd "$HAPROXY_PROGRAM -cc 'version_atleast(2.5-dev0)'"
 feature cmd "$HAPROXY_PROGRAM -cc 'feature(OPENSSL)'"
 feature ignore_unknown_macro
 
-server s1 -repeat 10 {
+server s1 -repeat 7 {
   rxreq
   txresp
 } -start
@@ -56,10 +56,7 @@ haproxy h1 -conf {
 
     backend third_be
         default-server ssl crt client1.pem ca-file ca-auth.crt verify none
-        server s1 "${tmpdir}/ssl.sock"
-        server s2 "${tmpdir}/ssl.sock" crt client2_expired.pem
-        server s3 "${tmpdir}/ssl.sock"
-        server s4 "${tmpdir}/ssl.sock"
+        server s1 "${tmpdir}/ssl.sock" crt client2_expired.pem
 
     backend fourth_be
         default-server ssl crt client1.pem verify none
@@ -109,25 +106,9 @@ client c1 -connect ${h1_clearlst_sock} {
     txreq
     rxresp
     expect resp.status == 200
-    expect resp.http.x-ssl == "Ok"
-} -run
-
-client c1 -connect ${h1_clearlst_sock} {
-    txreq -url "/third"
-    txreq
-    rxresp
-    expect resp.status == 200
     expect resp.http.x-ssl == "Expired"
 } -run
 
-client c1 -connect ${h1_clearlst_sock} -repeat 2 {
-    txreq -url "/third"
-    txreq
-    rxresp
-    expect resp.status == 200
-    expect resp.http.x-ssl == "Ok"
-} -run
-
 client c1 -connect ${h1_clearlst_sock} {
     txreq -url "/fourth"
     txreq