summaryrefslogtreecommitdiff
path: root/test/integration/test-multiarch-allowed
blob: 2eb479c177efcaf350fc3a784c78ff5e2224303f (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
#!/bin/sh
set -e

TESTDIR=$(readlink -f $(dirname $0))
. $TESTDIR/framework
setupenvironment
configarchitecture 'amd64' 'i386'

insertpackage 'unstable' 'foo' 'amd64,i386' '1' 'Multi-Arch: allowed'
insertpackage 'unstable' 'needsfoo' 'amd64,i386' '1' 'Depends: foo'
insertpackage 'unstable' 'needsfooany' 'amd64,i386' '1' 'Depends: foo:any'
insertpackage 'unstable' 'needsfoover1' 'amd64,i386' '1' 'Depends: foo:any (>= 1)'
insertpackage 'unstable' 'needsfoover2' 'amd64,i386' '1' 'Depends: foo:any (>= 2)'
insertpackage 'unstable' 'hatesfoo' 'amd64' '1' 'Conflicts: foo'
insertpackage 'unstable' 'hatesfooany' 'amd64' '1' 'Conflicts: foo:any' # this makes no sense…
insertpackage 'unstable' 'hatesfoonative' 'amd64' '1' 'Conflicts: foo:amd64'

insertpackage 'unstable' 'coolfoo' 'amd64' '1' 'Multi-Arch:allowed
Provides: coolbar'
insertpackage 'unstable' 'coolfoover' 'amd64' '1' 'Multi-Arch:allowed
Provides: coolbar (= 2)'
insertpackage 'unstable' 'needscoolfoo' 'amd64' '1' 'Depends: coolfoo, coolbar'
insertpackage 'unstable' 'needscoolfooany' 'amd64' '1' 'Depends: coolfoo:any, coolbar:any'
insertpackage 'unstable' 'needscoolfoover0' 'amd64' '1' 'Depends: coolfoo:any (>= 1), coolbar'
insertpackage 'unstable' 'needscoolfoover1' 'amd64' '1' 'Depends: coolfoo:any (>= 1), coolbar (>= 1)'
insertpackage 'unstable' 'needscoolfoover2' 'amd64' '1' 'Depends: coolfoo:any (>= 2), coolbar (>= 1)'
insertpackage 'unstable' 'needscoolfoover3' 'amd64' '1' 'Depends: coolfoo:any (>= 2), coolbar (>= 3)'

setupaptarchive

BADPREFIX='Reading package lists...
Building dependency tree...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
'

solveableinsinglearch0() {
	testsuccessequal 'Reading package lists...
Building dependency tree...
The following additional packages will be installed:
  foo
The following NEW packages will be installed:
  foo needsfoo
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Inst foo (1 unstable [amd64])
Inst needsfoo (1 unstable [amd64])
Conf foo (1 unstable [amd64])
Conf needsfoo (1 unstable [amd64])' aptget install needsfoo -s
}
solveableinsinglearch0
testsuccessequal 'Reading package lists...
Building dependency tree...
The following additional packages will be installed:
  foo:i386
The following NEW packages will be installed:
  foo:i386 needsfoo:i386
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Inst foo:i386 (1 unstable [i386])
Inst needsfoo:i386 (1 unstable [i386])
Conf foo:i386 (1 unstable [i386])
Conf needsfoo:i386 (1 unstable [i386])' aptget install needsfoo:i386 -s
testfailureequal "$BADPREFIX
The following packages have unmet dependencies:
 needsfoo:i386 : Depends: foo:i386 but it is not going to be installed
E: Unable to correct problems, you have held broken packages." aptget install needsfoo:i386 foo:amd64 -s
testfailureequal "$BADPREFIX
The following packages have unmet dependencies:
 needsfoo : Depends: foo but it is not going to be installed
E: Unable to correct problems, you have held broken packages." aptget install needsfoo foo:i386 -s

solveableinsinglearch1() {
	testsuccessequal "Reading package lists...
Building dependency tree...
The following additional packages will be installed:
  foo
The following NEW packages will be installed:
  foo $1
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Inst foo (1 unstable [amd64])
Inst $1 (1 unstable [amd64])
Conf foo (1 unstable [amd64])
Conf $1 (1 unstable [amd64])" aptget install $1 -s
}

testneedsfooallgood() {
	solveableinsinglearch1 $1
	testsuccessequal "Reading package lists...
Building dependency tree...
The following additional packages will be installed:
  foo
The following NEW packages will be installed:
  foo $1:i386
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Inst foo (1 unstable [amd64])
Inst $1:i386 (1 unstable [i386])
Conf foo (1 unstable [amd64])
Conf $1:i386 (1 unstable [i386])" aptget install $1:i386 -s
	testsuccessequal "Reading package lists...
Building dependency tree...
The following NEW packages will be installed:
  foo:i386 $1:i386
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Inst foo:i386 (1 unstable [i386])
Inst $1:i386 (1 unstable [i386])
Conf foo:i386 (1 unstable [i386])
Conf $1:i386 (1 unstable [i386])" aptget install $1:i386 foo:i386 -s
	testsuccessequal "Reading package lists...
Building dependency tree...
The following NEW packages will be installed:
  foo:i386 $1
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Inst foo:i386 (1 unstable [i386])
Inst $1 (1 unstable [amd64])
Conf foo:i386 (1 unstable [i386])
Conf $1 (1 unstable [amd64])" aptget install $1 foo:i386 -s
}
testneedsfooallgood 'needsfooany'
testneedsfooallgood 'needsfoover1'

NEEDSFOO2NATIVE="$BADPREFIX
The following packages have unmet dependencies:
 needsfoover2 : Depends: foo:any (>= 2)
E: Unable to correct problems, you have held broken packages."
NEEDSFOO2FOREIGN="$BADPREFIX
The following packages have unmet dependencies:
 needsfoover2:i386 : Depends: foo:any:i386 (>= 2)
E: Unable to correct problems, you have held broken packages."
testfailureequal "$NEEDSFOO2NATIVE" aptget install needsfoover2 -s
testfailureequal "$NEEDSFOO2FOREIGN" aptget install needsfoover2:i386 -s
testfailureequal "$NEEDSFOO2FOREIGN" aptget install needsfoover2:i386 foo:i386 -s
testfailureequal "$NEEDSFOO2NATIVE" aptget install needsfoover2 foo:i386 -s

solveableinsinglearch2() {
	testfailureequal "$BADPREFIX
The following packages have unmet dependencies:
 hatesfoo : Conflicts: foo but 1 is to be installed
E: Unable to correct problems, you have held broken packages." aptget install foo hatesfoo -s
	# the message differs slightly between single and multiarch
	testfailuremsg 'E: Unable to correct problems, you have held broken packages.' aptget install foo hatesfooany -s
	testfailureequal "$BADPREFIX
The following packages have unmet dependencies:
 hatesfoonative : Conflicts: foo but 1 is to be installed
E: Unable to correct problems, you have held broken packages." aptget install foo hatesfoonative -s
}
solveableinsinglearch2
testfailureequal "$BADPREFIX
The following packages have unmet dependencies:
 hatesfoo : Conflicts: foo:i386 but 1 is to be installed
E: Unable to correct problems, you have held broken packages." aptget install foo:i386 hatesfoo -s
testfailureequal "$BADPREFIX
The following packages have unmet dependencies:
 hatesfooany : Conflicts: foo:any
               Conflicts: foo:any:i386
E: Unable to correct problems, you have held broken packages." aptget install foo:i386 hatesfooany -s
testsuccessequal 'Reading package lists...
Building dependency tree...
The following NEW packages will be installed:
  foo:i386 hatesfoonative
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Inst foo:i386 (1 unstable [i386])
Inst hatesfoonative (1 unstable [amd64])
Conf foo:i386 (1 unstable [i386])
Conf hatesfoonative (1 unstable [amd64])' aptget install foo:i386 hatesfoonative -s

solveableinsinglearch3() {
	testsuccessequal "Reading package lists...
Building dependency tree...
The following additional packages will be installed:
  coolfoo
The following NEW packages will be installed:
  coolfoo needscoolfoo
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Inst coolfoo (1 unstable [amd64])
Inst needscoolfoo (1 unstable [amd64])
Conf coolfoo (1 unstable [amd64])
Conf needscoolfoo (1 unstable [amd64])" aptget install needscoolfoo -s
	testsuccessequal "Reading package lists...
Building dependency tree...
The following additional packages will be installed:
  coolfoo
The following NEW packages will be installed:
  coolfoo coolfoover needscoolfoo
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Inst coolfoo (1 unstable [amd64])
Inst coolfoover (1 unstable [amd64])
Inst needscoolfoo (1 unstable [amd64])
Conf coolfoo (1 unstable [amd64])
Conf coolfoover (1 unstable [amd64])
Conf needscoolfoo (1 unstable [amd64])" aptget install needscoolfoo coolfoover -s
	testfailureequal "$BADPREFIX
The following packages have unmet dependencies:
 needscoolfooany : Depends: coolbar:any but it is not installable
E: Unable to correct problems, you have held broken packages." aptget install needscoolfooany -s
	testsuccessequal 'Reading package lists...
Building dependency tree...
The following additional packages will be installed:
  coolfoo
The following NEW packages will be installed:
  coolfoo needscoolfoover0
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Inst coolfoo (1 unstable [amd64])
Inst needscoolfoover0 (1 unstable [amd64])
Conf coolfoo (1 unstable [amd64])
Conf needscoolfoover0 (1 unstable [amd64])' aptget install needscoolfoover0 -s
	testsuccessequal 'Reading package lists...
Building dependency tree...
The following additional packages will be installed:
  coolfoo coolfoover
The following NEW packages will be installed:
  coolfoo coolfoover needscoolfoover1
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Inst coolfoo (1 unstable [amd64])
Inst coolfoover (1 unstable [amd64])
Inst needscoolfoover1 (1 unstable [amd64])
Conf coolfoo (1 unstable [amd64])
Conf coolfoover (1 unstable [amd64])
Conf needscoolfoover1 (1 unstable [amd64])' aptget install needscoolfoover1 -s
	testfailureequal "$BADPREFIX
The following packages have unmet dependencies:
 needscoolfoover2 : Depends: coolfoo:any (>= 2)
E: Unable to correct problems, you have held broken packages." aptget install needscoolfoover2 -s
	testfailureequal "$BADPREFIX
The following packages have unmet dependencies:
 needscoolfoover3 : Depends: coolfoo:any (>= 2)
                    Depends: coolbar (>= 3)
E: Unable to correct problems, you have held broken packages." aptget install needscoolfoover3 -s
}
solveableinsinglearch3

msgmsg 'switch to single architecture'
configarchitecture 'amd64'

solveableinsinglearch0
testfailureequal 'Reading package lists...
Building dependency tree...
E: Unable to locate package needsfoo' aptget install needsfoo:i386 -s

solveableinsinglearch1 'needsfooany'
solveableinsinglearch1 'needsfoover1'
testfailureequal "$NEEDSFOO2NATIVE" aptget install needsfoover2 -s
solveableinsinglearch2
solveableinsinglearch3