]> git.saurik.com Git - apt.git/blame - test/integration/test-apt-update-failure-propagation
drop privileges in copy:// method as we do for file://
[apt.git] / test / integration / test-apt-update-failure-propagation
CommitLineData
002b1bc4
DK
1#!/bin/sh
2set -e
3
4TESTDIR="$(readlink -f "$(dirname "$0")")"
5. "$TESTDIR/framework"
6setupenvironment
7configarchitecture 'amd64'
8
9buildsimplenativepackage 'foo' 'all' '1' 'stable'
10buildsimplenativepackage 'foo' 'all' '2' 'sid'
11setupaptarchive --no-update
12
13NEWMETHODS="$(readlink -f rootdir)/usr/lib/apt/methods"
14OLDMETHODS="$(readlink -f rootdir/usr/lib/apt/methods)"
15rm "$NEWMETHODS"
16mkdir "$NEWMETHODS"
17backupIFS="$IFS"
18IFS="$(printf "\n\b")"
19for METH in $(find "$OLDMETHODS" ! -type d); do
20 ln -s "$OLDMETHODS/$(basename "$METH")" "$NEWMETHODS"
21done
22IFS="$backupIFS"
23
24changetohttpswebserver
25for FILE in rootdir/etc/apt/sources.list.d/*-sid-* ; do
26 sed -i -e 's#https:#http:#' -e "s#:${APTHTTPSPORT}/#:${APTHTTPPORT}/#" "$FILE"
27done
28
29pretest() {
30 rm -rf rootdir/var/lib/apt/lists
31 testsuccessequal 'N: Unable to locate package foo' aptcache policy foo -q=0
32}
33pretest
34testsuccess aptget update
35testsuccessequal "foo:
36 Installed: (none)
37 Candidate: 2
38 Version table:
39 2 500
1dd20368 40 500 http://localhost:${APTHTTPPORT} sid/main all Packages
002b1bc4 41 1 500
1dd20368 42 500 https://localhost:${APTHTTPSPORT} stable/main all Packages" aptcache policy foo
002b1bc4
DK
43
44pretest
45mv aptarchive/dists/stable aptarchive/dists/stable.good
995a4bf6 46testfailuremsg "E: The repository 'https://localhost:${APTHTTPSPORT} stable Release' does not have a Release file." apt update
1dd20368
DK
47testfailure aptget update -q=0 --no-allow-insecure-repositories
48testequalor2 "Hit:1 http://localhost:${APTHTTPPORT} sid InRelease
002b1bc4
DK
49Ign:2 https://localhost:${APTHTTPSPORT} stable InRelease
50 404 Not Found
51Err:3 https://localhost:${APTHTTPSPORT} stable Release
52 404 Not Found
53Reading package lists...
54E: The repository 'https://localhost:${APTHTTPSPORT} stable Release' does not have a Release file.
55N: Updating such a repository securily is impossible and therefore disabled by default.
1dd20368
DK
56N: See apt-secure(8) manpage for repository creation and user configuration details." "Ign:1 https://localhost:${APTHTTPSPORT} stable InRelease
57 404 Not Found
58Err:2 https://localhost:${APTHTTPSPORT} stable Release
59 404 Not Found
60Hit:3 http://localhost:${APTHTTPPORT} sid InRelease
61Reading package lists...
62E: The repository 'https://localhost:${APTHTTPSPORT} stable Release' does not have a Release file.
63N: Updating such a repository securily is impossible and therefore disabled by default.
64N: See apt-secure(8) manpage for repository creation and user configuration details." cat rootdir/tmp/testfailure.output
65
002b1bc4
DK
66mv aptarchive/dists/stable.good aptarchive/dists/stable
67posttest() {
68 testsuccessequal "foo:
69 Installed: (none)
70 Candidate: 2
71 Version table:
72 2 500
1dd20368 73 500 http://localhost:${APTHTTPPORT} sid/main all Packages" aptcache policy foo
002b1bc4
DK
74}
75posttest
76
77pretest
78rm "${NEWMETHODS}/https"
79testfailuremsg "E: The method driver ${TMPWORKINGDIRECTORY}/rootdir/usr/lib/apt/methods/https could not be found.
80W: Failed to fetch https://localhost:${APTHTTPSPORT}/dists/stable/InRelease
81E: Some index files failed to download. They have been ignored, or old ones used instead." aptget update
82posttest
83
84ln -s "$OLDMETHODS/https" "$NEWMETHODS"
85pretest
86for FILE in rootdir/etc/apt/sources.list.d/*-stable-* ; do
87 # lets see how many testservers run also Doom
88 sed -i -e "s#:${APTHTTPSPORT}/#:666/#" "$FILE"
89done
30c8107e
DK
90testwarning aptget update
91testequalor2 "W: Failed to fetch https://localhost:666/dists/stable/InRelease Failed to connect to localhost port 666: Connection refused
92W: Some index files failed to download. They have been ignored, or old ones used instead." "W: Failed to fetch https://localhost:666/dists/stable/InRelease couldn't connect to host
93W: Some index files failed to download. They have been ignored, or old ones used instead." tail -n 2 rootdir/tmp/testwarning.output
002b1bc4 94posttest