summaryrefslogtreecommitdiff
path: root/tests/rpme.at
blob: c41348f2fa309c6a133d1ddf4444e3d6e5c48400 (plain)
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
275
276
277
278
279
280

AT_SETUP([rpm -e and verify files removed])
AT_KEYWORDS([install erase rpmdb])
RPMDB_INIT

AT_CHECK([
runroot rpm -U --ignoreos --ignorearch --nodeps \
	/data/RPMS/hello-2.0-1.x86_64.rpm
runroot rpm -Vv --nodeps --nogroup --nouser hello
runroot rpm -e hello
runroot rpm -Vv --nodeps --nogroup --nouser /data/RPMS/hello-2.0-1.x86_64.rpm
],
[1],
[.........    /usr/bin/hello
.........    /usr/share/doc/hello-2.0
.........  d /usr/share/doc/hello-2.0/COPYING
.........  d /usr/share/doc/hello-2.0/FAQ
.........  d /usr/share/doc/hello-2.0/README
missing     /usr/bin/hello
missing     /usr/share/doc/hello-2.0
missing   d /usr/share/doc/hello-2.0/COPYING
missing   d /usr/share/doc/hello-2.0/FAQ
missing   d /usr/share/doc/hello-2.0/README
],
[])
AT_CLEANUP

AT_SETUP([rpm -e and shared files removed 1.1])
AT_KEYWORDS([install erase rpmdb])
RPMDB_INIT
AT_CHECK([
runroot rpm -U --ignoreos --ignorearch --nodeps \
	--define "_transaction_color 3" \
	--define "_prefer_color 2" \
	--nodocs \
	/data/RPMS/hello-2.0-1.x86_64.rpm
runroot rpm -Vv --nodeps --nogroup --nouser hello

runroot rpm -U --ignoreos --ignorearch --nodeps \
	--define "_transaction_color 3" \
	--define "_prefer_color 2" \
	/data/RPMS/hello-2.0-1.i686.rpm
runroot rpm -Vv --nodeps --nogroup --nouser hello.x86_64 hello.i686

runroot rpm -e hello.x86_64
runroot rpm -Vv --nodeps --nogroup --nouser /data/RPMS/hello-2.0-1.x86_64.rpm
],
[1],
[.........    /usr/bin/hello
.........    /usr/share/doc/hello-2.0 (not installed)
.........  d /usr/share/doc/hello-2.0/COPYING (not installed)
.........  d /usr/share/doc/hello-2.0/FAQ (not installed)
.........  d /usr/share/doc/hello-2.0/README (not installed)
.........    /usr/bin/hello
.........    /usr/share/doc/hello-2.0 (not installed)
.........  d /usr/share/doc/hello-2.0/COPYING (not installed)
.........  d /usr/share/doc/hello-2.0/FAQ (not installed)
.........  d /usr/share/doc/hello-2.0/README (not installed)
.........    /usr/bin/hello (wrong color)
.........    /usr/share/doc/hello-2.0
.........  d /usr/share/doc/hello-2.0/COPYING
.........  d /usr/share/doc/hello-2.0/FAQ
.........  d /usr/share/doc/hello-2.0/README
missing     /usr/bin/hello
.........    /usr/share/doc/hello-2.0
.........  d /usr/share/doc/hello-2.0/COPYING
.........  d /usr/share/doc/hello-2.0/FAQ
.........  d /usr/share/doc/hello-2.0/README
],
[])
AT_CLEANUP

AT_SETUP([rpm -e and shared files removed 1.2])
AT_KEYWORDS([install erase rpmdb])
RPMDB_INIT
AT_CHECK([
runroot rpm -U --ignoreos --ignorearch --nodeps \
	--define "_transaction_color 3" \
	--define "_prefer_color 2" \
	--nodocs \
	/data/RPMS/hello-2.0-1.x86_64.rpm
runroot rpm -Vv --nodeps --nogroup --nouser hello

runroot rpm -U --ignoreos --ignorearch --nodeps \
	--define "_transaction_color 3" \
	--define "_prefer_color 2" \
	/data/RPMS/hello-2.0-1.i686.rpm
runroot rpm -Vv --nodeps --nogroup --nouser hello.x86_64 hello.i686

runroot rpm -e hello.i686
runroot rpm -Vv --nodeps --nogroup --nouser /data/RPMS/hello-2.0-1.x86_64.rpm
],
[1],
[.........    /usr/bin/hello
.........    /usr/share/doc/hello-2.0 (not installed)
.........  d /usr/share/doc/hello-2.0/COPYING (not installed)
.........  d /usr/share/doc/hello-2.0/FAQ (not installed)
.........  d /usr/share/doc/hello-2.0/README (not installed)
.........    /usr/bin/hello
.........    /usr/share/doc/hello-2.0 (not installed)
.........  d /usr/share/doc/hello-2.0/COPYING (not installed)
.........  d /usr/share/doc/hello-2.0/FAQ (not installed)
.........  d /usr/share/doc/hello-2.0/README (not installed)
.........    /usr/bin/hello (wrong color)
.........    /usr/share/doc/hello-2.0
.........  d /usr/share/doc/hello-2.0/COPYING
.........  d /usr/share/doc/hello-2.0/FAQ
.........  d /usr/share/doc/hello-2.0/README
.........    /usr/bin/hello
missing     /usr/share/doc/hello-2.0
missing   d /usr/share/doc/hello-2.0/COPYING
missing   d /usr/share/doc/hello-2.0/FAQ
missing   d /usr/share/doc/hello-2.0/README
],
[])

AT_CLEANUP
# Test that removing shared or wrong colored files has no effect
AT_SETUP([rpm -e and verify colored files removed 1.1])
AT_KEYWORDS([install erase rpmdb])
RPMDB_INIT
AT_CHECK([

runroot rpm -U --ignoreos --ignorearch --nodeps \
	--define "_transaction_color 3" \
	--define "_prefer_color 2" \
	/data/RPMS/hello-2.0-1.i686.rpm /data/RPMS/hello-2.0-1.x86_64.rpm
runroot rpm -V --nodeps --nogroup --nouser hello.x86_64 hello.i686
runroot rpm -e hello.i686
runroot rpm -Vv --nodeps --nogroup --nouser hello
],
[0],
[.........    /usr/bin/hello
.........    /usr/share/doc/hello-2.0
.........  d /usr/share/doc/hello-2.0/COPYING
.........  d /usr/share/doc/hello-2.0/FAQ
.........  d /usr/share/doc/hello-2.0/README
],
[])
AT_CLEANUP

# XXX This is wrong really, rpm shouldn't let the real provider of
# a shared file get removed - and unforced action shouldn't result
# in verify failure.
AT_SETUP([rpm -e and verify colored files removed 1.2])
AT_KEYWORDS([install erase rpmdb])
RPMDB_INIT
AT_CHECK([
RPMDB_INIT

runroot rpm -U --ignoreos --ignorearch --nodeps \
	--define "_transaction_color 3" \
	--define "_prefer_color 2" \
	/data/RPMS/hello-2.0-1.i686.rpm /data/RPMS/hello-2.0-1.x86_64.rpm
runroot rpm -e hello.x86_64
runroot rpm -Vv --nodeps --nogroup --nouser hello
],
[1],
[missing     /usr/bin/hello (wrong color)
.........    /usr/share/doc/hello-2.0
.........  d /usr/share/doc/hello-2.0/COPYING
.........  d /usr/share/doc/hello-2.0/FAQ
.........  d /usr/share/doc/hello-2.0/README
],
[])
AT_CLEANUP

# Test that shared colored files actually get removed regardless of order 1
AT_SETUP([rpm -e and verify colored files removed 2.1])
AT_XFAIL_IF([test $RPM_XFAIL -ne 0])
AT_KEYWORDS([install erase rpmdb])
RPMDB_INIT
AT_CHECK([
RPMDB_INIT

runroot rpm -U --ignoreos --ignorearch --nodeps \
	--define "_transaction_color 2" \
	--define "_prefer_color 2" \
	/data/RPMS/hello-2.0-1.i686.rpm /data/RPMS/hello-2.0-1.x86_64.rpm
runroot rpm -e hello.i686 hello.x86_64
runroot rpm -Vp --nodeps --nogroup --nouser /data/RPMS/hello-2.0-1.x86_64.rpm
],
[1],
[missing     /usr/bin/hello
missing     /usr/share/doc/hello-2.0
missing   d /usr/share/doc/hello-2.0/COPYING
missing   d /usr/share/doc/hello-2.0/FAQ
missing   d /usr/share/doc/hello-2.0/README
],
[])
AT_CLEANUP

# Test that shared colored files actually get removed regardless of order 2
AT_SETUP([rpm -e and verify colored files removed 2.2])
AT_XFAIL_IF([test $RPM_XFAIL -ne 0])
AT_KEYWORDS([install erase rpmdb])
RPMDB_INIT
AT_CHECK([
RPMDB_INIT

runroot rpm -U --ignoreos --ignorearch --nodeps \
	--define "_transaction_color 2" \
	--define "_prefer_color 2" \
	/data/RPMS/hello-2.0-1.i686.rpm /data/RPMS/hello-2.0-1.x86_64.rpm
runroot rpm -e hello.x86_64 hello.i686
runroot rpm -Vp --nodeps --nogroup --nouser /data/RPMS/hello-2.0-1.x86_64.rpm
],
[1],
[missing     /usr/bin/hello
missing     /usr/share/doc/hello-2.0
missing   d /usr/share/doc/hello-2.0/COPYING
missing   d /usr/share/doc/hello-2.0/FAQ
missing   d /usr/share/doc/hello-2.0/README
],
[])
AT_CLEANUP

AT_SETUP([rpm -e and verify conflicting files removed 1])
AT_KEYWORDS([install erase rpmdb])
RPMDB_INIT
for p in a b; do
    runroot rpmbuild -bb --quiet \
		--define "pkg ${p}" \
		--define "filedata pkg-${p}" \
		/data/SPECS/conflicttest.spec
done

AT_CHECK([
runroot rpm -U --ignoreos /build/RPMS/noarch/conflicta-1.0-1.noarch.rpm 
runroot rpm -U --ignoreos --force /build/RPMS/noarch/conflictb-1.0-1.noarch.rpm
runroot rpm -Vav --nogroup --nouser conflicta conflictb
runroot rpm -e conflicta
runroot rpm -Vav --nogroup --nouser conflictb
runroot rpm -e conflictb
runroot rpm -Vp --nogroup --nouser /build/RPMS/noarch/conflictb-1.0-1.noarch.rpm
],
[1],
[.........    /usr/share/my.version (replaced)
.........    /usr/share/my.version
.........    /usr/share/my.version
missing     /usr/share/my.version
],
[])

AT_CHECK([
runroot rpm -U --ignoreos /build/RPMS/noarch/conflicta-1.0-1.noarch.rpm
runroot rpm -U --ignoreos --force /build/RPMS/noarch/conflictb-1.0-1.noarch.rpm
runroot rpm -Vav --nogroup --nouser conflicta conflictb
runroot rpm -e conflictb
runroot rpm -Vav --nogroup --nouser conflicta
runroot rpm -e conflicta
],
[0],
[.........    /usr/share/my.version (replaced)
.........    /usr/share/my.version
missing     /usr/share/my.version (replaced)
],
[])
AT_CLEANUP

# Test %_netsharedpath erasure. It's a bit weird as we're abusing verify
# on non-installed package to see if files are there.
AT_SETUP([rpm -e and verify netshared files not removed])
AT_KEYWORDS([install erase rpmdb])
AT_CHECK([
RPMDB_INIT

runroot rpm -U --ignoreos --ignorearch --nodeps \
	/data/RPMS/hello-2.0-1.x86_64.rpm
runroot rpm -e \
	--define "_netsharedpath /usr/share" \
	hello
runroot rpm -Vp --nodeps --nogroup --nouser /data/RPMS/hello-2.0-1.x86_64.rpm
],
[1],
[missing     /usr/bin/hello
],
[])
AT_CLEANUP