File: test-apt-update-reporting

package info (click to toggle)
apt 3.1.13
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 22,764 kB
  • sloc: cpp: 71,085; sh: 31,750; xml: 5,553; perl: 217; python: 197; ansic: 191; makefile: 41
file content (35 lines) | stat: -rwxr-xr-x 859 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh
set -e

TESTDIR="$(readlink -f "$(dirname "$0")")"
. "$TESTDIR/framework"
setupenvironment
configarchitecture 'amd64'

for i in $(seq 100); do
  insertpackage 'unstable' "foo-$i" 'all' '1.0'
  insertsource 'unstable' "foo-$i" 'all' '1.0'
done

setupaptarchive --no-update
changetowebserver

aptget update -o Debug::Acquire::Progress=1 2>progress.log >ignore.out

has_progress() {
    prev_percent=0.0
    while read line; do
        percent="$(echo "$line"|cut -b2-6)"
        # need to cut the decimal point and digits because sh can not do
        # float compare
        if [ "${percent%%.*}" -lt "${prev_percent%%.*}" ]; then
            cat progress.log
            return 1
        fi
        prev_percent="$percent"
    done < progress.log
    return 0
}

msgtest "Testing that progress does not go backward"
testsuccess --nomsg has_progress