]>
Commit | Line | Data |
---|---|---|
1f6cf9e7 DK |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
4 | TESTDIR=$(readlink -f $(dirname $0)) | |
5 | . $TESTDIR/framework | |
6 | setupenvironment | |
7 | configarchitecture 'amd64' 'i386' | |
8 | ||
9 | insertinstalledpackage 'cool' 'all' '1' | |
10 | insertinstalledpackage 'stuff' 'all' '1' | |
11 | ||
12 | insertpackage 'unstable' 'cool' 'all' '2' 'Multi-Arch: foreign' | |
13 | insertpackage 'unstable' 'stuff' 'all' '2' 'Multi-Arch: foreign' | |
14 | insertpackage 'unstable' 'coolstuff' 'i386,amd64' '2' 'Depends: cool, stuff' | |
081c9d44 DK |
15 | insertpackage 'unstable' 'awesome' 'all' '2' 'Multi-Arch: foreign |
16 | Conflicts: badstuff' | |
17 | insertpackage 'unstable' 'badstuff' 'all' '2' 'Multi-Arch: foreign | |
18 | Conflicts: awesome' | |
1f6cf9e7 DK |
19 | insertpackage 'unstable' 'awesomecoolstuff' 'i386' '2' 'Depends: coolstuff, awesome' |
20 | ||
21 | insertpackage 'experimental' 'cool' 'all' '3' 'Multi-Arch: foreign' | |
22 | insertpackage 'experimental' 'stuff' 'all' '3' 'Multi-Arch: foreign' | |
23 | insertpackage 'experimental' 'coolstuff' 'i386,amd64' '3' 'Depends: cool, stuff' | |
24 | ||
25 | setupaptarchive | |
26 | ||
27 | rm -f /tmp/dump.edsp | |
25b86db1 | 28 | testfailureequal 'Reading package lists... |
1f6cf9e7 DK |
29 | Building dependency tree... |
30 | Execute external solver... | |
31 | The solver encountered an error of type: ERR_JUST_DUMPING | |
32 | The following information might help you to understand what is wrong: | |
33 | I am too dumb, i can just dump! | |
34 | Please use one of my friends instead! | |
35 | ||
36 | E: External solver failed with: I am too dumb, i can just dump!' aptget install --solver dump coolstuff -s | |
37 | testsuccess test -s /tmp/dump.edsp | |
38 | rm -f /tmp/dump.edsp | |
39 | ||
40 | #FIXME: this should be unstable, but we don't support pinning yet | |
25b86db1 | 41 | testsuccessequal 'Reading package lists... |
1f6cf9e7 DK |
42 | Building dependency tree... |
43 | Execute external solver... | |
44 | The following NEW packages will be installed: | |
45 | coolstuff | |
46 | 0 upgraded, 1 newly installed, 0 to remove and 2 not upgraded. | |
47 | Inst coolstuff (3 experimental [amd64]) | |
48 | Conf coolstuff (3 experimental [amd64])' aptget install --solver apt coolstuff -s | |
49 | ||
25b86db1 | 50 | testsuccessequal 'Reading package lists... |
081c9d44 DK |
51 | Building dependency tree... |
52 | Execute external solver... | |
53 | The following packages will be REMOVED: | |
54 | cool* | |
55 | 0 upgraded, 0 newly installed, 1 to remove and 1 not upgraded. | |
56 | Purg cool [1]' aptget purge --solver apt cool -s | |
57 | ||
1f6cf9e7 DK |
58 | testsuccess aptget install awesomecoolstuff:i386 -s |
59 | testsuccess aptget install --solver apt awesomecoolstuff:i386 -s | |
60 | ||
61 | rm -f /tmp/dump.edsp | |
62 | testfailure aptget install --solver dump awesomecoolstuff:i386 -s | |
63 | testsuccess test -s /tmp/dump.edsp | |
64 | ||
172947cd DK |
65 | testsuccess aptget dist-upgrade -s |
66 | testsuccess aptget dist-upgrade -s --solver apt | |
67 | ||
68 | testsuccess aptget upgrade -s | |
69 | testsuccess aptget upgrade -s --solver apt | |
70 | ||
081c9d44 DK |
71 | testfailure aptget install awesome badstuff -s |
72 | testfailure aptget install awesome badstuff -s --solver apt | |
73 | testsuccess grep 'ERR_UNSOLVABLE' rootdir/tmp/testfailure.output | |
74 | ||
1f6cf9e7 DK |
75 | configarchitecture 'armel' |
76 | msgtest 'Test direct calling is okay for' 'apt-internal-solver' | |
081c9d44 | 77 | cat /tmp/dump.edsp | aptinternalsolver -q=0 > solver.result 2>&1 || true |
1f6cf9e7 DK |
78 | if [ "$(tail -n2 solver.result | head -n1 )" = "Message: Done" ]; then |
79 | msgpass | |
80 | else | |
81 | cat solver.result | |
82 | msgfail | |
83 | fi | |
84 | rm -f /tmp/dump.edsp | |
85 | ||
86 | testfailure aptget install --solver apt awesomecoolstuff:i386 -s | |
081c9d44 DK |
87 | |
88 | testsuccess aptinternalsolver scenario | |
25b86db1 | 89 | testsuccessequal 'Package: stuff |
081c9d44 DK |
90 | Source: stuff |
91 | Architecture: all | |
92 | Version: 1 | |
93 | Installed: yes | |
94 | APT-ID: 2 | |
95 | Priority: optional | |
96 | Section: other | |
97 | APT-Pin: 100 | |
98 | APT-Candidate: yes | |
99 | ' aptinternalsolver scenario stuff |