]>
Commit | Line | Data |
---|---|---|
d13f2ef5 MV |
1 | #!/bin/sh |
2 | # | |
3 | # ensure downloading sends progress as a regression test for commit 9127d7ae | |
4 | # | |
5 | set -e | |
6 | ||
3abb6a6a DK |
7 | TESTDIR="$(readlink -f "$(dirname "$0")")" |
8 | . "$TESTDIR/framework" | |
d13f2ef5 MV |
9 | |
10 | setupenvironment | |
11 | changetohttpswebserver | |
12 | ||
13 | assertprogress() { | |
14 | T="$1" | |
15 | testsuccess grep "dlstatus:1:0:Retrieving file 1 of 1" "$T" | |
5146566b | 16 | if ! grep -E -q "dlstatus:1:(0\..*|([1-9](\..*)?)|[1-9][0-9](\..*)?):Retrieving file 1 of 1" "$T"; then |
d13f2ef5 MV |
17 | cat "$T" |
18 | msgfail "Failed to detect download progress" | |
19 | fi | |
20 | testsuccess grep "dlstatus:1:100:Retrieving file 1 of 1" "$T" | |
d13f2ef5 MV |
21 | } |
22 | ||
23 | # we need to ensure the file is reasonable big so that apt has a chance to | |
24 | # actually report progress - but not too big to ensure its not delaying the | |
25 | # test too much | |
26 | TESTFILE=testfile.big | |
df70a3ba | 27 | testsuccess dd if=/dev/zero of=./aptarchive/$TESTFILE bs=16000k count=1 |
d13f2ef5 | 28 | |
34faa8f7 DK |
29 | OPT='-o APT::Status-Fd=3 -o Debug::pkgAcquire::Worker=1 -o Debug::Acquire::http=1 -o Debug::Acquire::https=1' |
30 | ||
d13f2ef5 | 31 | msgtest 'download progress works via' 'http' |
dea87131 JAK |
32 | for i in 1 2 3 4 5 6 7 8 9 10; do |
33 | exec 3> apt-progress-http.log | |
df70a3ba | 34 | testsuccess --nomsg apthelper download-file "http://localhost:${APTHTTPPORT}/$TESTFILE" ./downloaded/http-$TESTFILE $OPT -o Acquire::http::Dl-Limit=$((16000/i)) |
dea87131 JAK |
35 | if [ "$(wc -l apt-progress-http.log | awk '{print $1}')" -ge 3 ]; then |
36 | break | |
37 | fi | |
38 | done | |
39 | assertprogress apt-progress-http.log | |
d13f2ef5 MV |
40 | |
41 | msgtest 'download progress works via' 'https' | |
dea87131 JAK |
42 | for i in 1 2 3 4 5 6 7 8 9 10; do |
43 | exec 3> apt-progress-https.log | |
df70a3ba | 44 | testsuccess --nomsg apthelper download-file "https://localhost:${APTHTTPSPORT}/$TESTFILE" ./downloaded/https-$TESTFILE $OPT -o Acquire::https::Dl-Limit=$((16000/i)) |
dea87131 | 45 | if [ "$(wc -l apt-progress-https.log | awk '{print $1}')" -ge 3 ]; then |
56873870 JAK |
46 | break |
47 | fi | |
48 | done | |
dea87131 | 49 | assertprogress apt-progress-https.log |
d13f2ef5 MV |
50 | |
51 | # cleanup | |
52 | rm -f apt-progress*.log |