]> git.saurik.com Git - apt.git/blame - test/integration/test-apt-get-autoremove
tests: use quiet level 0 by default in tests
[apt.git] / test / integration / test-apt-get-autoremove
CommitLineData
b093a199
DK
1#!/bin/sh
2set -e
3
9962ae93 4TESTDIR=$(readlink -f $(dirname $0))
b093a199
DK
5. $TESTDIR/framework
6setupenvironment
01a6e24c 7configarchitecture 'i386'
b093a199 8
01a6e24c
DK
9buildsimplenativepackage 'unrelated' 'all' '1' 'unstable'
10buildsimplenativepackage 'po-debconf' 'all' '1.0.16' 'unstable'
11buildsimplenativepackage 'debhelper' 'all' '8.0.0' 'unstable' 'Depends: po-debconf'
b093a199
DK
12setupaptarchive
13
0440d936 14testsuccess aptget install unrelated debhelper -y
01a6e24c 15testdpkginstalled 'unrelated' 'debhelper' 'po-debconf'
b093a199 16
ec7f904e 17testmarkedauto 'po-debconf'
0440d936 18testsuccess aptget remove debhelper -y
5cf733e1 19testdpkgnotinstalled 'debhelper'
87bc1c45 20testdpkginstalled 'po-debconf' 'unrelated'
01a6e24c 21
73fe49f9
DK
22AUTOREMOVE='apt autoremove'
23if [ -n "$SUDO_USER" ]; then
24 AUTOREMOVE="sudo $AUTOREMOVE"
25fi
01a6e24c 26echo 'APT::NeverAutoRemove { "^debc.*nf$"; };' > rootdir/etc/apt/apt.conf.d/00autoremove
25b86db1 27testsuccessequal 'Reading package lists...
01a6e24c
DK
28Building dependency tree...
29Reading state information...
30The following packages will be REMOVED:
31 po-debconf
320 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
33Remv po-debconf [1.0.16]' aptget autoremove -s
a0c19a21
DK
34testequal "Reading package lists...
35Building dependency tree...
36Reading state information...
37The following package was automatically installed and is no longer required:
38 po-debconf
73fe49f9 39Use '$AUTOREMOVE' to remove it.
a0c19a21
DK
400 upgraded, 0 newly installed, 0 to remove and 0 not upgraded." aptget install -s
41testequal "Reading package lists...
42Building dependency tree...
43Reading state information...
441 package was automatically installed and is no longer required.
73fe49f9 45Use '$AUTOREMOVE' to remove it.
a0c19a21 460 upgraded, 0 newly installed, 0 to remove and 0 not upgraded." aptget install -s -o APT::Get::HideAutoRemove=small
01a6e24c
DK
47testdpkginstalled 'po-debconf'
48
49echo 'APT::NeverAutoRemove { "^po-debconf$"; };' > rootdir/etc/apt/apt.conf.d/00autoremove
0440d936 50testsuccess aptget autoremove -y
01a6e24c 51testdpkginstalled 'po-debconf'
b093a199 52
01a6e24c 53echo 'APT::NeverAutoRemove { "^po-.*$"; };' > rootdir/etc/apt/apt.conf.d/00autoremove
0440d936 54testsuccess aptget autoremove -y
01a6e24c
DK
55testdpkginstalled "po-debconf"
56
57rm rootdir/etc/apt/apt.conf.d/00autoremove
0440d936 58testsuccess aptget autoremove -y
5cf733e1 59testdpkgnotinstalled 'po-debconf'
ec7f904e 60testmarkedauto
b093a199 61
a7250ed0
DK
62sed rootdir/var/log/apt/history.log -e '/^Commandline: / d' -e '/^Start-Date: / d' -e '/^End-Date: / d' -e 's#), #)\nInstall: #g' | sort -u > apt-history.log
63testfileequal 'apt-history.log' '
64Install: debhelper:i386 (8.0.0)
65Install: po-debconf:i386 (1.0.16, automatic)
66Install: unrelated:i386 (1)
b093a199 67Remove: debhelper:i386 (8.0.0)
b093a199 68Remove: po-debconf:i386 (1.0.16)'
8fa042ca
DK
69
70testsuccess aptget install debhelper -y
71testdpkginstalled 'unrelated' 'debhelper' 'po-debconf'
72testsuccess aptmark auto debhelper
73
74testmarkedauto 'debhelper' 'po-debconf'
25b86db1 75testsuccessequal 'Reading package lists...
8fa042ca
DK
76Building dependency tree...
77Reading state information...
78The following packages will be REMOVED:
79 debhelper po-debconf
800 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
81Remv debhelper [8.0.0]
82Remv po-debconf [1.0.16]' aptget autoremove -s
a0c19a21
DK
83testequal "Reading package lists...
84Building dependency tree...
85Reading state information...
86The following packages were automatically installed and are no longer required:
87 debhelper po-debconf
73fe49f9 88Use '$AUTOREMOVE' to remove them.
a0c19a21
DK
890 upgraded, 0 newly installed, 0 to remove and 0 not upgraded." aptget install -s
90testequal "Reading package lists...
91Building dependency tree...
92Reading state information...
932 packages were automatically installed and are no longer required.
73fe49f9 94Use '$AUTOREMOVE' to remove them.
a0c19a21 950 upgraded, 0 newly installed, 0 to remove and 0 not upgraded." aptget install -s -o APT::Get::HideAutoRemove=small
8fa042ca
DK
96
97testsuccess aptmark hold debhelper
25b86db1 98testsuccessequal 'Reading package lists...
8fa042ca
DK
99Building dependency tree...
100Reading state information...
1010 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.' aptget autoremove -s
9777639e
DK
102
103testsuccess aptget autoremove debhelper -y --allow-change-held-packages
104testdpkgnotinstalled 'po-debconf' 'debhelper'
105testmarkedauto
106testsuccess aptget install debhelper --solver apt -y -o Debug::pkgDepCache::Marker=1
107testmarkedauto 'po-debconf'