]> git.saurik.com Git - apt.git/blame - test/integration/test-disappearing-packages
tests: try to support spaces in TMPDIR
[apt.git] / test / integration / test-disappearing-packages
CommitLineData
75954ae2
DK
1#!/bin/sh
2set -e
3
63c71412
DK
4TESTDIR="$(readlink -f "$(dirname "$0")")"
5. "$TESTDIR/framework"
75954ae2 6setupenvironment
ea65d079 7configarchitecture 'native'
75954ae2 8
63c71412
DK
9buildsimplenativepackage 'old-pkg' 'native' '1.0' 'stable'
10buildsimplenativepackage 'unrelated' 'all' '0.5' 'unstable'
75954ae2 11
63c71412 12setupsimplenativepackage 'new-pkg' 'native' '2.0' 'unstable' 'Provides: old-pkg
75954ae2 13Replaces: old-pkg
63c71412
DK
14Conflicts: old-pkg (<< 2.0)'
15BUILDDIR='incoming/new-pkg-2.0'
16echo '/usr/share/doc/new-pkg /usr/share/doc/old-pkg' > "${BUILDDIR}/debian/new-pkg.links"
17buildpackage "$BUILDDIR" 'unstable' 'main'
75954ae2
DK
18rm -rf "$BUILDDIR"
19
63c71412
DK
20setupsimplenativepackage 'old-pkg' 'all' '2.0' 'unstable' 'Depends: new-pkg'
21BUILDDIR='incoming/old-pkg-2.0'
22echo '/usr/share/doc/new-pkg /usr/share/doc/old-pkg' > "${BUILDDIR}/debian/old-pkg.links"
75954ae2
DK
23echo "
24override_dh_link:
25 rm -rf debian/old-pkg/usr/share/doc/old-pkg/
63c71412
DK
26 dh_link" >> "${BUILDDIR}/debian/rules"
27buildpackage "$BUILDDIR" 'unstable' 'main'
75954ae2
DK
28rm -rf "$BUILDDIR"
29
30setupaptarchive
31
0440d936 32testsuccess aptget install old-pkg=1.0 --trivial-only
75954ae2 33
ec7f904e 34testmarkedauto # old-pkg is manual installed
75954ae2 35
63c71412
DK
36CMD='aptget dist-upgrade -y -q=0'
37msgtest 'Test for equality of' "$CMD"
38COMPAREFILE="$(mktemp)"
39echo 'The following package disappeared from your system as
75954ae2
DK
40all files have been overwritten by other packages:
41 old-pkg
63c71412
DK
42Note: This is done automatically and on purpose by dpkg.' > "$COMPAREFILE"
43$CMD 2>&1 | tail -n 4 | diff -u "$COMPAREFILE" - && msgpass || msgfail
44rm "$COMPAREFILE"
75954ae2 45
ea65d079 46sed -i rootdir/var/log/apt/history.log -e '/^Commandline: / d' -e '/^Start-Date: / d' -e '/^End-Date: / d' -e "s#:$(getarchitecture 'native') #:native #"
63c71412 47testfileequal 'rootdir/var/log/apt/history.log' '
ea65d079 48Install: old-pkg:native (1.0)
75954ae2 49
ea65d079
DK
50Install: new-pkg:native (2.0, automatic)
51Upgrade: old-pkg:native (1.0, 2.0)
63c71412 52Disappeared: old-pkg (1.0)'
75954ae2 53
ec7f904e 54testmarkedauto # new-pkg should have get the manual flag from old-pkg