blob: 9eab29149cc084d8c898abd05ccdf9e9c58cde1e (
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
|
# 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')
|