]> git.saurik.com Git - apt.git/blame_incremental - test/integration/test-apt-get-upgrade
only consider versioned kernel packages in autoremove
[apt.git] / test / integration / test-apt-get-upgrade
... / ...
CommitLineData
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6
7setupenvironment
8configarchitecture "i386"
9
10# simple case
11insertpackage 'stable' 'upgrade-simple' 'all' '1.0'
12insertpackage 'unstable' 'upgrade-simple' 'all' '2.0'
13insertinstalledpackage 'upgrade-simple' 'all' '1.0'
14
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'
20
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'
27
28
29setupaptarchive
30
31# Test if normal upgrade works as expected
32testequal 'Reading package lists...
33Building dependency tree...
34The following packages have been kept back:
35 upgrade-with-conflict upgrade-with-new-dep
36The following packages will be upgraded:
37 upgrade-simple
381 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
39Inst upgrade-simple [1.0] (2.0 unstable [all])
40Conf upgrade-simple (2.0 unstable [all])' aptget -s upgrade
41
42# Test if apt-get upgrade --with-new-pkgs works
43testequal 'Reading package lists...
44Building dependency tree...
45The following NEW packages will be installed:
46 new-dep
47The following packages have been kept back:
48 upgrade-with-conflict
49The following packages will be upgraded:
50 upgrade-simple upgrade-with-new-dep
512 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
52Inst new-dep (1.0 stable [all])
53Inst upgrade-simple [1.0] (2.0 unstable [all])
54Inst upgrade-with-new-dep [1.0] (2.0 unstable [all])
55Conf new-dep (1.0 stable [all])
56Conf upgrade-simple (2.0 unstable [all])
57Conf upgrade-with-new-dep (2.0 unstable [all])' aptget -s upgrade --with-new-pkgs
58
59# Test if apt-get dist-upgrade works
60testequal 'Reading package lists...
61Building dependency tree...
62The following packages will be REMOVED:
63 conflicting-dep
64The following NEW packages will be installed:
65 new-dep
66The following packages will be upgraded:
67 upgrade-simple upgrade-with-conflict upgrade-with-new-dep
683 upgraded, 1 newly installed, 1 to remove and 0 not upgraded.
69Remv conflicting-dep [1.0]
70Inst upgrade-with-conflict [1.0] (2.0 unstable [all])
71Inst new-dep (1.0 stable [all])
72Inst upgrade-simple [1.0] (2.0 unstable [all])
73Inst upgrade-with-new-dep [1.0] (2.0 unstable [all])
74Conf upgrade-with-conflict (2.0 unstable [all])
75Conf new-dep (1.0 stable [all])
76Conf upgrade-simple (2.0 unstable [all])
77Conf upgrade-with-new-dep (2.0 unstable [all])' aptget -s dist-upgrade
78