always run 'dpkg --configure -a' at the end of our dpkg callings
[ntk/apt.git] / test / integration / test-apt-progress-fd-deb822
CommitLineData
c7ea1eba 1#!/bin/sh
3b1b0f29
MV
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6
7setupenvironment
8configarchitecture 'amd64' 'i386'
9
10buildsimplenativepackage 'testing' 'amd64' '0.1' 'stable'
11buildsimplenativepackage 'testing' 'all' '0.8.15' 'stable'
12buildsimplenativepackage 'testing2' 'amd64,i386' '0.8.15' 'stable'
13setupaptarchive
14
15# install native
16exec 3> apt-progress.log
17testsuccess aptget install testing=0.1 -y -o APT::Status-deb822-Fd=3
3b1b0f29 18
c7ea1eba
MV
19testequal "Status: progress
20Percent: 0
21Message: Running dpkg
22
23Status: progress
24Package: testing:amd64
25Percent: 0
26Message: Installing testing (amd64)
3b1b0f29 27
c7ea1eba
MV
28Status: progress
29Package: testing:amd64
a2a75ff4 30Percent: 16.6667
c7ea1eba 31Message: Preparing testing (amd64)
3b1b0f29 32
c7ea1eba
MV
33Status: progress
34Package: testing:amd64
a2a75ff4 35Percent: 33.3333
c7ea1eba 36Message: Unpacking testing (amd64)
3b1b0f29 37
c7ea1eba
MV
38Status: progress
39Package: testing:amd64
a2a75ff4 40Percent: 50
c7ea1eba 41Message: Preparing to configure testing (amd64)
3b1b0f29 42
c7ea1eba 43Status: progress
a2a75ff4 44Percent: 50
c7ea1eba 45Message: Running dpkg
3b1b0f29 46
c7ea1eba
MV
47Status: progress
48Package: testing:amd64
a2a75ff4 49Percent: 50
c7ea1eba 50Message: Configuring testing (amd64)
3b1b0f29 51
c7ea1eba
MV
52Status: progress
53Package: testing:amd64
a2a75ff4 54Percent: 66.6667
c7ea1eba 55Message: Configuring testing (amd64)
3b1b0f29 56
c7ea1eba
MV
57Status: progress
58Package: testing:amd64
a2a75ff4 59Percent: 83.3333
c7ea1eba 60Message: Installed testing (amd64)
a2a75ff4
DK
61
62Status: progress
63Percent: 83.3333
64Message: Running dpkg
c7ea1eba 65" cat apt-progress.log
3b1b0f29
MV
66
67
68rm -f apt-progress*.log