|
@@ -8,6 +8,7 @@ setupenvironment
|
|
|
configarchitecture 'i386'
|
|
configarchitecture 'i386'
|
|
|
|
|
|
|
|
LISTS='rootdir/etc/apt/sources.list.d/test.list'
|
|
LISTS='rootdir/etc/apt/sources.list.d/test.list'
|
|
|
|
|
+ABSLISTS="$(readlink -f $LISTS)"
|
|
|
SOURCES='rootdir/etc/apt/sources.list.d/test.sources'
|
|
SOURCES='rootdir/etc/apt/sources.list.d/test.sources'
|
|
|
BASE='# some comment
|
|
BASE='# some comment
|
|
|
# that contains a : as well
|
|
# that contains a : as well
|
|
@@ -27,19 +28,39 @@ msgcleantest() {
|
|
|
|
|
|
|
|
msgcleantest 'Test sources.list' 'old style'
|
|
msgcleantest 'Test sources.list' 'old style'
|
|
|
echo "deb http://ftp.debian.org/debian stable main" > $LISTS
|
|
echo "deb http://ftp.debian.org/debian stable main" > $LISTS
|
|
|
-testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
|
'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
|
|
'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
|
|
|
|
|
|
|
|
msgcleantest 'Test sources.list' 'old style with tabs'
|
|
msgcleantest 'Test sources.list' 'old style with tabs'
|
|
|
echo "deb http://ftp.debian.org/debian stable main" > $LISTS
|
|
echo "deb http://ftp.debian.org/debian stable main" > $LISTS
|
|
|
-testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
|
'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
|
|
'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
|
|
|
|
|
|
|
|
|
|
+msgcleantest 'Test sources.list' 'old style with forgotten end for options'
|
|
|
|
|
+echo "deb [trusted=yes arch+=armel,powerpc http://ftp.debian.org/debian stable main" > $LISTS
|
|
|
|
|
+testfailureequal "E: Malformed entry 1 in list file $ABSLISTS ([option] not assignment)
|
|
|
|
|
+E: The list of sources could not be read." aptget update --print-uris
|
|
|
|
|
+
|
|
|
|
|
+msgcleantest 'Test sources.list' 'old style with stray ] instead of options'
|
|
|
|
|
+echo "deb ] http://ftp.debian.org/debian stable main" > $LISTS
|
|
|
|
|
+testfailureequal "E: Malformed entry 1 in list file $ABSLISTS (URI parse)
|
|
|
|
|
+E: The list of sources could not be read." aptget update --print-uris
|
|
|
|
|
+
|
|
|
|
|
+msgcleantest 'Test sources.list' 'old style options no key'
|
|
|
|
|
+echo "deb [=test] http://ftp.debian.org/debian stable main" > $LISTS
|
|
|
|
|
+testfailureequal "E: Malformed entry 1 in list file $ABSLISTS ([option] no key)
|
|
|
|
|
+E: The list of sources could not be read." aptget update --print-uris
|
|
|
|
|
+
|
|
|
|
|
+msgcleantest 'Test sources.list' 'old style options no value'
|
|
|
|
|
+echo "deb [test=] http://ftp.debian.org/debian stable main" > $LISTS
|
|
|
|
|
+testfailureequal "E: Malformed entry 1 in list file $ABSLISTS ([option] no value)
|
|
|
|
|
+E: The list of sources could not be read." aptget update --print-uris
|
|
|
|
|
+
|
|
|
msgcleantest 'Test sources.list' 'old style with options'
|
|
msgcleantest 'Test sources.list' 'old style with options'
|
|
|
echo "deb [trusted=yes arch+=armel,powerpc] http://ftp.debian.org/debian stable main" > $LISTS
|
|
echo "deb [trusted=yes arch+=armel,powerpc] http://ftp.debian.org/debian stable main" > $LISTS
|
|
|
-testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-armel/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-armel_Packages 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-armel/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-armel_Packages 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-powerpc/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-powerpc_Packages 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-powerpc/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-powerpc_Packages 0
|
|
@@ -47,19 +68,19 @@ testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.deb
|
|
|
|
|
|
|
|
msgcleantest 'Test sources.list' 'old style with comments'
|
|
msgcleantest 'Test sources.list' 'old style with comments'
|
|
|
echo "deb http://ftp.debian.org/debian stable main # non-free" > $LISTS
|
|
echo "deb http://ftp.debian.org/debian stable main # non-free" > $LISTS
|
|
|
-testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
|
'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
|
|
'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
|
|
|
|
|
|
|
|
msgcleantest 'Test sources.list' 'old style with option comments'
|
|
msgcleantest 'Test sources.list' 'old style with option comments'
|
|
|
echo "deb [trusted=yes#yeahreally] http://ftp.debian.org/debian stable main # non-free" > $LISTS
|
|
echo "deb [trusted=yes#yeahreally] http://ftp.debian.org/debian stable main # non-free" > $LISTS
|
|
|
-testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
|
'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
|
|
'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
|
|
|
|
|
|
|
|
msgcleantest 'Test sources.list' 'simple deb822'
|
|
msgcleantest 'Test sources.list' 'simple deb822'
|
|
|
echo "$BASE" > $SOURCES
|
|
echo "$BASE" > $SOURCES
|
|
|
-testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
|
'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
|
|
'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
|
|
|
|
|
|
|
@@ -68,7 +89,7 @@ msgcleantest 'Test deb822 with' 'two entries'
|
|
|
echo "$BASE" > $SOURCES
|
|
echo "$BASE" > $SOURCES
|
|
|
echo "" >> $SOURCES
|
|
echo "" >> $SOURCES
|
|
|
echo "$BASE" | sed s/stable/unstable/ >> $SOURCES
|
|
echo "$BASE" | sed s/stable/unstable/ >> $SOURCES
|
|
|
-testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0
|
|
|
'http://ftp.debian.org/debian/dists/unstable/InRelease' ftp.debian.org_debian_dists_unstable_InRelease 0
|
|
'http://ftp.debian.org/debian/dists/unstable/InRelease' ftp.debian.org_debian_dists_unstable_InRelease 0
|
|
@@ -78,7 +99,7 @@ testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.deb
|
|
|
# two suite entries
|
|
# two suite entries
|
|
|
msgcleantest 'Test deb822 with' 'two Suite entries'
|
|
msgcleantest 'Test deb822 with' 'two Suite entries'
|
|
|
echo "$BASE" | sed -e "s/stable/stable unstable/" > $SOURCES
|
|
echo "$BASE" | sed -e "s/stable/stable unstable/" > $SOURCES
|
|
|
-testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.xz' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0
|
|
|
'http://ftp.debian.org/debian/dists/unstable/InRelease' ftp.debian.org_debian_dists_unstable_InRelease 0
|
|
'http://ftp.debian.org/debian/dists/unstable/InRelease' ftp.debian.org_debian_dists_unstable_InRelease 0
|
|
@@ -88,14 +109,14 @@ testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.deb
|
|
|
msgcleantest 'Test deb822' 'architecture option'
|
|
msgcleantest 'Test deb822' 'architecture option'
|
|
|
echo "$BASE" > $SOURCES
|
|
echo "$BASE" > $SOURCES
|
|
|
echo "Architectures: amd64 armel" >> $SOURCES
|
|
echo "Architectures: amd64 armel" >> $SOURCES
|
|
|
-testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-amd64_Packages 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-amd64_Packages 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-armel/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-armel_Packages 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-armel/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-armel_Packages 0
|
|
|
'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
|
|
'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
|
|
|
|
|
|
|
|
msgcleantest 'Test old-style' 'suite arch variable'
|
|
msgcleantest 'Test old-style' 'suite arch variable'
|
|
|
echo 'deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/' > $LISTS
|
|
echo 'deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/' > $LISTS
|
|
|
-testequal --nomsg "'http://ftp.tlh.debian.org/universe/unstable/binary-i386/InRelease' ftp.tlh.debian.org_universe_unstable_binary-i386_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://ftp.tlh.debian.org/universe/unstable/binary-i386/InRelease' ftp.tlh.debian.org_universe_unstable_binary-i386_InRelease 0
|
|
|
'http://ftp.tlh.debian.org/universe/unstable/binary-i386/Packages.xz' ftp.tlh.debian.org_universe_unstable_binary-i386_Packages 0
|
|
'http://ftp.tlh.debian.org/universe/unstable/binary-i386/Packages.xz' ftp.tlh.debian.org_universe_unstable_binary-i386_Packages 0
|
|
|
'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
|
|
'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
|
|
|
|
|
|
|
@@ -103,20 +124,20 @@ msgcleantest 'Test deb822' 'suite arch variable'
|
|
|
echo 'Types: deb
|
|
echo 'Types: deb
|
|
|
URIs: http://ftp.tlh.debian.org/universe
|
|
URIs: http://ftp.tlh.debian.org/universe
|
|
|
Suites: stable/binary-$(ARCH)/' > $SOURCES
|
|
Suites: stable/binary-$(ARCH)/' > $SOURCES
|
|
|
-testequal --nomsg "'http://ftp.tlh.debian.org/universe/stable/binary-i386/InRelease' ftp.tlh.debian.org_universe_stable_binary-i386_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://ftp.tlh.debian.org/universe/stable/binary-i386/InRelease' ftp.tlh.debian.org_universe_stable_binary-i386_InRelease 0
|
|
|
'http://ftp.tlh.debian.org/universe/stable/binary-i386/Packages.xz' ftp.tlh.debian.org_universe_stable_binary-i386_Packages 0
|
|
'http://ftp.tlh.debian.org/universe/stable/binary-i386/Packages.xz' ftp.tlh.debian.org_universe_stable_binary-i386_Packages 0
|
|
|
'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
|
|
'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
|
|
|
|
|
|
|
|
msgcleantest 'Test old-style sources.list file which has' 'malformed dist'
|
|
msgcleantest 'Test old-style sources.list file which has' 'malformed dist'
|
|
|
echo "deb http://ftp.debian.org" > $LISTS
|
|
echo "deb http://ftp.debian.org" > $LISTS
|
|
|
-testequal --nomsg "E: Malformed entry 1 in list file $TMPWORKINGDIRECTORY/$LISTS (Suite)
|
|
|
|
|
|
|
+testfailureequal --nomsg "E: Malformed entry 1 in list file $TMPWORKINGDIRECTORY/$LISTS (Suite)
|
|
|
E: The list of sources could not be read." aptget update --print-uris
|
|
E: The list of sources could not be read." aptget update --print-uris
|
|
|
|
|
|
|
|
msgcleantest 'Test deb822 sources.list file which has' 'malformed URI'
|
|
msgcleantest 'Test deb822 sources.list file which has' 'malformed URI'
|
|
|
echo "Types: deb
|
|
echo "Types: deb
|
|
|
Suites: stable
|
|
Suites: stable
|
|
|
" > $SOURCES
|
|
" > $SOURCES
|
|
|
-testequal --nomsg "E: Malformed entry 1 in sources file $TMPWORKINGDIRECTORY/$SOURCES (URI)
|
|
|
|
|
|
|
+testfailureequal --nomsg "E: Malformed entry 1 in sources file $TMPWORKINGDIRECTORY/$SOURCES (URI)
|
|
|
E: The list of sources could not be read." aptget update --print-uris
|
|
E: The list of sources could not be read." aptget update --print-uris
|
|
|
|
|
|
|
|
# with Enabled: false
|
|
# with Enabled: false
|
|
@@ -127,7 +148,7 @@ testempty aptget update --print-uris
|
|
|
# multiple URIs
|
|
# multiple URIs
|
|
|
msgcleantest 'Test deb822 sources.list file which has' 'Multiple URIs work'
|
|
msgcleantest 'Test deb822 sources.list file which has' 'Multiple URIs work'
|
|
|
echo "$BASE" | sed -e 's#http://ftp.debian.org/debian#http://ftp.debian.org/debian http://ftp.de.debian.org/debian#' > $SOURCES
|
|
echo "$BASE" | sed -e 's#http://ftp.debian.org/debian#http://ftp.debian.org/debian http://ftp.de.debian.org/debian#' > $SOURCES
|
|
|
-testequal --nomsg "'http://ftp.de.debian.org/debian/dists/stable/InRelease' ftp.de.debian.org_debian_dists_stable_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://ftp.de.debian.org/debian/dists/stable/InRelease' ftp.de.debian.org_debian_dists_stable_InRelease 0
|
|
|
'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
|
|
'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
|
|
|
'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
|
|
'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
|
|
|
'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
@@ -137,7 +158,7 @@ testequal --nomsg "'http://ftp.de.debian.org/debian/dists/stable/InRelease' ftp
|
|
|
# multiple Type in one field
|
|
# multiple Type in one field
|
|
|
msgcleantest 'Test deb822 sources.list file which has' 'Multiple Types work'
|
|
msgcleantest 'Test deb822 sources.list file which has' 'Multiple Types work'
|
|
|
echo "$BASE" | sed -e 's#Types: deb#Types: deb deb-src#' > $SOURCES
|
|
echo "$BASE" | sed -e 's#Types: deb#Types: deb deb-src#' > $SOURCES
|
|
|
-testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/source/Sources.xz' ftp.debian.org_debian_dists_stable_main_source_Sources 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/source/Sources.xz' ftp.debian.org_debian_dists_stable_main_source_Sources 0
|
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.xz' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0
|
|
|
'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
|
|
'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
|
|
@@ -149,6 +170,6 @@ Types: deb
|
|
|
URIs: http://emacs.naquadah.org
|
|
URIs: http://emacs.naquadah.org
|
|
|
Suites: stable/
|
|
Suites: stable/
|
|
|
EOF
|
|
EOF
|
|
|
-testequal --nomsg "'http://emacs.naquadah.org/stable/InRelease' emacs.naquadah.org_stable_InRelease 0
|
|
|
|
|
|
|
+testsuccessequal --nomsg "'http://emacs.naquadah.org/stable/InRelease' emacs.naquadah.org_stable_InRelease 0
|
|
|
'http://emacs.naquadah.org/stable/Packages.xz' emacs.naquadah.org_stable_Packages 0
|
|
'http://emacs.naquadah.org/stable/Packages.xz' emacs.naquadah.org_stable_Packages 0
|
|
|
'http://emacs.naquadah.org/stable/en.xz' emacs.naquadah.org_stable_en 0 " aptget update --print-uris
|
|
'http://emacs.naquadah.org/stable/en.xz' emacs.naquadah.org_stable_en 0 " aptget update --print-uris
|