diff options
author | Nicolas Vollmar <nvo@scaling.ch> | 2024-04-17 11:14:11 +0200 |
---|---|---|
committer | Nicolas Vollmar <nvo@scaling.ch> | 2024-04-17 16:46:48 +0200 |
commit | 785616393557c4e3f616287de81b61a68ba177ac (patch) | |
tree | 657338fbc12549a3c6741ea2f61e549fd0784af8 /smoketest/scripts | |
parent | 24c997dee169f445548a61a62d1ae38311c3bd84 (diff) | |
download | vyos-1x-785616393557c4e3f616287de81b61a68ba177ac.tar.gz vyos-1x-785616393557c4e3f616287de81b61a68ba177ac.zip |
T6246: adds basic haproxy http-check configuration
Diffstat (limited to 'smoketest/scripts')
-rwxr-xr-x | smoketest/scripts/cli/test_load-balancing_reverse-proxy.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_load-balancing_reverse-proxy.py b/smoketest/scripts/cli/test_load-balancing_reverse-proxy.py index d21fc762b..8ccf2cf97 100755 --- a/smoketest/scripts/cli/test_load-balancing_reverse-proxy.py +++ b/smoketest/scripts/cli/test_load-balancing_reverse-proxy.py @@ -298,6 +298,21 @@ class TestLoadBalancingReverseProxy(VyOSUnitTestSHIM.TestCase): with self.assertRaises(ConfigSessionError) as e: self.cli_commit() + def test_05_lb_reverse_proxy_backend_http_check(self): + # Setup base + self.base_config() + + # Set http-check + self.cli_set(base_path + ['backend', 'bk-01', 'http-check', 'method', 'get']) + self.cli_set(base_path + ['backend', 'bk-01', 'http-check', 'uri', '/health']) + self.cli_set(base_path + ['backend', 'bk-01', 'http-check', 'expect', 'status 200']) + self.cli_commit() + + # Test http-check + config = read_file(HAPROXY_CONF) + self.assertIn('option httpchk', config) + self.assertIn('http-check send meth GET uri /health', config) + self.assertIn('http-check expect status 200', config) if __name__ == '__main__': unittest.main(verbosity=2) |