diff options
Diffstat (limited to 'tests/vendor_tests')
-rw-r--r-- | tests/vendor_tests/redhat/rhbz1950350.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/vendor_tests/redhat/rhbz1950350.py b/tests/vendor_tests/redhat/rhbz1950350.py new file mode 100644 index 00000000..9eab2914 --- /dev/null +++ b/tests/vendor_tests/redhat/rhbz1950350.py @@ -0,0 +1,35 @@ +# This file is part of the sos project: https://github.com/sosreport/sos +# +# This copyrighted material is made available to anyone wishing to use, +# modify, copy, or redistribute it subject to the terms and conditions of +# version 2 of the GNU General Public License. +# +# See the LICENSE file in the source distribution for further information. + + +from sos_tests import StageTwoReportTest + + +class rhbz1950350(StageTwoReportTest): + """Ensure that when `--clean` is used with report that the config settings + from sos.conf under the [clean] section are loaded as well + + :avocado: tags=stagetwo + """ + + files = ['/etc/sos/sos.conf', '/etc/sos/extras.d/sos_clean_config.conf', + '/var/log/clean_config_test.txt'] + + sos_cmd = '-v -o sos_extras --clean' + + def test_clean_config_loaded(self): + self.assertSosLogContains("effective options now: (.*)? --clean --domains (.*)? --keywords (.*)?") + + def test_clean_config_performed(self): + self.assertFileCollected('var/log/clean_config_test.txt') + self.assertFileHasContent('var/log/clean_config_test.txt', 'The domain example.com should not be removed.') + self.assertFileNotHasContent( + 'var/log/clean_config_test.txt', + "This line contains 'shibboleth' which should be scrubbed." + ) + self.assertFileNotHasContent('var/log/clean_config_test.txt', 'sosexample.com') |