blob: f43abfd924dd67ddd83ee4223c57e97521d227f8 (
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
34
35
36
37
|
#!/bin/sh
set -e
TESTDIR="$(readlink -f "$(dirname "$0")")"
. "$TESTDIR/framework"
setupenvironment
configarchitecture 'amd64'
buildsimplenativepackage 'unrelated' 'all' '1' 'unstable'
setupaptarchive --no-update
changetowebserver --request-absolute='uri'
changetohttpswebserver --no-rewrite
msgtest 'Check that non-absolute paths are' 'not accepted'
testfailure --nomsg aptget update --allow-insecure-repositories
echo "Acquire::http::Proxy \"https://localhost:${APTHTTPSPORT}\";" > rootdir/etc/apt/apt.conf.d/99proxy
msgtest 'Check that requests to https proxies' 'work from http'
testsuccess --nomsg aptget update
testsuccessequal 'Reading package lists...
Building dependency tree...
The following NEW packages will be installed:
unrelated
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Inst unrelated (1 unstable [all])
Conf unrelated (1 unstable [all])' apt install unrelated -s
testsuccess apt download unrelated --print-uris
testfailure grep 'https:' rootdir/tmp/testsuccess.output
cd downloaded
testsuccess apt download unrelated
testsuccess test -s 'unrelated_1_all.deb'
cd ..
|