test/integration/test-apt-download-progress: fix test failure on fast hardware
[ntk/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
7TESTDIR=$(readlink -f $(dirname $0))
8. $TESTDIR/framework
9
10setupenvironment
11changetohttpswebserver
12
13assertprogress() {
14 T="$1"
15 testsuccess grep "dlstatus:1:0:Retrieving file 1 of 1" "$T"
16 if ! egrep -q "dlstatus:1:[0-9]{1,2}\.(.*):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 #cat $T
22}
23
24# we need to ensure the file is reasonable big so that apt has a chance to
25# actually report progress - but not too big to ensure its not delaying the
26# test too much
27TESTFILE=testfile.big
28testsuccess dd if=/dev/zero of=./aptarchive/$TESTFILE bs=800k count=1
29
30msgtest 'download progress works via' 'http'
31printf '\n'
32exec 3> apt-progress.log
d01fa806 33testsuccess apthelper download-file "http://localhost:8080/$TESTFILE" http-$TESTFILE -o APT::Status-Fd=3 -o Acquire::http::Dl-Limit=600
d13f2ef5
MV
34assertprogress apt-progress.log
35
36msgtest 'download progress works via' 'https'
37printf '\n'
38exec 3> apt-progress.log
d01fa806 39testsuccess apthelper download-file "https://localhost:4433/$TESTFILE" https-$TESTFILE -o APT::Status-Fd=3 -o Acquire::https::Dl-Limit=600
d13f2ef5
MV
40assertprogress apt-progress.log
41
42# cleanup
43rm -f apt-progress*.log