-
Notifications
You must be signed in to change notification settings - Fork 7
/
runtest.sh
executable file
·274 lines (223 loc) · 12.4 KB
/
runtest.sh
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
#!/bin/bash
# vim: dict=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# runtest.sh of ipp
# Description: Tests for IPP scriptlets
# Author: Petr Lautrbach <[email protected]>
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# Copyright (C) 2017 Red Hat, Inc. All rights reserved.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Include the BeakerLib environment
. /usr/share/beakerlib/beakerlib.sh
# Set SELinux store
if rlIsRHEL "<=7" || rlIsCentOS "<=7"; then
SELINUXSTOREPATH=/etc/selinux
else
SELINUXSTOREPATH=/var/lib/selinux
fi
# Set the full test name
TEST="IPP"
# Package being tested
PACKAGE="IPP"
set_booleans() {
rlRun "rpm --eval '%selinux_set_booleans -s targeted $*' > run_selinux_set_booleans.sh" 0
rlRun "bash run_selinux_set_booleans.sh"
}
unset_booleans() {
rlRun "rpm --eval '%selinux_unset_booleans -s targeted $*' > run_selinux_unset_booleans.sh" 0
rlRun "bash run_selinux_unset_booleans.sh"
}
rlJournalStart
rlPhaseStartSetup "Setup"
rlRun "rlFileBackup --clean ~/.rpmmacros" 0,1 "Backing up ~/.rpmmacros"
rlRun "sed 's|SELINUXSTOREPATH|$SELINUXSTOREPATH|' macros.selinux-policy >> ~/.rpmmacros" 0 "Updating ~/.rpmmacros"
rlRun "rlFileBackup --clean ${SELINUXSTOREPATH}/targeted/rpmbooleans.custom" 0,1 "Backing up ${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlRun "rm ${SELINUXSTOREPATH}/targeted/rpmbooleans.custom" 0,1 "Updating ~/.rpmmacros"
rlRun 'TmpDir=$(mktemp -d)' 0
pushd $TmpDir
rlRun "semanage boolean -E > boolean.import" 0 "Backup local boolean modifications"
rlRun "semanage boolean -D" 0 "Drop local boolean modifications"
rlPhaseEnd
rlPhaseStartTest "Test install on a clean system"
set_booleans secure_mode=1 secure_mode_insmod=1
rlRun "semanage boolean -E > boolean.local"
# test if local changes are applied
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode' "boolean.local"
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode_insmod' "boolean.local"
# check the content of /var/lib/selinux/targeted/rpmbooleans.custom, should be almost empty
rlAssertNotGrep '\(-1\|--on\) secure_mode' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlAssertNotGrep '\(-1\|--on\) secure_mode_insmod' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
# bash
rlPhaseEnd
rlPhaseStartTest "Test uninstall on a clean system"
unset_booleans secure_mode=0 secure_mode_insmod=0
# test if local changes are removed
rlRun "semanage boolean -E > boolean.local"
rlAssertNotGrep 'boolean -m \(-1\|--on\) secure_mode' "boolean.local"
rlAssertNotGrep 'boolean -m \(-1\|--on\) secure_mode_insmod' "boolean.local"
rlAssertNotGrep 'secure_mode' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
# bash
rlRun "semanage boolean -m --off secure_mode" 0 "cleanup"
rlRun "semanage boolean -m --off secure_mode_insmod" 0 "cleanup"
rlRun "semanage boolean -D" 0 "cleanup"
rlPhaseEnd
rlPhaseStartTest "Test install on a system with secure_mode is already on"
rlRun "semanage boolean -m --on secure_mode" 0 "Setting secure_mode=on"
set_booleans secure_mode=1 secure_mode_insmod=1
rlRun "semanage boolean -E > boolean.local"
# test if local changes are applied
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode' "boolean.local"
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode_insmod' "boolean.local"
# check the content of /var/lib/selinux/targeted/rpmbooleans.custom, should be almost empty
rlAssertGrep '\(-1\|--on\) secure_mode' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlAssertNotGrep '\(-1\|--on\) secure_mode_insmod' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
# bash
rlPhaseEnd
rlPhaseStartTest "Test uninstall on a system where secure_mode was on before install"
# bash
unset_booleans secure_mode=0 secure_mode_insmod=0
# bash
# test if local changes are removed
rlRun "semanage boolean -E > boolean.local"
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode' "boolean.local"
rlAssertNotGrep 'boolean -m \(-1\|--on\) secure_mode_insmod' "boolean.local"
rlAssertNotGrep 'secure_mode' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlRun "semanage boolean -m --off secure_mode" 0 "cleanup"
rlRun "semanage boolean -m --off secure_mode_insmod" 0 "cleanup"
rlRun "semanage boolean -D" 0 "cleanup"
rlPhaseEnd
rlPhaseStartTest "Test install on a system with secure_mode was changed to off"
rlRun "semanage boolean -m --off secure_mode" 0 "Setting secure_mode=on"
set_booleans secure_mode=1 secure_mode_insmod=1
rlRun "semanage boolean -E > boolean.local"
# test if local changes are applied
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode' "boolean.local"
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode_insmod' "boolean.local"
# check the content of /var/lib/selinux/targeted/rpmbooleans.custom, should be almost empty
rlAssertGrep '\(-0\|--off\) secure_mode' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlAssertGrep '\(-0\|--off\) secure_mode_insmod' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
# bash
rlPhaseEnd
rlPhaseStartTest "Test uninstall on a system where secure_mode was on before install"
# bash
unset_booleans secure_mode=0 secure_mode_insmod=0
# bash
# test if local changes are removed
rlRun "semanage boolean -E > boolean.local"
rlAssertGrep 'boolean -m \(-0\|--off\) secure_mode' "boolean.local"
rlAssertGrep 'boolean -m \(-0\|--off\) secure_mode_insmod' "boolean.local"
rlAssertNotGrep 'secure_mode' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlRun "semanage boolean -m --off secure_mode" 0 "cleanup"
rlRun "semanage boolean -m --off secure_mode_insmod" 0 "cleanup"
rlRun "semanage boolean -D" 0 "cleanup"
rlPhaseEnd
# ============ Install twice, remove once ======================
rlPhaseStartTest "Test install twice on a clean system"
set_booleans secure_mode=1 secure_mode_insmod=1
set_booleans secure_mode=1 zabbix_can_network=1
rlRun "semanage boolean -E > boolean.local"
# test if local changes are applied
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode_insmod' "boolean.local"
rlAssertGrep 'boolean -m \(-1\|--on\) zabbix_can_network' "boolean.local"
# check the content of /var/lib/selinux/targeted/rpmbooleans.custom, should be almost empty
rlAssertNotGrep '\(-1\|--on\) secure_mode_insmod' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlAssertNotGrep '\(-1\|--on\) zabbix_can_network' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
# bash
rlPhaseEnd
rlPhaseStartTest "Test uninstall once after install twice"
unset_booleans secure_mode=0 secure_mode_insmod=0
# test if local changes are removed
rlRun "semanage boolean -E > boolean.local"
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode' "boolean.local"
rlAssertNotGrep 'boolean -m \(-1\|--on\) secure_mode_insmod' "boolean.local"
rlAssertGrep 'boolean -m \(-1\|--on\) zabbix_can_network' "boolean.local"
rlAssertGrep 'secure_mode$' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlAssertNotGrep 'secure_mode_insmod' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlAssertGrep 'zabbix_can_network' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
# bash
rlRun "semanage boolean -m --off secure_mode" 0 "cleanup"
rlRun "semanage boolean -m --off secure_mode_insmod" 0 "cleanup"
rlRun "semanage boolean -m --off zabbix_can_network" 0 "cleanup"
rlRun "semanage boolean -D" 0 "cleanup"
rlRun "rm ${SELINUXSTOREPATH}/targeted/rpmbooleans.custom" 0 "cleanup"
rlPhaseEnd
rlPhaseStartTest "Test install twice on a system with secure_mode is already on"
rlRun "semanage boolean -m --on secure_mode" 0 "Setting secure_mode=on"
set_booleans secure_mode=1 secure_mode_insmod=1
set_booleans secure_mode=1
rlRun "semanage boolean -E > boolean.local"
# test if local changes are applied
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode' "boolean.local"
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode_insmod' "boolean.local"
# check the content of /var/lib/selinux/targeted/rpmbooleans.custom, should be almost empty
rlAssertGrep '\(-1\|--on\) secure_mode' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlAssertGrep '\(-0\|--off\) secure_mode_insmod' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
# bash
rlPhaseEnd
rlPhaseStartTest "Test uninstall once after install twice on a system where secure_mode was on before install"
unset_booleans secure_mode=0 secure_mode_insmod=0
# test if local changes are removed
rlRun "semanage boolean -E > boolean.local"
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode' "boolean.local"
rlAssertGrep 'boolean -m \(-0\|--off\) secure_mode_insmod' "boolean.local"
rlAssertGrep '\(-1\|--on\) secure_mode' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlAssertNotGrep 'secure_mode_insmod' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlRun "semanage boolean -m --off secure_mode" 0 "cleanup"
rlRun "semanage boolean -m --off secure_mode_insmod" 0 "cleanup"
rlRun "semanage boolean -D" 0 "cleanup"
rlRun "rm ${SELINUXSTOREPATH}/targeted/rpmbooleans.custom" 0 "cleanup"
rlPhaseEnd
rlPhaseStartTest "Test install twice on a system with secure_mode was changed to off"
rlRun "semanage boolean -m --off secure_mode" 0 "Setting secure_mode=on"
set_booleans secure_mode=1 secure_mode_insmod=1
set_booleans secure_mode=1
rlRun "semanage boolean -E > boolean.local"
# test if local changes are applied
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode' "boolean.local"
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode_insmod' "boolean.local"
# check the content of /var/lib/selinux/targeted/rpmbooleans.custom, should be almost empty
rlAssertGrep '\(-0\|--off\) secure_mode' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlAssertGrep '\(-0\|--off\) secure_mode_insmod' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
# bash
rlPhaseEnd
rlPhaseStartTest "Test uninstall once after install twice on a system where secure_mode was off before install"
# bash
unset_booleans secure_mode=0 secure_mode_insmod=0
# bash
# test if local changes are removed
rlRun "semanage boolean -E > boolean.local"
rlAssertGrep 'boolean -m \(-1\|--on\) secure_mode' "boolean.local"
rlAssertGrep 'boolean -m \(-0\|--off\) secure_mode_insmod' "boolean.local"
rlAssertGrep '\(-0\|--off\) secure_mode' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlAssertNotGrep 'secure_mode_insmod' "${SELINUXSTOREPATH}/targeted/rpmbooleans.custom"
rlRun "semanage boolean -m --off secure_mode" 0 "cleanup"
rlRun "semanage boolean -m --off secure_mode_insmod" 0 "cleanup"
rlRun "semanage boolean -D" 0 "cleanup"
rlPhaseEnd
rlPhaseStartCleanup "Cleanup"
rlRun "semanage boolean -D" 0 "Clean all boolean changes"
rlRun "semanage import < boolean.import" 0 "Import local boolean modifications back"
popd
rlRun "rm -r $TmpDir" 0 "Removing tmp directory"
rlRun "rlFileRestore"
rlPhaseEnd
rlJournalEnd
# Print the test report
rlJournalPrintText