]>
Commit | Line | Data |
---|---|---|
a537ce19 MV |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
4 | TESTDIR=$(readlink -f $(dirname $0)) | |
5 | . $TESTDIR/framework | |
6 | ||
7 | setupenvironment | |
8 | configarchitecture "i386" | |
9 | ||
4194c9ae MV |
10 | SOURCES="rootdir/etc/apt/sources.list" |
11 | ||
12 | echo "deb http://ftp.debian.org/debian stable main" > $SOURCES | |
d2d68aaf MV |
13 | testequalwithmsg "Old style sources.list works" "'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 : |
14 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : | |
15 | 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 " aptget update --print-uris | |
16 | ||
17 | ||
18 | BASE="# some comment | |
19 | # that contains a : as well | |
20 | #Type: meep | |
21 | ||
22 | Type: deb | |
866e9fad | 23 | URI: http://ftp.debian.org/debian |
6c069a22 MV |
24 | Suites: stable |
25 | Sections: main | |
e67b9a23 MV |
26 | Description: summay |
27 | and the long part" | |
a537ce19 MV |
28 | |
29 | # simple case | |
4194c9ae | 30 | echo "$BASE" > $SOURCES |
d2d68aaf | 31 | testequalwithmsg "Simple deb822 sources.list works" "'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 : |
a537ce19 MV |
32 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : |
33 | 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 " aptget update --print-uris | |
34 | ||
a537ce19 | 35 | # Two entries |
4194c9ae MV |
36 | echo "$BASE" > $SOURCES |
37 | echo "" >> $SOURCES | |
38 | echo "$BASE" | sed s/stable/unstable/ >> $SOURCES | |
a537ce19 | 39 | |
d2d68aaf | 40 | testequalwithmsg "Multiple entries in deb822 sources.list work" "'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 : |
a537ce19 MV |
41 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : |
42 | 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 | |
43 | 'http://ftp.debian.org/debian/dists/unstable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_unstable_main_binary-i386_Packages 0 : | |
44 | 'http://ftp.debian.org/debian/dists/unstable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_unstable_main_i18n_Translation-en 0 : | |
45 | 'http://ftp.debian.org/debian/dists/unstable/InRelease' ftp.debian.org_debian_dists_unstable_InRelease 0 " aptget update --print-uris | |
46 | ||
d73743dd MV |
47 | # two suite entries |
48 | echo "$BASE" | sed -e "s/stable/stable unstable/" > $SOURCES | |
49 | testequalwithmsg "Two Suite entries deb822 sources.list work" "'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 : | |
50 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : | |
51 | 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 | |
52 | 'http://ftp.debian.org/debian/dists/unstable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_unstable_main_binary-i386_Packages 0 : | |
53 | 'http://ftp.debian.org/debian/dists/unstable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_unstable_main_i18n_Translation-en 0 : | |
54 | 'http://ftp.debian.org/debian/dists/unstable/InRelease' ftp.debian.org_debian_dists_unstable_InRelease 0 " aptget update --print-uris | |
a537ce19 MV |
55 | |
56 | # ARCH option | |
4194c9ae | 57 | echo "$BASE" > $SOURCES |
7037aab5 | 58 | echo "Architectures: amd64,armel" >> $SOURCES |
a537ce19 | 59 | |
d2d68aaf | 60 | testequalwithmsg "Arch: option in deb822 sources.list works" "'http://ftp.debian.org/debian/dists/stable/main/binary-amd64/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-amd64_Packages 0 : |
a537ce19 MV |
61 | 'http://ftp.debian.org/debian/dists/stable/main/binary-armel/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-armel_Packages 0 : |
62 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : | |
63 | 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 " aptget update --print-uris | |
d2d68aaf | 64 | |
4194c9ae MV |
65 | # invalid sources.list file |
66 | echo "deb http://ftp.debian.org" > $SOURCES | |
67 | ||
68 | testequalwithmsg "Invalid sources.list file gives proper error" "E: Malformed line 1 in source list $TMPWORKINGDIRECTORY/rootdir/etc/apt/sources.list (dist) | |
69 | E: The list of sources could not be read." aptget update --print-uris | |
70 | ||
71 | echo "Type: deb | |
6c069a22 | 72 | Suites: stable |
4194c9ae MV |
73 | " > $SOURCES |
74 | ||
75 | testequalwithmsg "Invalid deb822 sources.list file gives proper error" "E: Malformed stanza 0 in source list $TMPWORKINGDIRECTORY/rootdir/etc/apt/sources.list (URI parse) | |
76 | E: The list of sources could not be read." aptget update --print-uris | |
e67b9a23 | 77 | |
7dd62ea9 MV |
78 | # with Enabled: false |
79 | echo "$BASE" > $SOURCES | |
80 | echo "Enabled: no" >> $SOURCES | |
81 | testempty aptget update --print-uris |