]> git.saurik.com Git - apt.git/blame_incremental - test/integration/test-no-fds-leaked-to-maintainer-scripts
changelog: Respect Dir setting for local changelog getting
[apt.git] / test / integration / test-no-fds-leaked-to-maintainer-scripts
... / ...
CommitLineData
1#!/bin/sh
2set -e
3
4TESTDIR="$(readlink -f "$(dirname "$0")")"
5. "$TESTDIR/framework"
6
7setupenvironment
8configarchitecture 'amd64' 'i386'
9configdpkgnoopchroot
10
11if [ ! -e /proc/self/fd ]; then
12 msgskip "needs /proc/self/fd"
13 exit 0
14fi
15
16setupsimplenativepackage "fdleaks" 'all' '1.0' 'unstable'
17BUILDDIR="incoming/fdleaks-1.0"
18for script in 'preinst' 'postinst' 'prerm' 'postrm'; do
19 cat > ${BUILDDIR}/debian/$script << EOF
20#!/bin/sh
21if [ -e '$(pwd)/rootdir/tmp/read_stdin' ]; then
22 read line;
23 echo "STDIN: -\$line-"
24fi
25ls -l /proc/self/fd/
26EOF
27done
28buildpackage "$BUILDDIR" 'unstable' 'main' 'native'
29rm -rf "$BUILDDIR"
30
31PKGNAME='fdleaks:all'
32if dpkg --compare-versions "$(dpkg_version)" 'lt' '1.16.2'; then
33 PKGNAME='fdleaks'
34fi
35
36setupaptarchive
37
38rm -f rootdir/var/log/dpkg.log rootdir/var/log/apt/term.log
39testsuccess aptget install -y fdleaks -qq < /dev/null
40
41checkfdleak() {
42 msgtest 'Check if fds were not' "leaked: expect $1"
43 if [ "$(grep 'root root' rootdir/tmp/testsuccess.output | wc -l)" = "$1" ]; then
44 msgpass
45 else
46 echo
47 cat rootdir/tmp/testsuccess.output
48 msgfail
49 fi
50}
51checkinstall() {
52 checkfdleak 8
53
54 cp rootdir/tmp/testsuccess.output terminal.output
55 tail -n +3 rootdir/var/log/apt/term.log | head -n -1 > terminal.log
56 testfileequal 'terminal.log' "$(cat terminal.output)"
57
58 testequal "startup archives unpack
59install $PKGNAME <none> 1.0
60status half-installed $PKGNAME 1.0
61status unpacked $PKGNAME 1.0
62status unpacked $PKGNAME 1.0
63startup packages configure
64configure $PKGNAME 1.0 <none>
65status unpacked $PKGNAME 1.0
66status half-configured $PKGNAME 1.0
67status installed $PKGNAME 1.0" cut -f 3- -d' ' rootdir/var/log/dpkg.log
68}
69checkinstall
70
71rm -f rootdir/var/log/dpkg.log rootdir/var/log/apt/term.log
72testsuccess aptget purge -y fdleaks -qq
73checkpurge() {
74 checkfdleak 12
75
76 cp rootdir/tmp/testsuccess.output terminal.output
77 tail -n +3 rootdir/var/log/apt/term.log | head -n -1 > terminal.log
78 testfileequal 'terminal.log' "$(cat terminal.output)"
79
80 testequal "startup packages remove
81status installed $PKGNAME 1.0
82remove $PKGNAME 1.0 <none>
83status half-configured $PKGNAME 1.0
84status half-installed $PKGNAME 1.0
85status config-files $PKGNAME 1.0
86status config-files $PKGNAME 1.0
87startup packages configure
88startup packages purge
89remove $PKGNAME 1.0 <none>
90purge $PKGNAME 1.0 <none>
91status config-files $PKGNAME 1.0
92status config-files $PKGNAME 1.0
93status config-files $PKGNAME 1.0
94status config-files $PKGNAME 1.0
95status config-files $PKGNAME 1.0
96status not-installed $PKGNAME <none>
97startup packages configure" cut -f 3- -d' ' rootdir/var/log/dpkg.log
98 testequalor2 "dpkg-query: no packages found matching ${PKGNAME}" "No packages found matching ${PKGNAME}." dpkg -l "$PKGNAME"
99}
100checkpurge
101
102msgtest 'setsid provided is new enough to support' '-w'
103if dpkg-checkbuilddeps -d 'util-linux (>= 2.24.2-1)' /dev/null >/dev/null 2>&1; then
104 msgpass
105else
106 msgskip "$(command dpkg -l util-linux)"
107 exit
108fi
109
110rm -f rootdir/var/log/dpkg.log rootdir/var/log/apt/term.log
111testsuccess runapt command setsid -w "${BUILDDIRECTORY}/apt-get" install -y fdleaks -qq < /dev/null
112checkinstall
113
114rm -f rootdir/var/log/dpkg.log rootdir/var/log/apt/term.log
115testsuccess runapt command setsid -w "${BUILDDIRECTORY}/apt-get" purge -y fdleaks -qq
116checkpurge
117
118touch rootdir/tmp/read_stdin
119
120rm -f rootdir/var/log/dpkg.log rootdir/var/log/apt/term.log
121for i in $(seq 1 10); do echo "$i"; done | testsuccess aptget install -y fdleaks -qq
122checkinstall
123testequal '2' grep -c '^STDIN: ' rootdir/var/log/apt/term.log
124
125rm -f rootdir/var/log/dpkg.log rootdir/var/log/apt/term.log
126yes '' | testsuccess runapt command setsid -w "${BUILDDIRECTORY}/apt-get" purge -y fdleaks -qq
127checkpurge
128testequal '3' grep -c '^STDIN: ' rootdir/var/log/apt/term.log