]>
Commit | Line | Data |
---|---|---|
c23e6cd5 MV |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
63c71412 DK |
4 | TESTDIR="$(readlink -f "$(dirname "$0")")" |
5 | . "$TESTDIR/framework" | |
c23e6cd5 MV |
6 | |
7 | setupenvironment | |
8 | configarchitecture 'native' | |
9 | ||
10 | # old conffile | |
11 | setupsimplenativepackage 'compiz-core' 'native' '1.0' 'unstable' | |
12 | BUILDDIR='incoming/compiz-core-1.0' | |
63c71412 DK |
13 | mkdir -p "${BUILDDIR}/debian/compiz-core/etc" |
14 | echo 'foo=bar;' > "${BUILDDIR}/compiz.conf" | |
15 | echo 'compiz.conf /etc/compiz.conf' >> "${BUILDDIR}/debian/install" | |
c23e6cd5 MV |
16 | buildpackage "$BUILDDIR" 'unstable' 'main' 'native' |
17 | rm -rf "$BUILDDIR" | |
18 | ||
19 | # new conffile | |
20 | setupsimplenativepackage 'compiz-core' 'native' '2.0' 'unstable' | |
21 | BUILDDIR='incoming/compiz-core-2.0' | |
63c71412 DK |
22 | mkdir -p "${BUILDDIR}/debian/compiz-core/etc" |
23 | echo 'foo2=bar2;' > "${BUILDDIR}/compiz.conf" | |
24 | echo 'compiz.conf /etc/compiz.conf' >> "${BUILDDIR}/debian/install" | |
c23e6cd5 MV |
25 | buildpackage "$BUILDDIR" 'unstable' 'main' 'native' |
26 | rm -rf "$BUILDDIR" | |
27 | ||
28 | setupaptarchive | |
29 | ||
30 | testsuccess aptget install compiz-core=1.0 | |
31 | ||
32 | # fake conffile change | |
63c71412 | 33 | echo 'meep' >> rootdir/etc/compiz.conf/compiz.conf |
c23e6cd5 | 34 | |
f74a6fa1 DK |
35 | # FIXME: Is there really no way to see if dpkg actually prompts? |
36 | msgtest 'Test for successful execution of' 'apt-get install compiz-core=2.0' | |
63c71412 DK |
37 | OUTPUT="$(mktemp)" |
38 | addtrap "rm \"$OUTPUT\";" | |
c23e6cd5 | 39 | exec 3> apt-progress.log |
63c71412 | 40 | testsuccess --nomsg aptget install compiz-core=2.0 -o APT::Status-Fd=3 -o Dpkg::Use-Pty=false -o dpkg::options::='--force-confold' |
c23e6cd5 MV |
41 | |
42 | # and ensure there is a conffile message in the file | |
f74a6fa1 | 43 | msgtest 'Test status fd for an included' 'pmconffile msg' |
63c71412 | 44 | testsuccess --nomsg grep "pmconffile:/etc/compiz.conf/compiz.conf" apt-progress.log |