fix progress report for upgrade and reinstall
[ntk/apt.git] / test / integration / test-apt-progress-fd
CommitLineData
42c1513b
MV
1#!/bin/sh
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' 'amd64' '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-Fd=3
18testequal "dlstatus:1:0:Retrieving file 1 of 1
19dlstatus:1:0:Retrieving file 1 of 1
20pmstatus:dpkg-exec:0:Running dpkg
dd640f3c
MV
21pmstatus:testing:0:Installing testing (amd64)
22pmstatus:testing:20:Preparing testing (amd64)
23pmstatus:testing:40:Unpacking testing (amd64)
d274520e 24pmstatus:testing:60:Preparing to configure testing (amd64)
42c1513b 25pmstatus:dpkg-exec:60:Running dpkg
dd640f3c
MV
26pmstatus:testing:60:Configuring testing (amd64)
27pmstatus:testing:80:Configuring testing (amd64)
28pmstatus:testing:100:Installed testing (amd64)" cat apt-progress.log
42c1513b
MV
29
30# upgrade
31exec 3> apt-progress.log
32testsuccess aptget install testing=0.8.15 -y -o APT::Status-Fd=3
33testequal "dlstatus:1:0:Retrieving file 1 of 1
34dlstatus:1:0:Retrieving file 1 of 1
35pmstatus:dpkg-exec:0:Running dpkg
4c559e97
DK
36pmstatus:testing:0:Installing testing (amd64)
37pmstatus:testing:20:Preparing testing (amd64)
38pmstatus:testing:40:Unpacking testing (amd64)
39pmstatus:testing:60:Preparing to configure testing (amd64)
40pmstatus:dpkg-exec:60:Running dpkg
41pmstatus:testing:60:Configuring testing (amd64)
42pmstatus:testing:80:Configuring testing (amd64)
43pmstatus:testing:100:Installed testing (amd64)" cat apt-progress.log
44
45# reinstall
46exec 3> apt-progress.log
47testsuccess aptget install testing=0.8.15 --reinstall -y -o APT::Status-Fd=3
48testequal "dlstatus:1:0:Retrieving file 1 of 1
49dlstatus:1:0:Retrieving file 1 of 1
50pmstatus:dpkg-exec:0:Running dpkg
51pmstatus:testing:0:Installing testing (amd64)
dd640f3c
MV
52pmstatus:testing:20:Preparing testing (amd64)
53pmstatus:testing:40:Unpacking testing (amd64)
d274520e 54pmstatus:testing:60:Preparing to configure testing (amd64)
42c1513b 55pmstatus:dpkg-exec:60:Running dpkg
dd640f3c
MV
56pmstatus:testing:60:Configuring testing (amd64)
57pmstatus:testing:80:Configuring testing (amd64)
58pmstatus:testing:100:Installed testing (amd64)" cat apt-progress.log
42c1513b
MV
59
60# and remove
61exec 3> apt-progress.log
62testsuccess aptget remove testing -y -o APT::Status-Fd=3
63testequal "pmstatus:dpkg-exec:0:Running dpkg
dd640f3c
MV
64pmstatus:testing:0:Removing testing (amd64)
65pmstatus:testing:33.3333:Preparing for removal of testing (amd64)
66pmstatus:testing:66.6667:Removing testing (amd64)
67pmstatus:testing:100:Removed testing (amd64)" cat apt-progress.log
42c1513b 68
42c1513b
MV
69# install non-native and ensure we get proper progress info
70exec 3> apt-progress.log
71testsuccess aptget install testing2:i386 -y -o APT::Status-Fd=3
72
73# and compare
74testequal "dlstatus:1:0:Retrieving file 1 of 1
75dlstatus:1:0:Retrieving file 1 of 1
76pmstatus:dpkg-exec:0:Running dpkg
dd640f3c
MV
77pmstatus:testing2:0:Installing testing2 (i386)
78pmstatus:testing2:20:Preparing testing2 (i386)
79pmstatus:testing2:40:Unpacking testing2 (i386)
80pmstatus:testing2:60:Preparing to configure testing2 (i386)
42c1513b 81pmstatus:dpkg-exec:60:Running dpkg
dd640f3c
MV
82pmstatus:testing2:60:Configuring testing2 (i386)
83pmstatus:testing2:80:Configuring testing2 (i386)
84pmstatus:testing2:100:Installed testing2 (i386)" cat apt-progress.log
42c1513b 85
dd640f3c 86rm -f apt-progress*.log