]>
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 | |
a537ce19 MV |
26 | Comment: Some random string |
27 | that can be very long" | |
28 | ||
29 | # simple case | |
4194c9ae | 30 | echo "$BASE" > $SOURCES |
a537ce19 | 31 | |
d2d68aaf | 32 | 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 |
33 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : |
34 | 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 " aptget update --print-uris | |
35 | ||
a537ce19 | 36 | # Two entries |
4194c9ae MV |
37 | echo "$BASE" > $SOURCES |
38 | echo "" >> $SOURCES | |
39 | echo "$BASE" | sed s/stable/unstable/ >> $SOURCES | |
a537ce19 | 40 | |
d2d68aaf | 41 | 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 |
42 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : |
43 | 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 | |
44 | 'http://ftp.debian.org/debian/dists/unstable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_unstable_main_binary-i386_Packages 0 : | |
45 | 'http://ftp.debian.org/debian/dists/unstable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_unstable_main_i18n_Translation-en 0 : | |
46 | 'http://ftp.debian.org/debian/dists/unstable/InRelease' ftp.debian.org_debian_dists_unstable_InRelease 0 " aptget update --print-uris | |
47 | ||
d73743dd MV |
48 | # two suite entries |
49 | echo "$BASE" | sed -e "s/stable/stable unstable/" > $SOURCES | |
50 | 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 : | |
51 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : | |
52 | 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 | |
53 | 'http://ftp.debian.org/debian/dists/unstable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_unstable_main_binary-i386_Packages 0 : | |
54 | 'http://ftp.debian.org/debian/dists/unstable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_unstable_main_i18n_Translation-en 0 : | |
55 | 'http://ftp.debian.org/debian/dists/unstable/InRelease' ftp.debian.org_debian_dists_unstable_InRelease 0 " aptget update --print-uris | |
a537ce19 MV |
56 | |
57 | # ARCH option | |
4194c9ae | 58 | echo "$BASE" > $SOURCES |
7037aab5 | 59 | echo "Architectures: amd64,armel" >> $SOURCES |
a537ce19 | 60 | |
d2d68aaf | 61 | 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 |
62 | 'http://ftp.debian.org/debian/dists/stable/main/binary-armel/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-armel_Packages 0 : |
63 | 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : | |
64 | 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 " aptget update --print-uris | |
d2d68aaf | 65 | |
4194c9ae MV |
66 | # invalid sources.list file |
67 | echo "deb http://ftp.debian.org" > $SOURCES | |
68 | ||
69 | testequalwithmsg "Invalid sources.list file gives proper error" "E: Malformed line 1 in source list $TMPWORKINGDIRECTORY/rootdir/etc/apt/sources.list (dist) | |
70 | E: The list of sources could not be read." aptget update --print-uris | |
71 | ||
72 | echo "Type: deb | |
6c069a22 | 73 | Suites: stable |
4194c9ae MV |
74 | " > $SOURCES |
75 | ||
76 | testequalwithmsg "Invalid deb822 sources.list file gives proper error" "E: Malformed stanza 0 in source list $TMPWORKINGDIRECTORY/rootdir/etc/apt/sources.list (URI parse) | |
77 | E: The list of sources could not be read." aptget update --print-uris |