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