blob: 04542e0cd4e6b640a65e048c151db47598fc0a38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
set -e
TESTDIR="$(readlink -f "$(dirname "$0")")"
. "$TESTDIR/framework"
setupenvironment
configarchitecture 'amd64'
buildsimplenativepackage 'unrelated' 'all' '0.5~squeeze1' 'unstable'
setupaptarchive --no-update
changetowebserver
testsuccess apt update
rm -rf rootdir/var/lib/apt/lists
export http_proxy=enrico:password@proxy-cache.localnet:3128
testfailure apt update
unset http_proxy
testsuccess grep 'Unsupported proxy configured' rootdir/tmp/testfailure.output
changetohttpswebserver
testsuccess apt update
rm -rf rootdir/var/lib/apt/lists
export http_proxy=enrico:password@proxy-cache.localnet:3128
testfailure apt update
unset http_proxy
testsuccess grep 'Unsupported proxy configured' rootdir/tmp/testfailure.output
|