summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_load-balancing_reverse-proxy.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-05-30 14:18:12 +0200
committerGitHub <noreply@github.com>2024-05-30 14:18:12 +0200
commit94ee1d8f1f7f0c539c64f3f1e72e8fa8040a5a97 (patch)
treecad6b5cdeadfbbcfb986f4532dfd1ae24946a349 /smoketest/scripts/cli/test_load-balancing_reverse-proxy.py
parent8facd624f778742426563916ffb362a1271b33c1 (diff)
parent5cfca2850ddbd9e2b594de1250d0064c1461ab59 (diff)
downloadvyos-1x-94ee1d8f1f7f0c539c64f3f1e72e8fa8040a5a97.tar.gz
vyos-1x-94ee1d8f1f7f0c539c64f3f1e72e8fa8040a5a97.zip
Merge pull request #3555 from vyos/mergify/bp/sagitta/pr-3546
reverse-proxy: T6419: build full CA chain when verifying backend server (backport #3546)
Diffstat (limited to 'smoketest/scripts/cli/test_load-balancing_reverse-proxy.py')
-rwxr-xr-xsmoketest/scripts/cli/test_load-balancing_reverse-proxy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_load-balancing_reverse-proxy.py b/smoketest/scripts/cli/test_load-balancing_reverse-proxy.py
index 370a9276a..2b2f93cdf 100755
--- a/smoketest/scripts/cli/test_load-balancing_reverse-proxy.py
+++ b/smoketest/scripts/cli/test_load-balancing_reverse-proxy.py
@@ -218,7 +218,7 @@ class TestLoadBalancingReverseProxy(VyOSUnitTestSHIM.TestCase):
# Frontend
self.assertIn(f'frontend {frontend}', config)
- self.assertIn(f'bind :::{front_port} v4v6', config)
+ self.assertIn(f'bind [::]:{front_port} v4v6', config)
self.assertIn(f'mode {mode}', config)
for domain in domains_bk_first:
self.assertIn(f'acl {rule_ten} hdr(host) -i {domain}', config)
@@ -371,7 +371,7 @@ class TestLoadBalancingReverseProxy(VyOSUnitTestSHIM.TestCase):
# Frontend
self.assertIn(f'frontend {frontend}', config)
- self.assertIn(f'bind :::{front_port} v4v6', config)
+ self.assertIn(f'bind [::]:{front_port} v4v6', config)
self.assertIn(f'mode {mode}', config)
self.assertIn(f'tcp-request inspect-delay {tcp_request_delay}', config)