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