]>
git.saurik.com Git - apt.git/blob - test/integration/test-kernel-helper-autoremove
4 TESTDIR
=$(readlink -f $(dirname $0))
7 configarchitecture
'amd64'
9 # the executed script would use the installed apt-config,
10 # which is outside of our control
11 msgtest
'Check that the installed apt-config supports' '--no-empty'
12 if /usr
/bin
/apt
-config dump
--no-empty >/dev
/null
2>&1; then
19 CURRENTKERNEL
="linux-image-$(uname -r)"
20 insertinstalledpackage
"$CURRENTKERNEL" 'amd64' '1'
21 insertinstalledpackage
'linux-image-1.0.0-2-generic' 'amd64' '1.0.0-2'
22 insertinstalledpackage
'linux-image-100.0.0-1-generic' 'amd64' '100.0.0-1'
23 insertinstalledpackage
'linux-image-amd64' 'amd64' '100.0.0-1'
24 # ensure that the '.' is really a dot and not a wildcard
25 insertinstalledpackage
'linux-headers-1000000-1-generic' 'amd64' '100.0.0-1'
27 testsuccess aptmark auto
"$CURRENTKERNEL" 'linux-image-1.0.0-2-generic' 'linux-image-100.0.0-1-generic' 'linux-headers-1000000-1-generic'
29 cat > .
/fake
-dpkg <<EOF
31 exec $(aptconfig dump --no-empty --format='%v ' 'DPKG::options') "\$@"
34 echo 'Dir::Bin::dpkg "./fake-dpkg";' > rootdir
/etc
/apt
/apt.conf.d
/99fakedpkg
36 # install fake-dpkg into it
39 echo >&2 '### List of protected kernels:'
40 cat >&2 protected.list
45 rm -f rootdir
/etc
/apt
/apt.conf.d
/01autoremove
-kernels protected.list
47 testsuccess runapt sh
${TESTDIR}/..
/..
/debian
/apt.auto
-removal.sh
"$@"
49 msgtest
'Check kernel autoremoval protection list' 'is created'
50 test -e rootdir
/etc
/apt
/apt.conf.d
/01autoremove
-kernels && msgpass
|| msgfail
52 msgtest
'Check kernel autoremoval protection list' 'can be dumped'
53 aptconfig dump
--no-empty --format '%v%n' 'APT::NeverAutoRemove' >protected.list
2>&1 && msgpass
|| catfail
55 msgtest
'Check kernel autoremoval protection list' 'can be parsed'
56 grep -q '^[A-Z]: ' protected.list
&& catfail
|| msgpass
58 msgtest
'Check kernel autoremoval protection list includes' 'most recent kernel'
59 grep -q '^\^linux-image-100\\\.0\\\.0-1-generic\$$' protected.list
&& msgpass
|| catfail
61 msgtest
'Check kernel autoremoval protection list includes' 'running kernel'
62 grep -q "^\\^linux-image-$(uname -r | sed -e 's#\.#\\\\.#g')\\\$\$" protected.list
&& msgpass
|| catfail
65 testequal
"Reading package lists...
66 Building dependency tree...
67 Reading state information...
68 The following packages will be REMOVED:
69 linux-headers-1000000-1-generic (100.0.0-1)
70 linux-image-1.0.0-2-generic (1.0.0-2)
71 linux-image-100.0.0-1-generic (100.0.0-1)
73 0 upgraded, 0 newly installed, 4 to remove and 0 not upgraded.
74 Remv linux-headers-1000000-1-generic [100.0.0-1]
75 Remv linux-image-1.0.0-2-generic [1.0.0-2]
76 Remv linux-image-100.0.0-1-generic [100.0.0-1]
77 Remv $CURRENTKERNEL [1]" aptget autoremove
-sV
80 msgtest
'Check kernel autoremoval protection list does not include' 'old kernel'
81 grep -q '^\^linux-image-1\\\.0\\\.0-2-generic\$$' protected.list
&& catfail
|| msgpass
83 testequal
'Reading package lists...
84 Building dependency tree...
85 Reading state information...
86 The following packages will be REMOVED:
87 linux-headers-1000000-1-generic linux-image-1.0.0-2-generic
88 0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
89 Remv linux-headers-1000000-1-generic [100.0.0-1]
90 Remv linux-image-1.0.0-2-generic [1.0.0-2]' aptget autoremove
-s
92 testprotected
1.0.0-2-generic
93 msgtest
'Check kernel autoremoval protection list includes' 'installed kernel'
94 grep -q '^\^linux-image-1\\\.0\\\.0-2-generic\$$' protected.list
&& msgpass
|| catfail
95 testequal
'Reading package lists...
96 Building dependency tree...
97 Reading state information...
98 The following packages will be REMOVED:
99 linux-headers-1000000-1-generic
100 0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
101 Remv linux-headers-1000000-1-generic [100.0.0-1]' aptget autoremove
-s