]> git.saurik.com Git - apt.git/blob - test/integration/test-apt-download-progress
fix another d(e)select-upgrade typo
[apt.git] / test / integration / test-apt-download-progress
1 #!/bin/sh
2 #
3 # ensure downloading sends progress as a regression test for commit 9127d7ae
4 #
5 set -e
6
7 TESTDIR=$(readlink -f $(dirname $0))
8 . $TESTDIR/framework
9
10 setupenvironment
11 changetohttpswebserver
12
13 assertprogress() {
14 T="$1"
15 testsuccess grep "dlstatus:1:0:Retrieving file 1 of 1" "$T"
16 if ! egrep -q "dlstatus:1:[1-9][0-9](\..*)?:Retrieving file 1 of 1" "$T"; then
17 cat "$T"
18 msgfail "Failed to detect download progress"
19 fi
20 testsuccess grep "dlstatus:1:100:Retrieving file 1 of 1" "$T"
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
27 testsuccess dd if=/dev/zero of=./aptarchive/$TESTFILE bs=800k count=1
28
29 msgtest 'download progress works via' 'http'
30 exec 3> apt-progress.log
31 testsuccess --nomsg apthelper download-file "http://localhost:8080/$TESTFILE" http-$TESTFILE -o APT::Status-Fd=3 -o Acquire::http::Dl-Limit=800
32 assertprogress apt-progress.log
33
34 msgtest 'download progress works via' 'https'
35 exec 3> apt-progress.log
36 testsuccess --nomsg apthelper download-file "https://localhost:4433/$TESTFILE" https-$TESTFILE -o APT::Status-Fd=3 -o Acquire::https::Dl-Limit=800
37 assertprogress apt-progress.log
38
39 # cleanup
40 rm -f apt-progress*.log