summaryrefslogtreecommitdiff
path: root/test/integration/test-crossgrades
blob: d412546c1b1dda1d1f02445f6276e73aa0cec2ea (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
#!/bin/sh
set -e

TESTDIR="$(readlink -f "$(dirname "$0")")"
. "$TESTDIR/framework"

setupenvironment
configarchitecture 'i386' 'amd64' 'armel'
configdpkgnoopchroot

buildsimplenativepackage 'unrelated' 'amd64' '1' 'stable'
buildsimplenativepackage 'crosser' 'i386,armel' '1' 'stable' 'Multi-Arch: same'
buildsimplenativepackage 'crosser' 'amd64' '2' 'unstable'
setupaptarchive

singleinstance() {
	testsuccess apt install crosser:i386=1 unrelated:amd64 -y --planner $1
	testdpkginstalled 'crosser:i386' 'unrelated'

	testsuccess apt install crosser:amd64 -y -o Debug::pkgDpkgPm=1 -o Dpkg::Use-Pty=0 --purge --planner $1
	cp -a rootdir/tmp/testsuccess.output crosser.output
	testfailure grep -- '--remove.*crosser.*' crosser.output
	testfailure grep -- '--purge' crosser.output
	testsuccess apt install crosser:amd64 unrelated:amd64- -y -o Dpkg::Use-Pty=0 --purge -o Debug::pkgDPkgProgressReporting=1 --planner $1
	testdpkgnotinstalled 'crosser:i386' 'unrelated'
	testdpkginstalled 'crosser:amd64'

	testsuccess apt purge crosser:amd64 -y --planner $1
	testdpkgnotinstalled 'crosser:amd64'
}
singleinstance 'internal'
singleinstance 'apt'

multiinstance() {
	testsuccess apt install crosser:i386=1 crosser:armel=1 unrelated:amd64 -y --planner $1
	testdpkginstalled 'crosser:i386' 'crosser:armel' 'unrelated'

	testsuccess apt install crosser:amd64 -y -o Debug::pkgDpkgPm=1 -o Dpkg::Use-Pty=0 --purge --planner $1
	cp -a rootdir/tmp/testsuccess.output crosser.output
	testsuccess grep -- '--remove.*crosser.*' crosser.output
	testsuccess grep -- '--purge' crosser.output
	testsuccess apt install crosser:amd64 unrelated:amd64- -y -o Dpkg::Use-Pty=0 --purge -o Debug::pkgDPkgProgressReporting=1 --planner $1
	testdpkgnotinstalled 'crosser:i386' 'crosser:armel' 'unrelated'
	testdpkginstalled 'crosser:amd64'

	testsuccess apt purge crosser:amd64 -y --planner $1
	testdpkgnotinstalled 'crosser:amd64'
}
multiinstance 'internal'