diff options
| author | Kim <kim.sidney@gmail.com> | 2021-10-07 16:52:56 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-07 16:52:56 +0200 | 
| commit | 2274dbf9047493a00a6f30346b38dacd8cfcf965 (patch) | |
| tree | f431f5f6f1b2770c98ed9047e1cec9209e536366 /smoketest/scripts/cli/test_service_webproxy.py | |
| parent | 2acfffab8b98238e7d869673a858a4ae21651f0b (diff) | |
| parent | adc7ef387d40e92bd7163ee6b401e99e554394a3 (diff) | |
| download | vyos-1x-2274dbf9047493a00a6f30346b38dacd8cfcf965.tar.gz vyos-1x-2274dbf9047493a00a6f30346b38dacd8cfcf965.zip | |
Merge branch 'current' into 2fa
Diffstat (limited to 'smoketest/scripts/cli/test_service_webproxy.py')
| -rwxr-xr-x | smoketest/scripts/cli/test_service_webproxy.py | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/smoketest/scripts/cli/test_service_webproxy.py b/smoketest/scripts/cli/test_service_webproxy.py index d47bd452d..6780a93f9 100755 --- a/smoketest/scripts/cli/test_service_webproxy.py +++ b/smoketest/scripts/cli/test_service_webproxy.py @@ -52,8 +52,6 @@ class TestServiceWebProxy(VyOSUnitTestSHIM.TestCase):          self.assertIn(f'access_log /var/log/squid/access.log squid', config)          # ACL verification -        self.assertIn(f'acl localhost src 127.0.0.1/32', config) -        self.assertIn(f'acl to_localhost dst 127.0.0.0/8', config)          self.assertIn(f'acl net src all', config)          self.assertIn(f'acl SSL_ports port 443', config) @@ -234,8 +232,8 @@ class TestServiceWebProxy(VyOSUnitTestSHIM.TestCase):          config = read_file(PROXY_CONF)          self.assertIn(f'http_port {listen_ip}:3128 intercept', config) -        self.assertIn(f'redirect_program /usr/bin/squidGuard -c /etc/squidguard/squidGuard.conf', config) -        self.assertIn(f'redirect_children 8', config) +        self.assertIn(f'url_rewrite_program /usr/bin/squidGuard -c /etc/squidguard/squidGuard.conf', config) +        self.assertIn(f'url_rewrite_children 8', config)          # Check SquidGuard config          sg_config = read_file('/etc/squidguard/squidGuard.conf') | 
