]> git.saurik.com Git - apt.git/blame - test/integration/test-apt-progress-fd-conffile
Fix conffile prompt regression (LP: #1260297)
[apt.git] / test / integration / test-apt-progress-fd-conffile
CommitLineData
c23e6cd5
MV
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6
7setupenvironment
8configarchitecture 'native'
9
10# old conffile
11setupsimplenativepackage 'compiz-core' 'native' '1.0' 'unstable'
12BUILDDIR='incoming/compiz-core-1.0'
13mkdir -p ${BUILDDIR}/debian/compiz-core/etc
14echo 'foo=bar;' > ${BUILDDIR}/compiz.conf
15echo 'compiz.conf /etc/compiz.conf' >> ${BUILDDIR}/debian/install
16buildpackage "$BUILDDIR" 'unstable' 'main' 'native'
17rm -rf "$BUILDDIR"
18
19# new conffile
20setupsimplenativepackage 'compiz-core' 'native' '2.0' 'unstable'
21BUILDDIR='incoming/compiz-core-2.0'
22mkdir -p ${BUILDDIR}/debian/compiz-core/etc
23echo 'foo2=bar2;' > ${BUILDDIR}/compiz.conf
24echo 'compiz.conf /etc/compiz.conf' >> ${BUILDDIR}/debian/install
25buildpackage "$BUILDDIR" 'unstable' 'main' 'native'
26rm -rf "$BUILDDIR"
27
28setupaptarchive
29
30testsuccess aptget install compiz-core=1.0
31
32# fake conffile change
33echo "meep" >> rootdir/etc/compiz.conf/compiz.conf
34
35# install
36exec 3> apt-progress.log
37echo n | aptget install compiz-core=2.0 -o APT::Status-Fd=3 -o Dpkg::Use-Pty=false
38
39# and ensure there is a conffile message in the file
40msgtest "Conffile prompt in apt-progress.log"
41grep -q "pmconffile:/etc/compiz.conf/compiz.conf" apt-progress.log && msgpass || (cat apt-progress.log && msgfail)
42
43cat apt-progress.log