fix progress output for (dist-)upgrade calculation
[ntk/apt.git] / test / integration / test-apt-get-upgrade
CommitLineData
08d3d7e9
MV
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6
7setupenvironment
8configarchitecture "i386"
9
60b3bf0c
MV
10# simple case
11insertpackage 'stable' 'upgrade-simple' 'all' '1.0'
12insertpackage 'unstable' 'upgrade-simple' 'all' '2.0'
13insertinstalledpackage 'upgrade-simple' 'all' '1.0'
08d3d7e9 14
60b3bf0c
MV
15# upgrade with a new dependency
16insertpackage 'stable' 'upgrade-with-new-dep' 'all' '1.0'
17insertpackage 'unstable' 'upgrade-with-new-dep' 'all' '2.0' 'Depends: new-dep'
18insertpackage 'stable' 'new-dep' 'all' '1.0'
19insertinstalledpackage 'upgrade-with-new-dep' 'all' '1.0'
08d3d7e9 20
60b3bf0c
MV
21# upgrade with conflict and a new pkg with higher priority than conflict
22insertpackage 'stable' 'upgrade-with-conflict' 'all' '1.0'
23insertpackage 'unstable' 'upgrade-with-conflict' 'all' '2.0' 'Conflicts: conflicting-dep' 'standard'
24insertpackage 'stable' 'conflicting-dep' 'all' '1.0'
25insertinstalledpackage 'upgrade-with-conflict' 'all' '1.0'
26insertinstalledpackage 'conflicting-dep' 'all' '1.0'
08d3d7e9 27
08d3d7e9
MV
28
29setupaptarchive
30
d029b718 31# Test if normal upgrade works as expected
08d3d7e9
MV
32testequal 'Reading package lists...
33Building dependency tree...
2a884c61 34Calculating upgrade...
08d3d7e9 35The following packages have been kept back:
60b3bf0c 36 upgrade-with-conflict upgrade-with-new-dep
08d3d7e9 37The following packages will be upgraded:
60b3bf0c 38 upgrade-simple
08d3d7e9 391 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
60b3bf0c 40Inst upgrade-simple [1.0] (2.0 unstable [all])
d029b718 41Conf upgrade-simple (2.0 unstable [all])' aptget -s upgrade
08d3d7e9 42
d029b718 43# Test if apt-get upgrade --with-new-pkgs works
08d3d7e9
MV
44testequal 'Reading package lists...
45Building dependency tree...
2a884c61 46Calculating upgrade...
08d3d7e9 47The following NEW packages will be installed:
60b3bf0c 48 new-dep
08d3d7e9 49The following packages have been kept back:
60b3bf0c 50 upgrade-with-conflict
08d3d7e9 51The following packages will be upgraded:
60b3bf0c
MV
52 upgrade-simple upgrade-with-new-dep
532 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
54Inst new-dep (1.0 stable [all])
55Inst upgrade-simple [1.0] (2.0 unstable [all])
56Inst upgrade-with-new-dep [1.0] (2.0 unstable [all])
57Conf new-dep (1.0 stable [all])
58Conf upgrade-simple (2.0 unstable [all])
d029b718 59Conf upgrade-with-new-dep (2.0 unstable [all])' aptget -s upgrade --with-new-pkgs
08d3d7e9 60
d029b718 61# Test if apt-get dist-upgrade works
08d3d7e9
MV
62testequal 'Reading package lists...
63Building dependency tree...
2a884c61 64Calculating upgrade...
60b3bf0c
MV
65The following packages will be REMOVED:
66 conflicting-dep
08d3d7e9 67The following NEW packages will be installed:
60b3bf0c 68 new-dep
08d3d7e9 69The following packages will be upgraded:
60b3bf0c
MV
70 upgrade-simple upgrade-with-conflict upgrade-with-new-dep
713 upgraded, 1 newly installed, 1 to remove and 0 not upgraded.
72Remv conflicting-dep [1.0]
73Inst upgrade-with-conflict [1.0] (2.0 unstable [all])
74Inst new-dep (1.0 stable [all])
75Inst upgrade-simple [1.0] (2.0 unstable [all])
76Inst upgrade-with-new-dep [1.0] (2.0 unstable [all])
77Conf upgrade-with-conflict (2.0 unstable [all])
78Conf new-dep (1.0 stable [all])
79Conf upgrade-simple (2.0 unstable [all])
d029b718 80Conf upgrade-with-new-dep (2.0 unstable [all])' aptget -s dist-upgrade
08d3d7e9 81