]> git.saurik.com Git - apt.git/blame - test/integration/test-no-fds-leaked-to-maintainer-scripts
do not make PTY slave the controlling terminal
[apt.git] / test / integration / test-no-fds-leaked-to-maintainer-scripts
CommitLineData
0c787570
DK
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6
7setupenvironment
b8ef7ef4 8configarchitecture 'amd64' 'i386'
0c787570
DK
9configdpkgnoopchroot
10
150bdc9c 11setupsimplenativepackage "fdleaks" 'all' '1.0' 'unstable'
0c787570
DK
12BUILDDIR="incoming/fdleaks-1.0"
13for script in 'preinst' 'postinst' 'prerm' 'postrm'; do
14 echo '#!/bin/sh
15ls -l /proc/self/fd/' > ${BUILDDIR}/debian/$script
16done
17buildpackage "$BUILDDIR" 'unstable' 'main' 'native'
18rm -rf "$BUILDDIR"
19
b8ef7ef4
DK
20PKGNAME='fdleaks:all'
21if ! dpkg-checkbuilddeps -d 'dpkg (>= 1.16.2)' /dev/null; then
22 PKGNAME='fdleaks'
23fi
24
0c787570
DK
25setupaptarchive
26
150bdc9c
DK
27rm -f rootdir/var/log/dpkg.log rootdir/var/log/apt/term.log
28testsuccess aptget install -y fdleaks -qq < /dev/null
0c787570 29
c6bc9735
DK
30checkfdleak() {
31 msgtest 'Check if fds were not' 'leaked'
32 if [ "$(grep 'root root' rootdir/tmp/testsuccess.output | wc -l)" = "$1" ]; then
33 msgpass
34 else
35 echo
36 cat rootdir/tmp/testsuccess.output
37 msgfail
38 fi
39}
40checkinstall() {
41 checkfdleak 8
42
43 cp rootdir/tmp/testsuccess.output terminal.output
44 tail -n +3 rootdir/var/log/apt/term.log | head -n -1 > terminal.log
45 testfileequal 'terminal.log' "$(cat terminal.output)"
150bdc9c 46
c6bc9735 47 testequal "startup archives unpack
b8ef7ef4
DK
48install $PKGNAME <none> 1.0
49status half-installed $PKGNAME 1.0
50status unpacked $PKGNAME 1.0
51status unpacked $PKGNAME 1.0
150bdc9c 52startup packages configure
b8ef7ef4
DK
53configure $PKGNAME 1.0 <none>
54status unpacked $PKGNAME 1.0
55status half-configured $PKGNAME 1.0
ecb777dd
DK
56status installed $PKGNAME 1.0
57startup packages configure" cut -f 3- -d' ' rootdir/var/log/dpkg.log
c6bc9735
DK
58}
59checkinstall
150bdc9c
DK
60
61rm -f rootdir/var/log/dpkg.log rootdir/var/log/apt/term.log
62testsuccess aptget purge -y fdleaks -qq
c6bc9735
DK
63checkpurge() {
64 checkfdleak 12
65
66 cp rootdir/tmp/testsuccess.output terminal.output
67 tail -n +3 rootdir/var/log/apt/term.log | head -n -1 > terminal.log
68 testfileequal 'terminal.log' "$(cat terminal.output)"
150bdc9c 69
c6bc9735 70 testequal "startup packages purge
b8ef7ef4
DK
71status installed $PKGNAME 1.0
72remove $PKGNAME 1.0 <none>
73status half-configured $PKGNAME 1.0
74status half-installed $PKGNAME 1.0
75status config-files $PKGNAME 1.0
76purge $PKGNAME 1.0 <none>
77status config-files $PKGNAME 1.0
78status config-files $PKGNAME 1.0
79status config-files $PKGNAME 1.0
80status config-files $PKGNAME 1.0
81status config-files $PKGNAME 1.0
ecb777dd
DK
82status not-installed $PKGNAME <none>
83startup packages configure" cut -f 3- -d' ' rootdir/var/log/dpkg.log
c6bc9735
DK
84}
85checkpurge
86
87rm -f rootdir/var/log/dpkg.log rootdir/var/log/apt/term.log
88testsuccess runapt command setsid -w "${BUILDDIRECTORY}/apt-get" install -y fdleaks -qq < /dev/null
89checkinstall
90
91rm -f rootdir/var/log/dpkg.log rootdir/var/log/apt/term.log
92testsuccess runapt command setsid -w "${BUILDDIRECTORY}/apt-get" purge -y fdleaks -qq
93checkpurge