]> git.saurik.com Git - apt.git/blame - test/integration/test-apt-download-progress
tests: use quiet level 0 by default in tests
[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"
ad42ed46 16 if ! grep -E -q "dlstatus:1:[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
26TESTFILE=testfile.big
fec55559 27testsuccess dd if=/dev/zero of=./aptarchive/$TESTFILE bs=800k count=1
d13f2ef5 28
34faa8f7
DK
29OPT='-o APT::Status-Fd=3 -o Debug::pkgAcquire::Worker=1 -o Debug::Acquire::http=1 -o Debug::Acquire::https=1'
30
d13f2ef5 31msgtest 'download progress works via' 'http'
d13f2ef5 32exec 3> apt-progress.log
6c0765c0 33testsuccess --nomsg apthelper download-file "http://localhost:${APTHTTPPORT}/$TESTFILE" ./downloaded/http-$TESTFILE $OPT -o Acquire::http::Dl-Limit=800
d13f2ef5
MV
34assertprogress apt-progress.log
35
36msgtest 'download progress works via' 'https'
d13f2ef5 37exec 3> apt-progress.log
6c0765c0 38testsuccess --nomsg apthelper download-file "https://localhost:${APTHTTPSPORT}/$TESTFILE" ./downloaded/https-$TESTFILE $OPT -o Acquire::https::Dl-Limit=800
fec55559 39assertprogress apt-progress.log
d13f2ef5
MV
40
41# cleanup
42rm -f apt-progress*.log