diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 09:59:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 09:59:37 +0000 |
commit | 76e2632459410dec81337edb6a9fee33c9a660f3 (patch) | |
tree | a73345df208eede4a4daad340515c9328f34625c /test/integration/test-bug-990555-https-proxy-for-http | |
parent | Initial commit. (diff) | |
download | apt-76e2632459410dec81337edb6a9fee33c9a660f3.tar.xz apt-76e2632459410dec81337edb6a9fee33c9a660f3.zip |
Adding upstream version 2.7.12.upstream/2.7.12
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/integration/test-bug-990555-https-proxy-for-http')
-rwxr-xr-x | test/integration/test-bug-990555-https-proxy-for-http | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/test/integration/test-bug-990555-https-proxy-for-http b/test/integration/test-bug-990555-https-proxy-for-http new file mode 100755 index 0000000..f43abfd --- /dev/null +++ b/test/integration/test-bug-990555-https-proxy-for-http @@ -0,0 +1,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 .. |