]> git.saurik.com Git - apt.git/blame - test/integration/test-apt-get-autoremove
refer to apt-secure(8) in unsecure repositories warning
[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
DK
21
22echo 'APT::NeverAutoRemove { "^debc.*nf$"; };' > rootdir/etc/apt/apt.conf.d/00autoremove
25b86db1 23testsuccessequal 'Reading package lists...
01a6e24c
DK
24Building dependency tree...
25Reading state information...
26The following packages will be REMOVED:
27 po-debconf
280 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
29Remv po-debconf [1.0.16]' aptget autoremove -s
a0c19a21
DK
30testequal "Reading package lists...
31Building dependency tree...
32Reading state information...
33The following package was automatically installed and is no longer required:
34 po-debconf
35Use 'apt-get autoremove' to remove it.
360 upgraded, 0 newly installed, 0 to remove and 0 not upgraded." aptget install -s
37testequal "Reading package lists...
38Building dependency tree...
39Reading state information...
401 package was automatically installed and is no longer required.
41Use 'apt-get autoremove' to remove it.
420 upgraded, 0 newly installed, 0 to remove and 0 not upgraded." aptget install -s -o APT::Get::HideAutoRemove=small
01a6e24c
DK
43testdpkginstalled 'po-debconf'
44
45echo 'APT::NeverAutoRemove { "^po-debconf$"; };' > rootdir/etc/apt/apt.conf.d/00autoremove
0440d936 46testsuccess aptget autoremove -y
01a6e24c 47testdpkginstalled 'po-debconf'
b093a199 48
01a6e24c 49echo 'APT::NeverAutoRemove { "^po-.*$"; };' > rootdir/etc/apt/apt.conf.d/00autoremove
0440d936 50testsuccess aptget autoremove -y
01a6e24c
DK
51testdpkginstalled "po-debconf"
52
53rm rootdir/etc/apt/apt.conf.d/00autoremove
0440d936 54testsuccess aptget autoremove -y
5cf733e1 55testdpkgnotinstalled 'po-debconf'
ec7f904e 56testmarkedauto
b093a199 57
a7250ed0
DK
58sed 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
59testfileequal 'apt-history.log' '
60Install: debhelper:i386 (8.0.0)
61Install: po-debconf:i386 (1.0.16, automatic)
62Install: unrelated:i386 (1)
b093a199 63Remove: debhelper:i386 (8.0.0)
b093a199 64Remove: po-debconf:i386 (1.0.16)'
8fa042ca
DK
65
66testsuccess aptget install debhelper -y
67testdpkginstalled 'unrelated' 'debhelper' 'po-debconf'
68testsuccess aptmark auto debhelper
69
70testmarkedauto 'debhelper' 'po-debconf'
25b86db1 71testsuccessequal 'Reading package lists...
8fa042ca
DK
72Building dependency tree...
73Reading state information...
74The following packages will be REMOVED:
75 debhelper po-debconf
760 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
77Remv debhelper [8.0.0]
78Remv po-debconf [1.0.16]' aptget autoremove -s
a0c19a21
DK
79testequal "Reading package lists...
80Building dependency tree...
81Reading state information...
82The following packages were automatically installed and are no longer required:
83 debhelper po-debconf
84Use 'apt-get autoremove' to remove them.
850 upgraded, 0 newly installed, 0 to remove and 0 not upgraded." aptget install -s
86testequal "Reading package lists...
87Building dependency tree...
88Reading state information...
892 packages were automatically installed and are no longer required.
90Use 'apt-get autoremove' to remove them.
910 upgraded, 0 newly installed, 0 to remove and 0 not upgraded." aptget install -s -o APT::Get::HideAutoRemove=small
8fa042ca
DK
92
93testsuccess aptmark hold debhelper
25b86db1 94testsuccessequal 'Reading package lists...
8fa042ca
DK
95Building dependency tree...
96Reading state information...
970 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.' aptget autoremove -s
9777639e
DK
98
99testsuccess aptget autoremove debhelper -y --allow-change-held-packages
100testdpkgnotinstalled 'po-debconf' 'debhelper'
101testmarkedauto
102testsuccess aptget install debhelper --solver apt -y -o Debug::pkgDepCache::Marker=1
103testmarkedauto 'po-debconf'