]> git.saurik.com Git - apt.git/blame_incremental - test/integration/test-bug-611729-mark-as-manual
test: Always install dpkg into our tests, regardless of MA
[apt.git] / test / integration / test-bug-611729-mark-as-manual
... / ...
CommitLineData
1#!/bin/sh
2set -e
3
4TESTDIR="$(readlink -f "$(dirname "$0")")"
5. "$TESTDIR/framework"
6setupenvironment
7configarchitecture "i386"
8
9buildsimplenativepackage "peace-dpkg" "all" "1.0" "stable"
10
11buildsimplenativepackage "a" "all" "1.0" "stable" "Depends: b"
12buildsimplenativepackage "b" "all" "1.0" "stable"
13buildsimplenativepackage "c" "all" "1.0" "stable" "Depends: b"
14
15setupaptarchive
16
17# dpkg freaks out if the last package is removed so keep one around
18testsuccess aptget install peace-dpkg -y
19testdpkginstalled peace-dpkg
20testmarkedauto
21
22testsuccess aptget install a -y
23testdpkginstalled a b
24testdpkgnotinstalled c
25testmarkedauto 'b'
26
27testsuccess aptget remove a -y
28testdpkgnotinstalled a c
29testdpkginstalled b
30testmarkedauto 'b'
31
32testsuccess aptget install c -y
33testdpkgnotinstalled a
34testdpkginstalled b c
35testmarkedauto 'b'
36
37testsuccessequal 'Reading package lists...
38Building dependency tree...
39Reading state information...
40b is already the newest version (1.0).
410 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.' aptget install b --only-upgrade
42testmarkedauto 'b'
43
44testsuccessequal 'Reading package lists...
45Building dependency tree...
46Reading state information...
47b is already the newest version (1.0).
480 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.' aptget install b -d
49testmarkedauto 'b'
50
51rm rootdir/var/log/apt/history.log
52
53testsuccess aptget install b --reinstall -y
54testdpkgnotinstalled a
55testdpkginstalled b c
56testmarkedauto 'b'
57
58sed -i rootdir/var/log/apt/history.log -e '/^Commandline: / d' -e '/^Start-Date: / d' -e '/^End-Date: / d'
59if [ -n "$SUDO_USER" ]; then
60 testfileequal 'rootdir/var/log/apt/history.log' "
61Requested-By: $SUDO_USER ($(id -u "$SUDO_USER"))
62Reinstall: b:i386 (1.0)"
63else
64 testfileequal 'rootdir/var/log/apt/history.log' '
65Reinstall: b:i386 (1.0)'
66fi
67
68testsuccessequal 'Reading package lists...
69Building dependency tree...
70Reading state information...
71b is already the newest version (1.0).
72b set to manually installed.
730 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.' aptget install b
74testmarkedauto
75
76testsuccess aptget remove b -y
77testdpkgnotinstalled a b c
78testmarkedauto
79
80testsuccess aptget install a b -y
81testdpkginstalled a b
82testdpkgnotinstalled c
83testmarkedauto
84
85testsuccess aptget purge a b -y
86testdpkgnotinstalled a b c
87testmarkedauto
88
89testsuccess aptget install b c -y
90testdpkgnotinstalled a
91testdpkginstalled b c
92testmarkedauto
93
94testsuccess aptget install a -y
95testdpkginstalled a b c
96testmarkedauto