summaryrefslogtreecommitdiffstats
path: root/test/integration/test-phased-updates-upgrade
blob: fec8bece857f30b5ff782d5b0c3d88d26fdd0605 (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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
#!/bin/sh
set -e

TESTDIR="$(readlink -f "$(dirname "$0")")"
. "$TESTDIR/framework"

setupenvironment
echo 'Debug::Phasing "1";' > rootdir/etc/apt/apt.conf.d/debug-phasing
configarchitecture 'i386' 'armel'



# Test case phased: The package is installed and has a phased update available
insertinstalledpackage 'phased' 'all' '1'
insertpackage 'unstable-updates' 'phased' 'all' '3' 'Phased-Update-Percentage: 0'

# Test case phased-security: A phased package is in security and will be installed
insertinstalledpackage 'phased-security' 'all' '1'
insertpackage 'unstable-security' 'phased-security' 'all' '2'
insertpackage 'unstable-updates' 'phased-security' 'all' '3' 'Phased-Update-Percentage: 0'

# Test case phased-dep: A released update depends on the phased dependency phased-dep
insertinstalledpackage 'phased-dep' 'all' '1'
insertinstalledpackage 'depends-phased-dep' 'all' '1'
insertpackage 'unstable-updates' 'phased-dep' 'all' '3' 'Phased-Update-Percentage: 0'
insertpackage 'unstable-updates' 'depends-phased-dep' 'all' '3' 'Depends: phased-dep (= 3)'

# Test case phased-new: A release update depends on a new package that's phasing
insertinstalledpackage 'depends-phased-new' 'all' '1'
insertpackage 'unstable-updates' 'phased-new' 'all' '3' 'Phased-Update-Percentage: 0'
insertpackage 'unstable-updates' 'depends-phased-new' 'all' '3' 'Depends: phased-new (= 3)'

# Test case phased-dep: A released update depends on the phased dependency phased-dep
insertinstalledpackage 'ready-dep' 'all' '1'
insertinstalledpackage 'phased-depends-ready-dep' 'all' '1' 'Depends: ready-dep (= 1)
Protected: yes'
insertpackage 'unstable-updates' 'ready-dep' 'all' '3'
insertpackage 'unstable-updates' 'phased-depends-ready-dep' 'all' '3' 'Depends: ready-dep (= 3)
Protected: yes
Phased-Update-Percentage: 0'

setupaptarchive

msgmsg "Testing with default (upgrade-based) implementation"

testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following NEW packages will be installed:
  phased-new
The following packages have been kept back:
  depends-phased-dep phased phased-dep phased-depends-ready-dep ready-dep
The following packages will be upgraded:
  depends-phased-new phased-security
2 upgraded, 1 newly installed, 0 to remove and 5 not upgraded.
Inst phased-new (3 unstable-updates [all])
Inst depends-phased-new [1] (3 unstable-updates [all])
Inst phased-security [1] (3 unstable-updates [all])
Conf phased-new (3 unstable-updates [all])
Conf depends-phased-new (3 unstable-updates [all])
Conf phased-security (3 unstable-updates [all])" aptget dist-upgrade -s -q

for always in APT::Get::Always-Include-Phased-Updates Update-Manager::Always-Include-Phased-Updates; do
testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following NEW packages will be installed:
  phased-new
The following packages will be upgraded:
  depends-phased-dep depends-phased-new phased phased-dep
  phased-depends-ready-dep phased-security ready-dep
7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Inst phased-dep [1] (3 unstable-updates [all])
Inst depends-phased-dep [1] (3 unstable-updates [all])
Inst phased-new (3 unstable-updates [all])
Inst depends-phased-new [1] (3 unstable-updates [all])
Inst phased [1] (3 unstable-updates [all])
Inst phased-depends-ready-dep [1] (3 unstable-updates [all]) []
Inst ready-dep [1] (3 unstable-updates [all])
Inst phased-security [1] (3 unstable-updates [all])
Conf phased-dep (3 unstable-updates [all])
Conf depends-phased-dep (3 unstable-updates [all])
Conf phased-new (3 unstable-updates [all])
Conf depends-phased-new (3 unstable-updates [all])
Conf phased (3 unstable-updates [all])
Conf phased-depends-ready-dep (3 unstable-updates [all])
Conf ready-dep (3 unstable-updates [all])
Conf phased-security (3 unstable-updates [all])" aptget dist-upgrade -s -q -o $always=1
done

SOURCE_DATE_EPOCH=1 testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following NEW packages will be installed:
  phased-new
The following packages will be upgraded:
  depends-phased-dep depends-phased-new phased phased-dep
  phased-depends-ready-dep phased-security ready-dep
7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Inst phased-dep [1] (3 unstable-updates [all])
Inst depends-phased-dep [1] (3 unstable-updates [all])
Inst phased-new (3 unstable-updates [all])
Inst depends-phased-new [1] (3 unstable-updates [all])
Inst phased [1] (3 unstable-updates [all])
Inst phased-depends-ready-dep [1] (3 unstable-updates [all]) []
Inst ready-dep [1] (3 unstable-updates [all])
Inst phased-security [1] (3 unstable-updates [all])
Conf phased-dep (3 unstable-updates [all])
Conf depends-phased-dep (3 unstable-updates [all])
Conf phased-new (3 unstable-updates [all])
Conf depends-phased-new (3 unstable-updates [all])
Conf phased (3 unstable-updates [all])
Conf phased-depends-ready-dep (3 unstable-updates [all])
Conf ready-dep (3 unstable-updates [all])
Conf phased-security (3 unstable-updates [all])" aptget dist-upgrade -s -q -o with-source-date-epoch=1

for never in APT::Get::Never-Include-Phased-Updates Update-Manager::Never-Include-Phased-Updates; do
testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following NEW packages will be installed:
  phased-new
The following packages have been kept back:
  depends-phased-dep phased phased-dep phased-depends-ready-dep ready-dep
The following packages will be upgraded:
  depends-phased-new phased-security
2 upgraded, 1 newly installed, 0 to remove and 5 not upgraded.
Inst phased-new (3 unstable-updates [all])
Inst depends-phased-new [1] (3 unstable-updates [all])
Inst phased-security [1] (3 unstable-updates [all])
Conf phased-new (3 unstable-updates [all])
Conf depends-phased-new (3 unstable-updates [all])
Conf phased-security (3 unstable-updates [all])" aptget dist-upgrade -s -q -o $never=1
done

testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following NEW packages will be installed:
  phased-new
The following packages have been kept back:
  depends-phased-dep phased phased-dep phased-depends-ready-dep ready-dep
The following packages will be upgraded:
  depends-phased-new phased-security
2 upgraded, 1 newly installed, 0 to remove and 5 not upgraded.
Inst phased-new (3 unstable-updates [all])
Inst depends-phased-new [1] (3 unstable-updates [all])
Inst phased-security [1] (3 unstable-updates [all])
Conf phased-new (3 unstable-updates [all])
Conf depends-phased-new (3 unstable-updates [all])
Conf phased-security (3 unstable-updates [all])" aptget upgrade -s -q --with-new-pkgs

testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following packages have been kept back:
  depends-phased-dep depends-phased-new phased phased-dep
  phased-depends-ready-dep ready-dep
The following packages will be upgraded:
  phased-security
1 upgraded, 0 newly installed, 0 to remove and 6 not upgraded.
Inst phased-security [1] (3 unstable-updates [all])
Conf phased-security (3 unstable-updates [all])" aptget upgrade -s -q

for upgrade in "dist-upgrade" "upgrade --with-new-pkgs"; do
testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following NEW packages will be installed:
  phased-new
The following packages have been kept back:
  phased phased-depends-ready-dep ready-dep
The following packages will be upgraded:
  depends-phased-dep depends-phased-new phased-dep phased-security
4 upgraded, 1 newly installed, 0 to remove and 3 not upgraded.
Inst phased-dep [1] (3 unstable-updates [all])
Inst depends-phased-dep [1] (3 unstable-updates [all])
Inst phased-new (3 unstable-updates [all])
Inst depends-phased-new [1] (3 unstable-updates [all])
Inst phased-security [1] (3 unstable-updates [all])
Conf phased-dep (3 unstable-updates [all])
Conf depends-phased-dep (3 unstable-updates [all])
Conf phased-new (3 unstable-updates [all])
Conf depends-phased-new (3 unstable-updates [all])
Conf phased-security (3 unstable-updates [all])" aptget $upgrade -s -q depends-phased-dep
done

testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following packages have been kept back:
  depends-phased-new phased phased-depends-ready-dep ready-dep
The following packages will be upgraded:
  depends-phased-dep phased-dep phased-security
3 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.
Inst phased-dep [1] (3 unstable-updates [all])
Inst depends-phased-dep [1] (3 unstable-updates [all])
Inst phased-security [1] (3 unstable-updates [all])
Conf phased-dep (3 unstable-updates [all])
Conf depends-phased-dep (3 unstable-updates [all])
Conf phased-security (3 unstable-updates [all])" aptget upgrade -s -q depends-phased-dep

# install does not respect phasing
testsuccessequal "Reading package lists...
Building dependency tree...
The following additional packages will be installed:
  phased-dep
The following packages will be upgraded:
  depends-phased-dep phased phased-dep phased-security
4 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
Inst phased-dep [1] (3 unstable-updates [all])
Inst depends-phased-dep [1] (3 unstable-updates [all])
Inst phased [1] (3 unstable-updates [all])
Inst phased-security [1] (3 unstable-updates [all])
Conf phased-dep (3 unstable-updates [all])
Conf depends-phased-dep (3 unstable-updates [all])
Conf phased (3 unstable-updates [all])
Conf phased-security (3 unstable-updates [all])" aptget install -s -q phased depends-phased-dep phased-security


msgmsg "Testing with policy based implementation"
echo 'APT::Get::Phase-Policy "1";' > rootdir/etc/apt/apt.conf.d/phase-by-policy

testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following NEW packages will be installed:
  phased-new
The following packages have been kept back:
  depends-phased-dep ready-dep
The following packages will be upgraded:
  depends-phased-new phased-security
2 upgraded, 1 newly installed, 0 to remove and 2 not upgraded.
Inst phased-new (3 unstable-updates [all])
Inst depends-phased-new [1] (3 unstable-updates [all])
Inst phased-security [1] (2 unstable-security [all])
Conf phased-new (3 unstable-updates [all])
Conf depends-phased-new (3 unstable-updates [all])
Conf phased-security (2 unstable-security [all])" aptget dist-upgrade -s -q

for always in APT::Get::Always-Include-Phased-Updates Update-Manager::Always-Include-Phased-Updates; do
testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following NEW packages will be installed:
  phased-new
The following packages will be upgraded:
  depends-phased-dep depends-phased-new phased phased-dep
  phased-depends-ready-dep phased-security ready-dep
7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Inst phased-dep [1] (3 unstable-updates [all])
Inst depends-phased-dep [1] (3 unstable-updates [all])
Inst phased-new (3 unstable-updates [all])
Inst depends-phased-new [1] (3 unstable-updates [all])
Inst phased [1] (3 unstable-updates [all])
Inst phased-depends-ready-dep [1] (3 unstable-updates [all]) []
Inst ready-dep [1] (3 unstable-updates [all])
Inst phased-security [1] (3 unstable-updates [all])
Conf phased-dep (3 unstable-updates [all])
Conf depends-phased-dep (3 unstable-updates [all])
Conf phased-new (3 unstable-updates [all])
Conf depends-phased-new (3 unstable-updates [all])
Conf phased (3 unstable-updates [all])
Conf phased-depends-ready-dep (3 unstable-updates [all])
Conf ready-dep (3 unstable-updates [all])
Conf phased-security (3 unstable-updates [all])" aptget dist-upgrade -s -q -o $always=1
done

# In the policy implementation, we can update security
for never in APT::Get::Never-Include-Phased-Updates Update-Manager::Never-Include-Phased-Updates; do
testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following NEW packages will be installed:
  phased-new
The following packages have been kept back:
  depends-phased-dep ready-dep
The following packages will be upgraded:
  depends-phased-new phased-security
2 upgraded, 1 newly installed, 0 to remove and 2 not upgraded.
Inst phased-new (3 unstable-updates [all])
Inst depends-phased-new [1] (3 unstable-updates [all])
Inst phased-security [1] (2 unstable-security [all])
Conf phased-new (3 unstable-updates [all])
Conf depends-phased-new (3 unstable-updates [all])
Conf phased-security (2 unstable-security [all])" aptget dist-upgrade -s -q -o $never=1
done

SOURCE_DATE_EPOCH=1 testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following NEW packages will be installed:
  phased-new
The following packages will be upgraded:
  depends-phased-dep depends-phased-new phased phased-dep
  phased-depends-ready-dep phased-security ready-dep
7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Inst phased-dep [1] (3 unstable-updates [all])
Inst depends-phased-dep [1] (3 unstable-updates [all])
Inst phased-new (3 unstable-updates [all])
Inst depends-phased-new [1] (3 unstable-updates [all])
Inst phased [1] (3 unstable-updates [all])
Inst phased-depends-ready-dep [1] (3 unstable-updates [all]) []
Inst ready-dep [1] (3 unstable-updates [all])
Inst phased-security [1] (3 unstable-updates [all])
Conf phased-dep (3 unstable-updates [all])
Conf depends-phased-dep (3 unstable-updates [all])
Conf phased-new (3 unstable-updates [all])
Conf depends-phased-new (3 unstable-updates [all])
Conf phased (3 unstable-updates [all])
Conf phased-depends-ready-dep (3 unstable-updates [all])
Conf ready-dep (3 unstable-updates [all])
Conf phased-security (3 unstable-updates [all])" aptget dist-upgrade -s -q -o with-source-date-epoch=1


testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following NEW packages will be installed:
  phased-new
The following packages have been kept back:
  depends-phased-dep ready-dep
The following packages will be upgraded:
  depends-phased-new phased-security
2 upgraded, 1 newly installed, 0 to remove and 2 not upgraded.
Inst phased-new (3 unstable-updates [all])
Inst depends-phased-new [1] (3 unstable-updates [all])
Inst phased-security [1] (2 unstable-security [all])
Conf phased-new (3 unstable-updates [all])
Conf depends-phased-new (3 unstable-updates [all])
Conf phased-security (2 unstable-security [all])" aptget upgrade -s -q --with-new-pkgs

testsuccessequal "Reading package lists...
Building dependency tree...
Calculating upgrade...
The following packages have been kept back:
  depends-phased-dep depends-phased-new ready-dep
The following packages will be upgraded:
  phased-security
1 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
Inst phased-security [1] (2 unstable-security [all])
Conf phased-security (2 unstable-security [all])" aptget upgrade -s -q

# FIXME: We actually would like this to work I think?
for upgrade in "dist-upgrade" "upgrade --with-new-pkgs" "upgrade" "install"; do
    testfailure aptget $upgrade -s -q depends-phased-dep
    testsuccess grep "depends-phased-dep : Depends: phased-dep (= 3) but 1 is to be installed" rootdir/tmp/testfailure.output
done

testsuccessequal "Reading package lists...
Building dependency tree...
phased is already the newest version (1).
The following packages will be upgraded:
  phased-security
1 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
Inst phased-security [1] (2 unstable-security [all])
Conf phased-security (2 unstable-security [all])" aptget install -s -q phased phased-security