diff options
author | Michael Vogt <mvo@ubuntu.com> | 2015-05-22 17:01:03 +0200 |
---|---|---|
committer | Michael Vogt <mvo@ubuntu.com> | 2015-05-22 17:01:03 +0200 |
commit | 4fc6b7570c3e97b65c118b58cdf6729fa94c9b03 (patch) | |
tree | f952bb728b9c23f1eebc8f1a87f527ed7c9b0b36 /test/integration/test-bug-lp1445239-download-loop | |
parent | 6bf93605fdb8e858d3f0a79a124c1d39f760094d (diff) | |
parent | 65759e00eff0513c34f584b99420b72fe0e5073e (diff) |
Merge branch 'debian/sid' into debian/experimental
Conflicts:
apt-pkg/pkgcache.h
debian/changelog
methods/https.cc
methods/server.cc
test/integration/test-apt-download-progress
Diffstat (limited to 'test/integration/test-bug-lp1445239-download-loop')
-rwxr-xr-x | test/integration/test-bug-lp1445239-download-loop | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/integration/test-bug-lp1445239-download-loop b/test/integration/test-bug-lp1445239-download-loop new file mode 100755 index 000000000..4e4de67bd --- /dev/null +++ b/test/integration/test-bug-lp1445239-download-loop @@ -0,0 +1,29 @@ +#!/bin/sh +# +# this is a regression test for LP: #1445239 where a partial download can +# trigger an endless hang of the download method +# + +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture 'amd64' + +changetowebserver +webserverconfig 'aptwebserver::support::range' 'true' + +TESTFILE='aptarchive/testfile' +dd if=/dev/zero of=$TESTFILE bs=100k count=1 2>/dev/null + +DOWNLOADLOG='rootdir/tmp/testdownloadfile.log' + +TARGET=./downloaded/testfile-downloaded +dd if=/dev/zero of=$TARGET bs=99k count=1 2>/dev/null +if ! downloadfile http://localhost:8080/testfile "$TARGET" > "$DOWNLOADLOG"; then + cat >&2 "$DOWNLOADLOG" + msgfail +else + msgpass +fi |