]> git.saurik.com Git - apt.git/blame - test/integration/test-kernel-helper-autoremove
copy ReadWrite-error to the bottom to make clang happy
[apt.git] / test / integration / test-kernel-helper-autoremove
CommitLineData
e5bdcc87 1#!/bin/sh
e5bdcc87
MV
2set -e
3
e5bdcc87
MV
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
b9b0f622 6setupenvironment
33677a0c 7configarchitecture 'amd64'
e5bdcc87 8
b9b0f622
DK
9# the executed script would use the installed apt-config,
10# which is outside of our control
11msgtest 'Check that the installed apt-config supports' '--no-empty'
c7cea106 12if /usr/bin/apt-config dump --no-empty >/dev/null 2>&1; then
b9b0f622
DK
13 msgpass
14else
15 msgskip
16 exit 0
17fi
e5bdcc87 18
33677a0c
DK
19CURRENTKERNEL="linux-image-$(uname -r)"
20insertinstalledpackage "$CURRENTKERNEL" 'amd64' '1'
21insertinstalledpackage 'linux-image-1.0.0-2-generic' 'amd64' '1.0.0-2'
22insertinstalledpackage 'linux-image-100.0.0-1-generic' 'amd64' '100.0.0-1'
a17482f8 23insertinstalledpackage 'linux-image-amd64' 'amd64' '100.0.0-1'
7ce1ac85
DK
24# ensure that the '.' is really a dot and not a wildcard
25insertinstalledpackage 'linux-headers-1000000-1-generic' 'amd64' '100.0.0-1'
33677a0c 26
7ce1ac85 27testsuccess aptmark auto "$CURRENTKERNEL" 'linux-image-1.0.0-2-generic' 'linux-image-100.0.0-1-generic' 'linux-headers-1000000-1-generic'
33677a0c 28
33677a0c 29# install fake-dpkg into it
b9b0f622
DK
30catfail() {
31 echo >&2
32 echo >&2 '### List of protected kernels:'
33 cat >&2 protected.list
34 msgfail
35}
e5bdcc87 36
b9b0f622
DK
37testprotected() {
38 rm -f rootdir/etc/apt/apt.conf.d/01autoremove-kernels protected.list
e5bdcc87 39
b9b0f622 40 testsuccess runapt sh ${TESTDIR}/../../debian/apt.auto-removal.sh "$@"
c6918c16 41
b9b0f622
DK
42 msgtest 'Check kernel autoremoval protection list' 'is created'
43 test -e rootdir/etc/apt/apt.conf.d/01autoremove-kernels && msgpass || msgfail
c6918c16 44
b9b0f622
DK
45 msgtest 'Check kernel autoremoval protection list' 'can be dumped'
46 aptconfig dump --no-empty --format '%v%n' 'APT::NeverAutoRemove' >protected.list 2>&1 && msgpass || catfail
e5bdcc87 47
b9b0f622
DK
48 msgtest 'Check kernel autoremoval protection list' 'can be parsed'
49 grep -q '^[A-Z]: ' protected.list && catfail || msgpass
d269b88d 50
b9b0f622 51 msgtest 'Check kernel autoremoval protection list includes' 'most recent kernel'
7ce1ac85 52 grep -q '^\^linux-image-100\\\.0\\\.0-1-generic\$$' protected.list && msgpass || catfail
b9b0f622
DK
53
54 msgtest 'Check kernel autoremoval protection list includes' 'running kernel'
7ce1ac85 55 grep -q "^\\^linux-image-$(uname -r | sed -e 's#\.#\\\\.#g')\\\$\$" protected.list && msgpass || catfail
b9b0f622
DK
56}
57
25b86db1 58testsuccessequal "Reading package lists...
33677a0c
DK
59Building dependency tree...
60Reading state information...
a0c19a21
DK
61The following packages were automatically installed and are no longer required:
62 linux-headers-1000000-1-generic (100.0.0-1)
63 linux-image-1.0.0-2-generic (1.0.0-2)
64 linux-image-100.0.0-1-generic (100.0.0-1)
65 $CURRENTKERNEL (1)
66Use 'apt-get autoremove' to remove them.
670 upgraded, 0 newly installed, 0 to remove and 0 not upgraded." aptget install -sV
68testequal "Reading package lists...
69Building dependency tree...
70Reading state information...
714 packages were automatically installed and are no longer required.
72Use 'apt-get autoremove' to remove them.
730 upgraded, 0 newly installed, 0 to remove and 0 not upgraded." aptget install -s -o APT::Get::HideAutoRemove=small
74testequal "Reading package lists...
75Building dependency tree...
76Reading state information...
33677a0c 77The following packages will be REMOVED:
7ce1ac85 78 linux-headers-1000000-1-generic (100.0.0-1)
33677a0c
DK
79 linux-image-1.0.0-2-generic (1.0.0-2)
80 linux-image-100.0.0-1-generic (100.0.0-1)
81 $CURRENTKERNEL (1)
7ce1ac85
DK
820 upgraded, 0 newly installed, 4 to remove and 0 not upgraded.
83Remv linux-headers-1000000-1-generic [100.0.0-1]
33677a0c
DK
84Remv linux-image-1.0.0-2-generic [1.0.0-2]
85Remv linux-image-100.0.0-1-generic [100.0.0-1]
86Remv $CURRENTKERNEL [1]" aptget autoremove -sV
87
b9b0f622
DK
88testprotected
89msgtest 'Check kernel autoremoval protection list does not include' 'old kernel'
7ce1ac85 90grep -q '^\^linux-image-1\\\.0\\\.0-2-generic\$$' protected.list && catfail || msgpass
d269b88d 91
25b86db1 92testsuccessequal 'Reading package lists...
33677a0c
DK
93Building dependency tree...
94Reading state information...
95The following packages will be REMOVED:
7ce1ac85
DK
96 linux-headers-1000000-1-generic linux-image-1.0.0-2-generic
970 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
98Remv linux-headers-1000000-1-generic [100.0.0-1]
33677a0c
DK
99Remv linux-image-1.0.0-2-generic [1.0.0-2]' aptget autoremove -s
100
b9b0f622
DK
101testprotected 1.0.0-2-generic
102msgtest 'Check kernel autoremoval protection list includes' 'installed kernel'
7ce1ac85 103grep -q '^\^linux-image-1\\\.0\\\.0-2-generic\$$' protected.list && msgpass || catfail
25b86db1 104testsuccessequal 'Reading package lists...
33677a0c
DK
105Building dependency tree...
106Reading state information...
7ce1ac85
DK
107The following packages will be REMOVED:
108 linux-headers-1000000-1-generic
1090 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
110Remv linux-headers-1000000-1-generic [100.0.0-1]' aptget autoremove -s