summaryrefslogtreecommitdiffstats
path: root/test/integration/test-disappearing-packages
blob: f3fed04f39857d83c723a80adf17ab1715936ca1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/bin/sh
set -e

TESTDIR="$(readlink -f "$(dirname "$0")")"
. "$TESTDIR/framework"
setupenvironment
configarchitecture 'amd64' 'i386'

buildsimplenativepackage 'old-pkg' 'amd64' '1' 'stable'

setupsimplenativepackage 'new-pkg' 'amd64' '2' 'unstable' 'Provides: old-pkg
Replaces: old-pkg
Conflicts: old-pkg (<< 2)'
BUILDDIR='incoming/new-pkg-2'
echo '/usr/share/doc/new-pkg /usr/share/doc/old-pkg' > "${BUILDDIR}/debian/new-pkg.links"
buildpackage "$BUILDDIR" 'unstable' 'main'
rm -rf "$BUILDDIR"

setupsimplenativepackage 'old-pkg' 'all' '2' 'unstable' 'Depends: new-pkg'
BUILDDIR='incoming/old-pkg-2'
echo '/usr/share/doc/new-pkg /usr/share/doc/old-pkg' > "${BUILDDIR}/debian/old-pkg.links"
echo "
override_dh_link:
	rm -rf debian/old-pkg/usr/share/doc/old-pkg/
	dh_link" >> "${BUILDDIR}/debian/rules"
buildpackage "$BUILDDIR" 'unstable' 'main'
rm -rf "$BUILDDIR"

setupsimplenativepackage 'super-new-pkg' 'i386' '3' 'experimental' 'Provides: new-pkg
Replaces: new-pkg
Conflicts: new-pkg (<< 3)'
BUILDDIR='incoming/super-new-pkg-3'
echo '/usr/share/doc/super-new-pkg /usr/share/doc/old-pkg' > "${BUILDDIR}/debian/super-new-pkg.links"
echo '/usr/share/doc/super-new-pkg /usr/share/doc/new-pkg' >> "${BUILDDIR}/debian/super-new-pkg.links"
buildpackage "$BUILDDIR" 'experimental' 'main'
rm -rf "$BUILDDIR"

setupsimplenativepackage 'new-pkg' 'all' '3' 'experimental' 'Depends: super-new-pkg'
BUILDDIR='incoming/new-pkg-3'
echo '/usr/share/doc/super-new-pkg /usr/share/doc/old-pkg' > "${BUILDDIR}/debian/new-pkg.links"
echo '/usr/share/doc/super-new-pkg /usr/share/doc/new-pkg' >> "${BUILDDIR}/debian/new-pkg.links"
echo "
override_dh_link:
	rm -rf debian/new-pkg/usr/share/doc/new-pkg/
	dh_link" >> "${BUILDDIR}/debian/rules"
buildpackage "$BUILDDIR" 'experimental' 'main'
rm -rf "$BUILDDIR"

setupaptarchive

msgmsg 'Let a package disappear' 'old-pkg'
testsuccess aptget install old-pkg=1 --trivial-only
testmarkedauto # old-pkg is manual installed
testsuccess aptget dist-upgrade -y
testdpkgnotinstalled old-pkg
cp rootdir/tmp/testsuccess.output disappear.output
testsuccessequal 'The following package disappeared from your system as
all files have been overwritten by other packages:
  old-pkg
Note: This is done automatically and on purpose by dpkg.' tail -n 4 disappear.output

sed -i rootdir/var/log/apt/history.log -e '/^Commandline: / d' -e '/^Start-Date: / d' -e '/^End-Date: / d' -e "s#:$(getarchitecture 'native') #:native #"
if [ -n "$SUDO_USER" ] && [ "$(id -u "$SUDO_USER")" -gt 0  ]; then
	testfileequal 'rootdir/var/log/apt/history.log' "
Requested-By: $SUDO_USER ($(id -u "$SUDO_USER"))
Install: old-pkg:native (1)

Requested-By: $SUDO_USER ($(id -u "$SUDO_USER"))
Install: new-pkg:native (2, automatic)
Upgrade: old-pkg:native (1, 2)
Disappeared: old-pkg (1)"
else
	testfileequal 'rootdir/var/log/apt/history.log' '
Install: old-pkg:native (1)

Install: new-pkg:native (2, automatic)
Upgrade: old-pkg:native (1, 2)
Disappeared: old-pkg (1)'
fi

testmarkedauto  # new-pkg should have get the manual flag from old-pkg

msgmsg 'Let a package disappear which let the previous disappear' 'new-pkg'
testsuccess aptget dist-upgrade -y -t experimental
testdpkgnotinstalled new-pkg
cp rootdir/tmp/testsuccess.output disappear.output
testsuccessequal 'The following package disappeared from your system as
all files have been overwritten by other packages:
  new-pkg
Note: This is done automatically and on purpose by dpkg.' tail -n 4 disappear.output

testmarkedauto