diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2021-08-10 10:41:59 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2021-08-11 09:24:58 -0400 |
commit | f054370e99dd9fe9ab83dacda16ab0efaecbf865 (patch) | |
tree | e2ba905dd29806b177315d403936faf1b4a129f4 /tests | |
parent | 8793ff269d6acc0bf2f12ea98a72dc60a8b5ab77 (diff) | |
download | sos-f054370e99dd9fe9ab83dacda16ab0efaecbf865.tar.gz |
[sos] Read config section for clean when `--clean` is used
When a `report` or `collect` run would use `--clean` or `--mask` to do
in-line obfuscation of collected reports, sos would not read the config
section for clean - it would only be read if `sos clean` was called
directly. As such, users would need to manually specify config file
values for each run.
Alleviate this gap by reading the config section for `clean` if either
of the cleaner options are used. Do this before we apply cmdline options
so that we maintain our order of precedence.
Related: RHBZ#1950350
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_data/etc/sos/extras.d/sos_clean_config.conf | 3 | ||||
-rw-r--r-- | tests/test_data/etc/sos/sos.conf | 16 | ||||
-rw-r--r-- | tests/test_data/var/log/clean_config_test.txt | 10 | ||||
-rw-r--r-- | tests/vendor_tests/redhat/rhbz1950350.py | 35 |
4 files changed, 64 insertions, 0 deletions
diff --git a/tests/test_data/etc/sos/extras.d/sos_clean_config.conf b/tests/test_data/etc/sos/extras.d/sos_clean_config.conf new file mode 100644 index 00000000..7cf2748d --- /dev/null +++ b/tests/test_data/etc/sos/extras.d/sos_clean_config.conf @@ -0,0 +1,3 @@ +# sos_extras config file to assist with the clean_config test. + +:/var/log/clean_config_test.txt diff --git a/tests/test_data/etc/sos/sos.conf b/tests/test_data/etc/sos/sos.conf new file mode 100644 index 00000000..bb38e248 --- /dev/null +++ b/tests/test_data/etc/sos/sos.conf @@ -0,0 +1,16 @@ +[global] +#verbose = 3 + +[report] +#skip-plugins = rpm,selinux,dovecot + +[collect] +#master = myhost.example.com + +[clean] +keywords = shibboleth +domains = sosexample.com +#no-update = true + +[plugin_options] +#rpm.rpmva = off diff --git a/tests/test_data/var/log/clean_config_test.txt b/tests/test_data/var/log/clean_config_test.txt new file mode 100644 index 00000000..f1bdb127 --- /dev/null +++ b/tests/test_data/var/log/clean_config_test.txt @@ -0,0 +1,10 @@ +This is a test file for use with testing sos. + +The clean_config test should use this file for testing that the config section for +[clean] is loaded when `--clean` is specified on the command line. + +This line contains 'shibboleth' which should be scrubbed. + +The domain sosexample.com should also be scrubbed. Also subdomains like foobar.sosexample.com should be removed. + +The domain example.com should not be removed. 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') |