diff options
author | Christian Breunig <christian@breunig.cc> | 2024-05-30 13:47:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 13:47:36 +0200 |
commit | 5978273c679b053dab2b878b476f0fd350a3e243 (patch) | |
tree | a47cae56d9671a5f7cbed2cc139339cd90e5fc9c /smoketest/scripts/cli/test_load-balancing_reverse-proxy.py | |
parent | 138be55a8e85bcaee8adfb298363c8afd16075ca (diff) | |
parent | 4b189a76c0a9a28504aab6715658840b929fc243 (diff) | |
download | vyos-1x-5978273c679b053dab2b878b476f0fd350a3e243.tar.gz vyos-1x-5978273c679b053dab2b878b476f0fd350a3e243.zip |
Merge pull request #3546 from c-po/haproxy
reverse-proxy: T6419: build full CA chain when verifying backend server
Diffstat (limited to 'smoketest/scripts/cli/test_load-balancing_reverse-proxy.py')
-rwxr-xr-x | smoketest/scripts/cli/test_load-balancing_reverse-proxy.py | 4 |
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) |