]>
Commit | Line | Data |
---|---|---|
a537ce19 MV |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
4 | TESTDIR=$(readlink -f $(dirname $0)) | |
5 | . $TESTDIR/framework | |
6 | ||
7 | setupenvironment | |
f74a6fa1 | 8 | configarchitecture 'i386' |
a537ce19 | 9 | |
81460e32 DK |
10 | LISTS='rootdir/etc/apt/sources.list.d/test.list' |
11 | SOURCES='rootdir/etc/apt/sources.list.d/test.sources' | |
f74a6fa1 | 12 | BASE='# some comment |
d2d68aaf | 13 | # that contains a : as well |
7f316a3f | 14 | #Types: meep |
d2d68aaf | 15 | |
7f316a3f | 16 | Types: deb |
75c10df1 | 17 | URIs: http://ftp.debian.org/debian |
6c069a22 | 18 | Suites: stable |
81460e32 | 19 | Components: main |
e67b9a23 | 20 | Description: summay |
f744c64c | 21 | and the long part' |
a537ce19 | 22 | |
81460e32 DK |
23 | msgcleantest() { |
24 | rm -f $LISTS $SOURCES | |
25 | msgtest "$@" | |
26 | } | |
27 | ||
28 | msgcleantest 'Test sources.list' 'old style' | |
29 | echo "deb http://ftp.debian.org/debian stable main" > $LISTS | |
30 | testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 | |
e93b4028 DK |
31 | 'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 |
32 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 " aptget update --print-uris | |
defe3231 JAK |
33 | |
34 | msgcleantest 'Test sources.list' 'old style with tabs' | |
35 | echo "deb http://ftp.debian.org/debian stable main" > $LISTS | |
36 | testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 | |
e93b4028 DK |
37 | 'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 |
38 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 " aptget update --print-uris | |
81460e32 DK |
39 | |
40 | msgcleantest 'Test sources.list' 'old style with options' | |
41 | echo "deb [trusted=yes arch+=armel,powerpc] http://ftp.debian.org/debian stable main" > $LISTS | |
42 | testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 | |
e93b4028 DK |
43 | 'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 |
44 | 'http://ftp.debian.org/debian/dists/stable/main/binary-armel/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-armel_Packages 0 | |
45 | 'http://ftp.debian.org/debian/dists/stable/main/binary-powerpc/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-powerpc_Packages 0 | |
46 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 " aptget update --print-uris | |
81460e32 DK |
47 | |
48 | msgcleantest 'Test sources.list' 'old style with comments' | |
49 | echo "deb http://ftp.debian.org/debian stable main # non-free" > $LISTS | |
50 | testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 | |
e93b4028 DK |
51 | 'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 |
52 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 " aptget update --print-uris | |
81460e32 DK |
53 | |
54 | msgcleantest 'Test sources.list' 'old style with option comments' | |
55 | echo "deb [trusted=yes#yeahreally] http://ftp.debian.org/debian stable main # non-free" > $LISTS | |
448c38bd | 56 | testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 |
e93b4028 DK |
57 | 'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 |
58 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 " aptget update --print-uris | |
a537ce19 | 59 | |
81460e32 | 60 | msgcleantest 'Test sources.list' 'simple deb822' |
4194c9ae | 61 | echo "$BASE" > $SOURCES |
448c38bd | 62 | testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 |
e93b4028 DK |
63 | 'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 |
64 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 " aptget update --print-uris | |
a537ce19 | 65 | |
81460e32 | 66 | msgcleantest 'Test deb822 with' 'two entries' |
a537ce19 | 67 | # Two entries |
4194c9ae MV |
68 | echo "$BASE" > $SOURCES |
69 | echo "" >> $SOURCES | |
70 | echo "$BASE" | sed s/stable/unstable/ >> $SOURCES | |
448c38bd | 71 | testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 |
e93b4028 DK |
72 | 'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 |
73 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 | |
448c38bd | 74 | 'http://ftp.debian.org/debian/dists/unstable/InRelease' ftp.debian.org_debian_dists_unstable_InRelease 0 |
e93b4028 DK |
75 | 'http://ftp.debian.org/debian/dists/unstable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_unstable_main_binary-i386_Packages 0 |
76 | 'http://ftp.debian.org/debian/dists/unstable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_unstable_main_i18n_Translation-en 0 " aptget update --print-uris | |
a537ce19 | 77 | |
d73743dd | 78 | # two suite entries |
81460e32 | 79 | msgcleantest 'Test deb822 with' 'two Suite entries' |
d73743dd | 80 | echo "$BASE" | sed -e "s/stable/stable unstable/" > $SOURCES |
448c38bd | 81 | testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 |
e93b4028 DK |
82 | 'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 |
83 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 | |
448c38bd | 84 | 'http://ftp.debian.org/debian/dists/unstable/InRelease' ftp.debian.org_debian_dists_unstable_InRelease 0 |
e93b4028 DK |
85 | 'http://ftp.debian.org/debian/dists/unstable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_unstable_main_binary-i386_Packages 0 |
86 | 'http://ftp.debian.org/debian/dists/unstable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_unstable_main_i18n_Translation-en 0 " aptget update --print-uris | |
a537ce19 | 87 | |
81460e32 | 88 | msgcleantest 'Test deb822' 'architecture option' |
4194c9ae | 89 | echo "$BASE" > $SOURCES |
41e6bd08 | 90 | echo "Architectures: amd64 armel" >> $SOURCES |
448c38bd | 91 | testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 |
e93b4028 DK |
92 | 'http://ftp.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-amd64_Packages 0 |
93 | 'http://ftp.debian.org/debian/dists/stable/main/binary-armel/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-armel_Packages 0 | |
94 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 " aptget update --print-uris | |
d2d68aaf | 95 | |
81460e32 DK |
96 | msgcleantest 'Test old-style' 'suite arch variable' |
97 | echo 'deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/' > $LISTS | |
98 | testequal --nomsg "'http://ftp.tlh.debian.org/universe/unstable/binary-i386/InRelease' ftp.tlh.debian.org_universe_unstable_binary-i386_InRelease 0 | |
e93b4028 DK |
99 | 'http://ftp.tlh.debian.org/universe/unstable/binary-i386/Packages.xz' ftp.tlh.debian.org_universe_unstable_binary-i386_Packages 0 |
100 | 'http://ftp.tlh.debian.org/universe/unstable/binary-i386/en.xz' ftp.tlh.debian.org_universe_unstable_binary-i386_en 0 " aptget update --print-uris | |
81460e32 DK |
101 | |
102 | msgcleantest 'Test deb822' 'suite arch variable' | |
103 | echo 'Types: deb | |
104 | URIs: http://ftp.tlh.debian.org/universe | |
105 | Suites: stable/binary-$(ARCH)/' > $SOURCES | |
106 | testequal --nomsg "'http://ftp.tlh.debian.org/universe/stable/binary-i386/InRelease' ftp.tlh.debian.org_universe_stable_binary-i386_InRelease 0 | |
e93b4028 DK |
107 | 'http://ftp.tlh.debian.org/universe/stable/binary-i386/Packages.xz' ftp.tlh.debian.org_universe_stable_binary-i386_Packages 0 |
108 | 'http://ftp.tlh.debian.org/universe/stable/binary-i386/en.xz' ftp.tlh.debian.org_universe_stable_binary-i386_en 0 " aptget update --print-uris | |
81460e32 DK |
109 | |
110 | msgcleantest 'Test old-style sources.list file which has' 'malformed dist' | |
111 | echo "deb http://ftp.debian.org" > $LISTS | |
112 | testequal --nomsg "E: Malformed entry 1 in list file $TMPWORKINGDIRECTORY/$LISTS (Suite) | |
4194c9ae MV |
113 | E: The list of sources could not be read." aptget update --print-uris |
114 | ||
81460e32 | 115 | msgcleantest 'Test deb822 sources.list file which has' 'malformed URI' |
7f316a3f | 116 | echo "Types: deb |
6c069a22 | 117 | Suites: stable |
4194c9ae | 118 | " > $SOURCES |
81460e32 | 119 | testequal --nomsg "E: Malformed entry 1 in sources file $TMPWORKINGDIRECTORY/$SOURCES (URI) |
4194c9ae | 120 | E: The list of sources could not be read." aptget update --print-uris |
e67b9a23 | 121 | |
7dd62ea9 MV |
122 | # with Enabled: false |
123 | echo "$BASE" > $SOURCES | |
124 | echo "Enabled: no" >> $SOURCES | |
125 | testempty aptget update --print-uris | |
75c10df1 MV |
126 | |
127 | # multiple URIs | |
81460e32 | 128 | msgcleantest 'Test deb822 sources.list file which has' 'Multiple URIs work' |
75c10df1 | 129 | echo "$BASE" | sed -e 's#http://ftp.debian.org/debian#http://ftp.debian.org/debian http://ftp.de.debian.org/debian#' > $SOURCES |
448c38bd | 130 | testequal --nomsg "'http://ftp.de.debian.org/debian/dists/stable/InRelease' ftp.de.debian.org_debian_dists_stable_InRelease 0 |
e93b4028 DK |
131 | 'http://ftp.de.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.de.debian.org_debian_dists_stable_main_binary-i386_Packages 0 |
132 | 'http://ftp.de.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.de.debian.org_debian_dists_stable_main_i18n_Translation-en 0 | |
448c38bd | 133 | 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 |
e93b4028 DK |
134 | 'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 |
135 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 " aptget update --print-uris | |
7f316a3f MV |
136 | |
137 | # multiple Type in one field | |
81460e32 | 138 | msgcleantest 'Test deb822 sources.list file which has' 'Multiple Types work' |
7f316a3f | 139 | echo "$BASE" | sed -e 's#Types: deb#Types: deb deb-src#' > $SOURCES |
448c38bd | 140 | testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 |
e93b4028 DK |
141 | 'http://ftp.debian.org/debian/dists/stable/main/source/Sources.xz' ftp.debian.org_debian_dists_stable_main_source_Sources 0 |
142 | 'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 | |
143 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 " aptget update --print-uris | |
6f43fac6 MV |
144 | |
145 | # a Suite | |
81460e32 | 146 | msgcleantest 'Test deb822 sources.list file which has' 'an exact path and no sections' |
6f43fac6 MV |
147 | cat > $SOURCES <<EOF |
148 | Types: deb | |
149 | URIs: http://emacs.naquadah.org | |
150 | Suites: stable/ | |
151 | EOF | |
448c38bd | 152 | testequal --nomsg "'http://emacs.naquadah.org/stable/InRelease' emacs.naquadah.org_stable_InRelease 0 |
e93b4028 DK |
153 | 'http://emacs.naquadah.org/stable/Packages.xz' emacs.naquadah.org_stable_Packages 0 |
154 | 'http://emacs.naquadah.org/stable/en.xz' emacs.naquadah.org_stable_en 0 " aptget update --print-uris |