]> git.saurik.com Git - apt.git/blame - test/integration/test-bug-770291-reinstall
tests: use quiet level 0 by default in tests
[apt.git] / test / integration / test-bug-770291-reinstall
CommitLineData
4e6a7e26
DK
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6setupenvironment
7configarchitecture 'i386'
8
9insertpackage 'unstable,installed' 'libc6' 'i386' '1'
10insertpackage 'unstable,installed' 'libselinux1' 'i386' '1'
11
12cp rootdir/var/lib/dpkg/status dpkg.status
13
14insertpackage 'unstable,installed' 'init' 'i386' '1' 'Depends: systemd-sysv
15Essential: yes'
16insertpackage 'unstable,installed' 'systemd-sysv' 'i386' '215-5+b1' 'Depends: systemd (= 215-5+b1)
17Pre-Depends: systemd'
18# fun fact: we need these two pre-depends to get systemd ordered before systemd-sysv as
19# many pre-depends mean: do early (as they are a pain, so get them out of the way early)
20insertpackage 'unstable,installed' 'systemd' 'i386' '215-5+b1' 'Pre-Depends: libc6, libselinux1'
21
22# depends loop
23insertpackage 'unstable,installed' 'dependsA' 'i386' '1' 'Depends: dependsB
24Essential: yes'
25insertpackage 'unstable,installed' 'dependsB' 'i386' '1' 'Depends: dependsA
26Essential: yes'
27
28# pre-depends loop
29insertpackage 'unstable,installed' 'predependsA' 'i386' '1' 'Pre-Depends: predependsB
30Essential: yes'
31insertpackage 'unstable,installed' 'predependsB' 'i386' '1' 'Pre-Depends: predependsA
32Essential: yes'
33
34# pre-depends-to-depends loop
35insertpackage 'unstable,installed' 'predependsdependsA' 'i386' '1' 'Pre-Depends: predependsdependsB
36Essential: yes'
37insertpackage 'unstable,installed' 'predependsdependsB' 'i386' '1' 'Depends: predependsdependsA
38Essential: yes'
39
40setupaptarchive
41
25b86db1 42testsuccessequal 'Reading package lists...
4e6a7e26
DK
43Building dependency tree...
440 upgraded, 0 newly installed, 2 reinstalled, 0 to remove and 0 not upgraded.
45Inst systemd [215-5+b1] (215-5+b1 unstable [i386])
46Conf systemd (215-5+b1 unstable [i386])
47Inst systemd-sysv [215-5+b1] (215-5+b1 unstable [i386])
48Conf systemd-sysv (215-5+b1 unstable [i386])' aptget install --reinstall systemd systemd-sysv -s
49
25b86db1 50testsuccessequal 'Reading package lists...
4e6a7e26
DK
51Building dependency tree...
520 upgraded, 0 newly installed, 2 reinstalled, 0 to remove and 0 not upgraded.
53Inst dependsA [1] (1 unstable [i386])
54Inst dependsB [1] (1 unstable [i386])
55Conf dependsB (1 unstable [i386])
56Conf dependsA (1 unstable [i386])' aptget install --reinstall dependsA dependsB -s
57
58# there is a chance dpkg can actually do these, BUT this depends on the maintainerscripts (not) present
59# which is very very risky to depend on (and apt doesn't know about that anyhow).
60testfailure aptget install --reinstall predependsA predependsB -s -o Debug::pkgPackageManager=1
61testequal "E: Couldn't configure predependsA:i386, probably a dependency cycle." tail -n1 rootdir/tmp/testfailure.output
62
63# FIXME: the error message is a catch all here, not like the one above
64testfailure aptget install --reinstall predependsdependsA predependsdependsB -s -o Debug::pkgPackageManager=1
65testequal "E: Could not configure 'predependsdependsB:i386'. " tail -n1 rootdir/tmp/testfailure.output
66
67
68msgmsg 'While we are at it, lets try these loops without reinstall as well'
69cp dpkg.status rootdir/var/lib/dpkg/status
70
25b86db1 71testsuccessequal 'Reading package lists...
4e6a7e26
DK
72Building dependency tree...
73The following NEW packages will be installed:
74 systemd systemd-sysv
750 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
76Inst systemd (215-5+b1 unstable [i386])
77Conf systemd (215-5+b1 unstable [i386])
78Inst systemd-sysv (215-5+b1 unstable [i386])
79Conf systemd-sysv (215-5+b1 unstable [i386])' aptget install systemd systemd-sysv -s
80
25b86db1 81testsuccessequal 'Reading package lists...
4e6a7e26
DK
82Building dependency tree...
83The following NEW packages will be installed:
84 dependsA dependsB
850 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
86Inst dependsA (1 unstable [i386]) []
87Inst dependsB (1 unstable [i386])
88Conf dependsB (1 unstable [i386])
89Conf dependsA (1 unstable [i386])' aptget install dependsA dependsB -s
90
91# there is a chance dpkg can actually do these, BUT this depends on the maintainerscripts (not) present
92# which is very very risky to depend on (and apt doesn't know about that anyhow).
93testfailure aptget install predependsA predependsB -s -o Debug::pkgPackageManager=1
94testequal "E: Couldn't configure predependsA:i386, probably a dependency cycle." tail -n1 rootdir/tmp/testfailure.output
95
96# FIXME: the error message is a catch all here, not like the one above
97testfailure aptget install predependsdependsA predependsdependsB -s -o Debug::pkgPackageManager=1
98testequal "E: Could not configure 'predependsdependsB:i386'. " tail -n1 rootdir/tmp/testfailure.output