prepare 1.0.4 upload
[ntk/apt.git] / test / integration / test-sourceslist-arch-plusminus-options
CommitLineData
3d1be93d
DK
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6setupenvironment
7configarchitecture 'amd64'
8
9testbinaries() {
10 msgtest 'Test acquired archs for' "$1"
11 shift
12 rm -f gotarchs.list
13 aptget update --print-uris | grep -o '/binary-[a-z0-9-]\+/Packages' | sort > gotarchs.list
14 while [ -n "$1" ]; do
15 echo "/binary-${1}/Packages"
16 shift
17 done | sort | checkdiff - gotarchs.list && msgpass || msgfail
18}
19
20echo 'deb http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
21testbinaries 'default & native' 'amd64'
22configarchitecture 'amd64' 'i386'
23testbinaries 'default & native + foreign' 'amd64' 'i386'
24configarchitecture 'amd64' 'i386' 'armel' 'armhf' 'mips' 'mipsel'
25testbinaries 'default & native + many foreigns' 'amd64' 'i386' 'armel' 'armhf' 'mips' 'mipsel'
26
27echo 'deb [arch=amd64] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
28testbinaries 'arch=native' 'amd64'
29
30echo 'deb [arch=mips] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
31testbinaries 'arch=foreign' 'mips'
32
33echo 'deb [arch=kfreebsd-armel] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
34testbinaries 'arch=unknown' 'kfreebsd-armel'
35
36echo 'deb [arch=amd64,i386] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
37testbinaries 'arch=native,foreign' 'amd64' 'i386'
38
39echo 'deb [arch=mips,armhf] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
40testbinaries 'arch=foreign,foreign' 'mips' 'armhf'
41
42echo 'deb [arch=kfreebsd-armel,hurd-powerpc,mipsel,armel] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
43testbinaries 'arch=unknown,unknown,foreign,foreign' 'kfreebsd-armel' 'hurd-powerpc' 'mipsel' 'armel'
44
45echo 'deb [arch+=amd64] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
46testbinaries 'arch+=native' 'amd64' 'i386' 'armel' 'armhf' 'mips' 'mipsel'
47
48echo 'deb [arch+=mips] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
49testbinaries 'arch+=foreign' 'amd64' 'i386' 'armel' 'armhf' 'mips' 'mipsel'
50
51echo 'deb [arch+=mips,armhf,i386] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
52testbinaries 'arch+=foreign,foreign,foreign' 'amd64' 'i386' 'armel' 'armhf' 'mips' 'mipsel'
53
54echo 'deb [arch+=hurd-powerpc] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
55testbinaries 'arch+=unknown' 'amd64' 'i386' 'armel' 'armhf' 'mips' 'mipsel' 'hurd-powerpc'
56
57echo 'deb [arch+=mips,hurd-powerpc,i386] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
58testbinaries 'arch+=foreign,unknown,foreign' 'amd64' 'i386' 'armel' 'armhf' 'mips' 'mipsel' 'hurd-powerpc'
59
60echo 'deb [arch-=amd64] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
61testbinaries 'arch-=native' 'i386' 'armel' 'armhf' 'mips' 'mipsel'
62
63echo 'deb [arch-=mips] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
64testbinaries 'arch-=foreign' 'amd64' 'i386' 'armel' 'armhf' 'mipsel'
65
66echo 'deb [arch-=mips,armhf,i386] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
67testbinaries 'arch-=foreign,foreign,foreign' 'amd64' 'armel' 'mipsel'
68
69echo 'deb [arch-=hurd-powerpc] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
70testbinaries 'arch-=unknown' 'amd64' 'i386' 'armel' 'armhf' 'mips' 'mipsel'
71
72echo 'deb [arch-=mips,hurd-powerpc,i386] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
73testbinaries 'arch-=foreign,unknown,foreign' 'amd64' 'armel' 'armhf' 'mipsel'
74
75echo 'deb [arch=mips,i386 arch-=mips] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
76testbinaries 'substract from a arch-set' 'i386'
77
78echo 'deb [arch=mips,i386 arch-=mips] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
1e3f4083 79testbinaries 'useless subtract from a arch-set' 'i386'
3d1be93d
DK
80
81echo 'deb [arch=mips,i386 arch+=armhf] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
82testbinaries 'addition to a arch-set' 'i386' 'mips' 'armhf'
83
84echo 'deb [arch=mips,i386 arch+=mips] http://example.org/debian stable rocks' > rootdir/etc/apt/sources.list
85testbinaries 'useless addition to a arch-set' 'i386' 'mips'