use a configurable list of versioned kernel packages
[ntk/apt.git] / test / integration / test-kernel-helper-autoremove
1 #!/bin/sh
2 set -e
3
4 TESTDIR=$(readlink -f $(dirname $0))
5 . $TESTDIR/framework
6 setupenvironment
7 configarchitecture 'native'
8
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 apt-config dump --no-empty >/dev/null 2>&1; then
13 msgpass
14 else
15 msgskip
16 exit 0
17 fi
18
19 # install fake-dpkg into it
20 cat > ./fake-dpkg <<EOF
21 #!/bin/sh
22 set -e
23 if [ "\$1" = "-l" ]; then
24 echo "ii linux-image-1.0.0-2-generic 1.0.0-2 amd64"
25 echo "ii linux-image-\$(uname -r) not-used amd64"
26 echo "ii linux-image-100.0.0-1-generic 100.0.0.1-1 amd64"
27 else
28 dpkg "\$@"
29 fi
30 EOF
31 chmod +x ./fake-dpkg
32 echo 'Dir::Bin::dpkg "./fake-dpkg";' > rootdir/etc/apt/apt.conf.d/99fakedpkg
33
34 catfail() {
35 echo >&2
36 echo >&2 '### List of protected kernels:'
37 cat >&2 protected.list
38 msgfail
39 }
40
41 testprotected() {
42 rm -f rootdir/etc/apt/apt.conf.d/01autoremove-kernels protected.list
43
44 testsuccess runapt sh ${TESTDIR}/../../debian/apt.auto-removal.sh "$@"
45
46 msgtest 'Check kernel autoremoval protection list' 'is created'
47 test -e rootdir/etc/apt/apt.conf.d/01autoremove-kernels && msgpass || msgfail
48
49 msgtest 'Check kernel autoremoval protection list' 'can be dumped'
50 aptconfig dump --no-empty --format '%v%n' 'APT::NeverAutoRemove' >protected.list 2>&1 && msgpass || catfail
51
52 msgtest 'Check kernel autoremoval protection list' 'can be parsed'
53 grep -q '^[A-Z]: ' protected.list && catfail || msgpass
54
55 msgtest 'Check kernel autoremoval protection list includes' 'most recent kernel'
56 grep -q '^\^linux-image-100\.0\.0-1-generic\$$' protected.list && msgpass || catfail
57
58 msgtest 'Check kernel autoremoval protection list includes' 'running kernel'
59 grep -q "^\\^linux-image-$(uname -r)\\\$\$" protected.list && msgpass || catfail
60 }
61
62 testprotected
63 msgtest 'Check kernel autoremoval protection list does not include' 'old kernel'
64 grep -q '^\^linux-image-1\.0\.0-2-generic\$$' protected.list && catfail || msgpass
65
66 testprotected 1.0.0-2-generic
67 msgtest 'Check kernel autoremoval protection list includes' 'installed kernel'
68 grep -q '^\^linux-image-1\.0\.0-2-generic\$$' protected.list && msgpass || catfail