]>
Commit | Line | Data |
---|---|---|
5ed56f93 DK |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
9962ae93 | 4 | TESTDIR=$(readlink -f $(dirname $0)) |
5ed56f93 DK |
5 | . $TESTDIR/framework |
6 | ||
7 | setupenvironment | |
8 | configarchitecture "i386" | |
9 | ||
10 | buildaptarchive | |
11 | setupflataptarchive | |
12 | ||
13 | STATUS=$(readlink -f rootdir/var/lib/dpkg/status) | |
14 | APTARCHIVE=$(readlink -f aptarchive) | |
15 | ||
16 | testequalpolicy() { | |
17 | local SP="$1" | |
18 | local AP="$2" | |
19 | shift 2 | |
25b86db1 | 20 | testsuccessequal "Package files: |
5ed56f93 DK |
21 | $(echo "$SP" | awk '{ printf("%3s\n",$0) }') ${STATUS} |
22 | release a=now | |
1da3b7b8 | 23 | $(echo "$AP" | awk '{ printf("%3s\n",$0) }') file:${APTARCHIVE} Packages |
5ed56f93 | 24 | release c= |
b07aeb1a | 25 | Pinned packages:" aptcache policy "$@" |
5ed56f93 DK |
26 | } |
27 | ||
3f732aa6 DK |
28 | testglobalpolicy() { |
29 | aptgetupdate | |
5ed56f93 | 30 | |
3f732aa6 DK |
31 | testequalpolicy 100 500 |
32 | testequalpolicy 990 500 -t now | |
5ed56f93 | 33 | |
3f732aa6 DK |
34 | sed -i aptarchive/Release -e 1i"NotAutomatic: yes" |
35 | aptgetupdate | |
5ed56f93 | 36 | |
3f732aa6 DK |
37 | testequalpolicy 100 1 -o Test=NotAutomatic |
38 | testequalpolicy 990 1 -o Test=NotAutomatic -t now | |
451ea3d4 | 39 | |
3f732aa6 DK |
40 | sed -i aptarchive/Release -e 1i"ButAutomaticUpgrades: yes" |
41 | aptgetupdate | |
451ea3d4 | 42 | |
3f732aa6 DK |
43 | testequalpolicy 100 100 -o Test=ButAutomaticUpgrades |
44 | testequalpolicy 990 100 -o Test=ButAutomaticUpgrades -t now | |
451ea3d4 | 45 | |
3f732aa6 DK |
46 | sed -i aptarchive/Release -e 's#NotAutomatic: yes#NotAutomatic: no#' -e '/ButAutomaticUpgrades: / d' |
47 | aptgetupdate | |
451ea3d4 | 48 | |
3f732aa6 DK |
49 | testequalpolicy 100 500 -o Test=Automatic |
50 | testequalpolicy 990 500 -o Test=Automatic -t now | |
451ea3d4 | 51 | |
3f732aa6 DK |
52 | sed -i aptarchive/Release -e '/NotAutomatic: / d' -e '/ButAutomaticUpgrades: / d' |
53 | } | |
451ea3d4 | 54 | |
3f732aa6 DK |
55 | msgmsg 'Test with not signed archive' |
56 | aptgetupdate() { | |
57 | rm -rf rootdir/var/lib/apt | |
58 | testwarning aptget update --allow-insecure-repositories | |
59 | } | |
60 | testglobalpolicy | |
451ea3d4 | 61 | |
3f732aa6 DK |
62 | msgmsg 'Test with signed but no key in trusted' |
63 | aptgetupdate() { | |
64 | rm -rf rootdir/var/lib/apt | |
65 | signreleasefiles 'Marvin Paranoid' | |
66 | testwarning aptget update --allow-insecure-repositories | |
67 | } | |
68 | testglobalpolicy | |
451ea3d4 | 69 | |
3f732aa6 DK |
70 | # much the same tests will be executed below in more detail again for this one |
71 | msgmsg 'Test with signed and valid key' | |
72 | aptgetupdate() { | |
73 | rm -rf rootdir/var/lib/apt | |
74 | signreleasefiles 'Joe Sixpack' | |
75 | testsuccess aptget update | |
76 | } | |
77 | testglobalpolicy | |
451ea3d4 | 78 | |
3f732aa6 | 79 | msgmsg 'Test with specific packages' |
451ea3d4 | 80 | |
5ed56f93 DK |
81 | buildsimplenativepackage "coolstuff" "all" "1.0" "stable" |
82 | buildsimplenativepackage "coolstuff" "all" "2.0~bpo1" "backports" | |
83 | ||
84 | setupaptarchive | |
85 | ||
86 | testequalpolicycoolstuff() { | |
87 | local INSTALLED="${1:-(none)}" | |
88 | local CANDIDATE="${2:-(none)}" | |
89 | local AB="$3" | |
90 | local AS="$4" | |
91 | local PB="$5" | |
92 | local PINVERSION="$6" | |
93 | if [ -n "$PINVERSION" ]; then | |
94 | PINVERSION="Package pin: $PINVERSION | |
95 | " | |
96 | fi | |
97 | local IS="" | |
98 | local IB="" | |
99 | local SB="" | |
100 | local SS="" | |
101 | [ "$1" = "2.0~bpo1" ] && IB="***" && SB=" | |
102 | 100 $STATUS" || IB=" " | |
103 | [ "$1" = "1.0" ] && IS="***" && SS=" | |
104 | 100 $STATUS" || IS=" " | |
105 | local BPO1ARCHIVE="" | |
106 | local BPO2ARCHIVE="" | |
107 | if [ ! "$7" = "2.0~bpo2" ]; then | |
76b004d1 | 108 | BPO1PIN="$AB" |
1da3b7b8 | 109 | BPO1ARCHIVE=" $(echo "$AB" | awk '{ printf("%3s\n",$0) }') file:${APTARCHIVE} backports/main i386 Packages" |
5ed56f93 DK |
110 | else |
111 | BPO2ARCHIVE=" | |
76b004d1 | 112 | 2.0~bpo2 $AB |
1da3b7b8 | 113 | $(echo "$AB" | awk '{ printf("%3s\n",$0) }') file:${APTARCHIVE} backports/main i386 Packages" |
5ed56f93 DK |
114 | SB="$(echo "$SB" | tail -n 1)" |
115 | shift | |
116 | fi | |
117 | shift 6 | |
25b86db1 | 118 | testsuccessequal "coolstuff: |
5ed56f93 DK |
119 | Installed: $INSTALLED |
120 | Candidate: $CANDIDATE | |
121 | ${PINVERSION}Version table:${BPO2ARCHIVE} | |
122 | $IB 2.0~bpo1 $PB | |
123 | ${BPO1ARCHIVE}$SB | |
76b004d1 | 124 | $IS 1.0 $AS |
1da3b7b8 | 125 | $(echo "$AS" | awk '{ printf("%3s\n",$0) }') file:${APTARCHIVE} stable/main i386 Packages$SS" \ |
5ed56f93 DK |
126 | aptcache policy coolstuff -o Policy=${INSTALLED}-${CANDIDATE}-${AB}-${AS}-${PB} $* |
127 | } | |
128 | ||
76b004d1 JAK |
129 | testequalpolicycoolstuff "" "2.0~bpo1" 500 500 500 "" |
130 | testequalpolicycoolstuff "" "1.0" 500 990 500 "" -t stable | |
131 | testequalpolicycoolstuff "" "2.0~bpo1" 990 500 990 "" -t backports | |
5ed56f93 DK |
132 | echo "Package: * |
133 | Pin: release n=backports | |
134 | Pin-Priority: 200" > rootdir/etc/apt/preferences | |
76b004d1 JAK |
135 | testequalpolicycoolstuff "" "1.0" 200 500 200 "" -o Test=GlobalPin |
136 | testequalpolicycoolstuff "" "1.0" 200 990 200 "" -o Test=GlobalPin -t stable | |
137 | testequalpolicycoolstuff "" "2.0~bpo1" 990 500 990 "" -o Test=GlobalPin -t backports | |
5ed56f93 DK |
138 | echo "Package: * |
139 | Pin: release n=backports | |
140 | Pin-Priority: 600" > rootdir/etc/apt/preferences | |
76b004d1 JAK |
141 | testequalpolicycoolstuff "" "2.0~bpo1" 600 500 600 "" -o Test=GlobalPin |
142 | testequalpolicycoolstuff "" "1.0" 600 990 600 "" -o Test=GlobalPin -t stable | |
5ed56f93 DK |
143 | echo "Package: coolstuff |
144 | Pin: release n=backports | |
145 | Pin-Priority: 200" > rootdir/etc/apt/preferences | |
146 | #FIXME: policy can't differentiate between two sources where one has a package specific pin in place | |
147 | # testequalpolicycoolstuff "" "1.0" 500 500 200 "2.0~bpo1" -o Test=PackagePin | |
148 | # testequalpolicycoolstuff "" "1.0" 990 500 200 "2.0~bpo1" -o Test=PackagePin -t backports | |
149 | testequalpolicycoolstuff "" "1.0" 500 990 200 "2.0~bpo1" -o Test=PackagePin -t stable | |
150 | echo "Package: coolstuff | |
151 | Pin: release n=backports | |
152 | Pin-Priority: 600" > rootdir/etc/apt/preferences | |
153 | testequalpolicycoolstuff "" "2.0~bpo1" 500 500 600 "2.0~bpo1" -o Test=PackagePin | |
154 | testequalpolicycoolstuff "" "1.0" 500 990 600 "2.0~bpo1" -o Test=PackagePin -t stable | |
155 | testequalpolicycoolstuff "" "2.0~bpo1" 990 500 600 "2.0~bpo1" -o Test=PackagePin -t backports | |
156 | ||
157 | echo "Package: coolstuff | |
158 | Pin: release n=backports | |
159 | Pin-Priority: -1" > rootdir/etc/apt/preferences | |
160 | # testequalpolicycoolstuff "" "1.0" 500 500 -1 "2.0~bpo1" -o Test=PackagePin | |
161 | # testequalpolicycoolstuff "" "1.0" 990 500 -1 "2.0~bpo1" -o Test=PackagePin -t backports | |
162 | # testequalpolicycoolstuff "" "1.0" 500 990 -1 "2.0~bpo1" -o Test=PackagePin -t stable | |
163 | ||
164 | rm rootdir/etc/apt/preferences | |
165 | sed -i aptarchive/dists/backports/Release -e 1i"NotAutomatic: yes" | |
166 | signreleasefiles | |
451ea3d4 | 167 | aptgetupdate |
5ed56f93 | 168 | |
76b004d1 JAK |
169 | testequalpolicycoolstuff "" "1.0" 1 500 1 "" -o Test=NotAutomatic |
170 | testequalpolicycoolstuff "" "1.0" 1 990 1 "" -o Test=NotAutomatic -t stable | |
171 | testequalpolicycoolstuff "" "2.0~bpo1" 990 500 990 "" -o Test=NotAutomatic -t backports | |
5ed56f93 DK |
172 | echo "Package: * |
173 | Pin: release n=backports | |
174 | Pin-Priority: 200" > rootdir/etc/apt/preferences | |
76b004d1 | 175 | testequalpolicycoolstuff "" "1.0" 200 500 200 "" -o Test=NotAutomatic |
5ed56f93 DK |
176 | echo "Package: * |
177 | Pin: release n=backports | |
178 | Pin-Priority: 600" > rootdir/etc/apt/preferences | |
76b004d1 JAK |
179 | testequalpolicycoolstuff "" "2.0~bpo1" 600 500 600 "" -o Test=NotAutomatic |
180 | testequalpolicycoolstuff "" "1.0" 600 990 600 "" -o Test=NotAutomatic -t stable | |
5ed56f93 DK |
181 | echo "Package: coolstuff |
182 | Pin: release n=backports | |
183 | Pin-Priority: 200" > rootdir/etc/apt/preferences | |
184 | testequalpolicycoolstuff "" "1.0" 1 500 200 "2.0~bpo1" -o Test=NotAutomatic | |
185 | echo "Package: coolstuff | |
186 | Pin: release n=backports | |
187 | Pin-Priority: 600" > rootdir/etc/apt/preferences | |
188 | testequalpolicycoolstuff "" "2.0~bpo1" 1 500 600 "2.0~bpo1" -o Test=NotAutomatic | |
189 | testequalpolicycoolstuff "" "2.0~bpo1" 990 500 600 "2.0~bpo1" -o Test=NotAutomatic -t backports | |
190 | testequalpolicycoolstuff "" "1.0" 1 990 600 "2.0~bpo1" -o Test=NotAutomatic -t stable | |
191 | ||
192 | rm rootdir/etc/apt/preferences | |
193 | sed -i aptarchive/dists/backports/Release -e 1i"ButAutomaticUpgrades: yes" | |
194 | signreleasefiles | |
451ea3d4 | 195 | aptgetupdate |
5ed56f93 | 196 | |
76b004d1 JAK |
197 | testequalpolicycoolstuff "" "1.0" 100 500 100 "" -o Test=ButAutomaticUpgrades |
198 | testequalpolicycoolstuff "" "1.0" 100 990 100 "" -o Test=ButAutomaticUpgrades -t stable | |
199 | testequalpolicycoolstuff "" "2.0~bpo1" 990 500 990 "" -o Test=ButAutomaticUpgrades -t backports | |
5ed56f93 DK |
200 | echo "Package: * |
201 | Pin: release n=backports | |
202 | Pin-Priority: 200" > rootdir/etc/apt/preferences | |
76b004d1 | 203 | testequalpolicycoolstuff "" "1.0" 200 500 200 "" -o Test=ButAutomaticUpgrades |
5ed56f93 DK |
204 | echo "Package: * |
205 | Pin: release n=backports | |
206 | Pin-Priority: 600" > rootdir/etc/apt/preferences | |
76b004d1 JAK |
207 | testequalpolicycoolstuff "" "2.0~bpo1" 600 500 600 "" -o Test=ButAutomaticUpgrades |
208 | testequalpolicycoolstuff "" "1.0" 600 990 600 "" -o Test=ButAutomaticUpgrades -t stable | |
5ed56f93 DK |
209 | echo "Package: coolstuff |
210 | Pin: release n=backports | |
211 | Pin-Priority: 200" > rootdir/etc/apt/preferences | |
212 | testequalpolicycoolstuff "" "1.0" 100 500 200 "2.0~bpo1" -o Test=ButAutomaticUpgrades | |
213 | echo "Package: coolstuff | |
214 | Pin: release n=backports | |
215 | Pin-Priority: 600" > rootdir/etc/apt/preferences | |
216 | testequalpolicycoolstuff "" "2.0~bpo1" 100 500 600 "2.0~bpo1" -o Test=ButAutomaticUpgrades | |
217 | testequalpolicycoolstuff "" "2.0~bpo1" 990 500 600 "2.0~bpo1" -o Test=ButAutomaticUpgrades -t backports | |
218 | testequalpolicycoolstuff "" "1.0" 100 990 600 "2.0~bpo1" -o Test=ButAutomaticUpgrades -t stable | |
219 | ||
220 | rm rootdir/etc/apt/preferences | |
0440d936 | 221 | testsuccess aptget install coolstuff -y |
76b004d1 | 222 | testequalpolicycoolstuff "1.0" "1.0" 100 500 100 "" -o Test=ButAutomaticUpgrades |
0440d936 | 223 | testsuccess aptget dist-upgrade -y |
76b004d1 JAK |
224 | testequalpolicycoolstuff "1.0" "1.0" 100 500 100 "" -o Test=ButAutomaticUpgrades |
225 | testequalpolicycoolstuff "1.0" "1.0" 100 990 100 "" -o Test=ButAutomaticUpgrades -t stable | |
226 | testequalpolicycoolstuff "1.0" "2.0~bpo1" 990 500 990 "" -o Test=ButAutomaticUpgrades -t backports | |
5ed56f93 | 227 | |
0440d936 | 228 | testsuccess aptget install coolstuff -t backports -y |
76b004d1 | 229 | testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo1" 100 500 100 "" -o Test=ButAutomaticUpgrades |
0440d936 | 230 | testsuccess aptget dist-upgrade -y |
76b004d1 JAK |
231 | testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo1" 100 500 100 "" -o Test=ButAutomaticUpgrades |
232 | testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo1" 100 990 100 "" -o Test=ButAutomaticUpgrades -t stable | |
233 | testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo1" 990 500 990 "" -o Test=ButAutomaticUpgrades -t backports | |
5ed56f93 DK |
234 | |
235 | rm incoming/backports.main.pkglist incoming/backports.main.srclist | |
236 | buildsimplenativepackage "coolstuff" "all" "2.0~bpo2" "backports" | |
237 | setupaptarchive | |
238 | ||
239 | sed -i aptarchive/dists/backports/Release -e 1i"NotAutomatic: yes" | |
240 | signreleasefiles | |
451ea3d4 | 241 | aptgetupdate |
5ed56f93 | 242 | |
76b004d1 JAK |
243 | testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo1" 1 500 100 "" "2.0~bpo2" -o Test=NotAutomatic |
244 | testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo1" 1 990 100 "" "2.0~bpo2" -o Test=NotAutomatic -t stable | |
245 | testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo2" 990 500 100 "" "2.0~bpo2" -o Test=NotAutomatic -t backports | |
5ed56f93 DK |
246 | |
247 | sed -i aptarchive/dists/backports/Release -e 1i"ButAutomaticUpgrades: yes" | |
248 | signreleasefiles | |
451ea3d4 | 249 | aptgetupdate |
5ed56f93 | 250 | |
76b004d1 JAK |
251 | testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo2" 100 500 100 "" "2.0~bpo2" -o Test=ButAutomaticUpgrades |
252 | testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo2" 100 990 100 "" "2.0~bpo2" -o Test=ButAutomaticUpgrades -t stable | |
253 | testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo2" 990 500 100 "" "2.0~bpo2" -o Test=ButAutomaticUpgrades -t backports |