diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-02-25 21:47:26 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-02-25 21:47:26 +0100 |
commit | 15eff1682613ad20f83c46fded866b132a1fb814 (patch) | |
tree | 76177fa4afcfed7f3be49c04f4b2f17b55c40cf5 /smoketest | |
parent | faa63999ca1fe11cc25e8a241e75a451a53ffa26 (diff) | |
download | vyos-1x-15eff1682613ad20f83c46fded866b132a1fb814.tar.gz vyos-1x-15eff1682613ad20f83c46fded866b132a1fb814.zip |
smoketest: webproxy: use setUpClass() over setUp()
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_service_webproxy.py | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/smoketest/scripts/cli/test_service_webproxy.py b/smoketest/scripts/cli/test_service_webproxy.py index 8a1a03ce7..ebbd9fe55 100755 --- a/smoketest/scripts/cli/test_service_webproxy.py +++ b/smoketest/scripts/cli/test_service_webproxy.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2020 VyOS maintainers and contributors +# Copyright (C) 2020-2022 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -30,11 +30,19 @@ listen_if = 'dum3632' listen_ip = '192.0.2.1' class TestServiceWebProxy(VyOSUnitTestSHIM.TestCase): - def setUp(self): - self.cli_set(['interfaces', 'dummy', listen_if, 'address', listen_ip + '/32']) + @classmethod + def setUpClass(cls): + # call base-classes classmethod + super(cls, cls).setUpClass() + # create a test interfaces + cls.cli_set(cls, ['interfaces', 'dummy', listen_if, 'address', listen_ip + '/32']) + + @classmethod + def tearDownClass(cls): + cls.cli_delete(cls, ['interfaces', 'dummy', listen_if]) + super().tearDownClass() def tearDown(self): - self.cli_delete(['interfaces', 'dummy', listen_if]) self.cli_delete(base_path) self.cli_commit() |