|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
|
|
|
TESTDIR=$(readlink -f $(dirname $0))
|
|
|
|
. $TESTDIR/framework
|
|
|
|
|
|
|
|
setupenvironment
|
|
|
|
configarchitecture "i386"
|
|
|
|
|
|
|
|
SOURCES="rootdir/etc/apt/sources.list"
|
|
|
|
|
|
|
|
echo "deb http://ftp.debian.org/debian stable main" > $SOURCES
|
|
|
|
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 :
|
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 :
|
|
|
|
'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 " aptget update --print-uris
|
|
|
|
|
|
|
|
|
|
|
|
BASE="# some comment
|
|
|
|
# that contains a : as well
|
|
|
|
#Type: meep
|
|
|
|
|
|
|
|
Type: deb
|
|
|
|
Uri: http://ftp.debian.org/debian
|
|
|
|
Suite: stable
|
|
|
|
Section: main
|
|
|
|
Comment: Some random string
|
|
|
|
that can be very long"
|
|
|
|
|
|
|
|
# simple case
|
|
|
|
echo "$BASE" > $SOURCES
|
|
|
|
|
|
|
|
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 :
|
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 :
|
|
|
|
'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 " aptget update --print-uris
|
|
|
|
|
|
|
|
# Two entries
|
|
|
|
echo "$BASE" > $SOURCES
|
|
|
|
echo "" >> $SOURCES
|
|
|
|
echo "$BASE" | sed s/stable/unstable/ >> $SOURCES
|
|
|
|
|
|
|
|
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 :
|
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 :
|
|
|
|
'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
|
'http://ftp.debian.org/debian/dists/unstable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_unstable_main_binary-i386_Packages 0 :
|
|
|
|
'http://ftp.debian.org/debian/dists/unstable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_unstable_main_i18n_Translation-en 0 :
|
|
|
|
'http://ftp.debian.org/debian/dists/unstable/InRelease' ftp.debian.org_debian_dists_unstable_InRelease 0 " aptget update --print-uris
|
|
|
|
|
|
|
|
|
|
|
|
# ARCH option
|
|
|
|
echo "$BASE" > $SOURCES
|
|
|
|
echo "Architectures: amd64,armel" >> $SOURCES
|
|
|
|
|
|
|
|
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 :
|
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-armel/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-armel_Packages 0 :
|
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 :
|
|
|
|
'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 " aptget update --print-uris
|
|
|
|
|
|
|
|
# invalid sources.list file
|
|
|
|
echo "deb http://ftp.debian.org" > $SOURCES
|
|
|
|
|
|
|
|
testequalwithmsg "Invalid sources.list file gives proper error" "E: Malformed line 1 in source list $TMPWORKINGDIRECTORY/rootdir/etc/apt/sources.list (dist)
|
|
|
|
E: The list of sources could not be read." aptget update --print-uris
|
|
|
|
|
|
|
|
echo "Type: deb
|
|
|
|
Suite: stable
|
|
|
|
" > $SOURCES
|
|
|
|
|
|
|
|
testequalwithmsg "Invalid deb822 sources.list file gives proper error" "E: Malformed stanza 0 in source list $TMPWORKINGDIRECTORY/rootdir/etc/apt/sources.list (URI parse)
|
|
|
|
E: The list of sources could not be read." aptget update --print-uris
|