aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vendor_tests/redhat/rhbz1950350/rhbz1950350.py
blob: 508978118753421914475823dac3e8f5e4a07a8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 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 = [
        ('sos.conf', '/etc/sos/sos.conf'),
        ('sos_clean_config.conf', '/etc/sos/extras.d/sos_clean_config.conf'),
        ('clean_config_test.txt', '/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'
        )