]>
Commit | Line | Data |
---|---|---|
081c9d44 DK |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
4 | TESTDIR=$(readlink -f $(dirname $0)) | |
5 | . $TESTDIR/framework | |
6 | ||
7 | setupenvironment | |
8 | configarchitecture 'amd64' 'i386' | |
9 | ||
10 | DESCR='Some description | |
11 | That has multiple lines' | |
12 | insertpackage 'unstable' 'fancy' 'all' '1' | |
13 | insertpackage 'unstable,installed' 'foo' 'all' '1' 'Depends: bar | |
14 | Conflicts: foobar | |
15 | Recommends: cool (>= 2) | cooler (<< 5)' "$DESCR" | |
16 | insertpackage 'unstable' 'bar' 'all' '1' 'Depends: bar | |
17 | Breaks: foo (<< 1) | |
18 | Replaces: foo (<< 1)' "$DESCR" | |
8c7af4d4 DK |
19 | insertpackage 'unstable' 'specific' 'all' '1' 'Depends: bar:i386, specific:amd64 |
20 | Breaks: foo:amd64 (<< 1) | |
21 | Replaces: foo:i386 (<< 1)' "$DESCR" | |
081c9d44 DK |
22 | |
23 | setupaptarchive | |
24 | ||
25 | # dpkg is installed by our framework | |
26 | testdpkginstalled 'dpkg' | |
27 | testempty aptcache unmet dpkg | |
28 | ||
29 | # FIXME: Find some usecase for unmet as it seems kinda useless/broken | |
30 | #testsuccess aptcache unmet | |
31 | #testsuccess aptcache unmet foo | |
32 | ||
33 | # not too useful to test, but makes coverage green… | |
34 | testsuccess aptcache stats | |
35 | cp rootdir/tmp/testsuccess.output stats.output | |
36 | testsuccess test -s stats.output | |
37 | testsuccess aptcache xvcg foo | |
38 | cp rootdir/tmp/testsuccess.output xvcg.output | |
39 | testsuccess test -s xvcg.output | |
40 | testsuccess aptcache dotty foo | |
41 | cp rootdir/tmp/testsuccess.output dotty.output | |
42 | testsuccess test -s dotty.output | |
43 | # for this, even the sourcecode says it is useless (expect debugging) | |
44 | testsuccess aptcache dump | |
45 | cp rootdir/tmp/testsuccess.output dump.output | |
46 | testsuccess test -s dump.output | |
47 | ||
25b86db1 | 48 | testsuccessequal 'dpkg |
081c9d44 | 49 | bar |
8c7af4d4 | 50 | specific |
081c9d44 DK |
51 | fancy |
52 | foo' aptcache pkgnames | |
25b86db1 DK |
53 | testsuccessequal 'bar' aptcache pkgnames bar |
54 | testsuccessequal 'fancy | |
081c9d44 DK |
55 | foo' aptcache pkgnames f |
56 | ||
1da3b7b8 | 57 | testsuccessequal " foo | 1 | file:$(readlink -f .)/aptarchive unstable/main amd64 Packages" aptcache madison foo |
081c9d44 DK |
58 | |
59 | ### depends | |
60 | ||
25b86db1 | 61 | testsuccessequal 'foo |
081c9d44 | 62 | Depends: bar |
081c9d44 | 63 | Conflicts: <foobar> |
fd23676e DK |
64 | |Recommends: <cool> |
65 | Recommends: <cooler>' aptcache depends foo | |
25b86db1 | 66 | testsuccessequal 'foo |
081c9d44 | 67 | Depends: bar |
081c9d44 | 68 | Conflicts: <foobar> |
fd23676e | 69 | Conflicts: <foobar:i386> |
8c7af4d4 DK |
70 | |Recommends: <cool> |
71 | Recommends: <cooler>' aptcache depends foo --implicit | |
72 | testsuccessequal 'foo | |
73 | Depends: bar | |
74 | Conflicts: <foobar> | |
fd23676e | 75 | Recommends: <cool>' aptcache depends foo -o APT::Cache::ShowOnlyFirstOr=1 |
25b86db1 | 76 | testsuccessequal 'foo |
081c9d44 | 77 | Depends: bar |
081c9d44 | 78 | Conflicts: <foobar> |
fd23676e | 79 | Conflicts: <foobar:i386> |
8c7af4d4 DK |
80 | Recommends: <cool>' aptcache depends foo -o APT::Cache::ShowOnlyFirstOr=1 --implicit |
81 | testsuccessequal 'foo | |
82 | Depends: bar | |
83 | Conflicts: <foobar> | |
fd23676e DK |
84 | |Recommends: <cool> (>= 2) |
85 | Recommends: <cooler> (<< 5)' aptcache depends foo -o APT::Cache::ShowVersion=1 | |
25b86db1 | 86 | testsuccessequal 'foo |
081c9d44 DK |
87 | Depends: bar |
88 | Conflicts: <foobar> | |
8c7af4d4 DK |
89 | Conflicts: <foobar:i386> |
90 | |Recommends: <cool> (>= 2) | |
91 | Recommends: <cooler> (<< 5)' aptcache depends foo -o APT::Cache::ShowVersion=1 --implicit | |
25b86db1 | 92 | testsuccessequal 'foo |
8c7af4d4 DK |
93 | Depends: bar |
94 | Conflicts: <foobar>' aptcache depends foo --no-recommends | |
95 | testsuccessequal 'foo | |
96 | Depends: bar | |
97 | Conflicts: <foobar> | |
98 | Conflicts: <foobar:i386>' aptcache depends foo --no-recommends --implicit | |
99 | testsuccessequal 'foo | |
100 | Depends: bar' aptcache depends foo --important --implicit | |
25b86db1 | 101 | testsuccessequal 'foo |
8c7af4d4 DK |
102 | Conflicts: <foobar>' aptcache depends foo --important --no-depends --conflicts |
103 | testsuccessequal 'foo | |
104 | Conflicts: <foobar> | |
105 | Conflicts: <foobar:i386>' aptcache depends foo --important --no-depends --conflicts --implicit | |
106 | testsuccessequal 'foo | |
107 | Depends: bar | |
081c9d44 | 108 | Conflicts: <foobar> |
8c7af4d4 DK |
109 | |Recommends: <cool> |
110 | Recommends: <cooler> | |
111 | bar | |
112 | Depends: bar | |
113 | Breaks: foo | |
114 | Replaces: foo | |
115 | <foobar> | |
116 | <cool> | |
117 | <cooler>' aptcache depends foo --recurse | |
25b86db1 | 118 | testsuccessequal 'foo |
081c9d44 | 119 | Depends: bar |
081c9d44 DK |
120 | Conflicts: <foobar> |
121 | Conflicts: <foobar:i386> | |
fd23676e DK |
122 | |Recommends: <cool> |
123 | Recommends: <cooler> | |
081c9d44 DK |
124 | bar |
125 | Depends: bar | |
126 | Breaks: foo | |
127 | Breaks: <foo:i386> | |
128 | Replaces: foo | |
129 | Replaces: <foo:i386> | |
081c9d44 DK |
130 | <foobar> |
131 | <foobar:i386> | |
fd23676e DK |
132 | <cool> |
133 | <cooler> | |
8c7af4d4 DK |
134 | <foo:i386>' aptcache depends foo --recurse --implicit |
135 | testsuccessequal 'foo | |
136 | Depends: bar | |
137 | bar | |
138 | Depends: bar | |
139 | Replaces: foo' aptcache depends foo --recurse --important --replaces | |
25b86db1 | 140 | testsuccessequal 'foo |
081c9d44 DK |
141 | Depends: bar |
142 | bar | |
143 | Depends: bar | |
144 | Replaces: foo | |
145 | Replaces: <foo:i386> | |
8c7af4d4 DK |
146 | <foo:i386>' aptcache depends foo --recurse --important --replaces --implicit |
147 | testsuccessequal 'bar | |
148 | Depends: bar | |
149 | Breaks: foo | |
150 | Replaces: foo' aptcache depends bar | |
151 | testsuccessequal 'bar | |
152 | Depends: bar | |
153 | Breaks: foo | |
154 | Breaks: <foo:i386> | |
155 | Replaces: foo | |
156 | Replaces: <foo:i386>' aptcache depends bar --implicit | |
157 | testsuccessequal 'specific | |
158 | Depends: <bar:i386> | |
159 | Depends: specific:amd64 | |
160 | Breaks: foo:amd64 | |
161 | Replaces: <foo:i386>' aptcache depends specific | |
162 | testsuccessequal 'specific | |
163 | Depends: <bar:i386> | |
164 | Depends: specific:amd64 | |
165 | Breaks: foo:amd64 | |
166 | Replaces: <foo:i386>' aptcache depends specific --implicit | |
081c9d44 DK |
167 | |
168 | ## rdpends | |
169 | ||
25b86db1 | 170 | testsuccessequal 'foo |
081c9d44 DK |
171 | Reverse Depends: |
172 | bar | |
8c7af4d4 | 173 | specific |
081c9d44 | 174 | bar' aptcache rdepends foo |
25b86db1 | 175 | testsuccessequal 'foo |
081c9d44 | 176 | Reverse Depends: |
b291aa59 | 177 | Breaks: bar |
8c7af4d4 | 178 | Breaks: specific |
b291aa59 | 179 | Replaces: bar' aptcache rdepends foo -o APT::Cache::ShowDependencyType=1 |
25b86db1 | 180 | testsuccessequal 'foo |
081c9d44 | 181 | Reverse Depends: |
b291aa59 | 182 | Breaks: bar (<< 1) |
8c7af4d4 | 183 | Breaks: specific (<< 1) |
b291aa59 | 184 | Replaces: bar (<< 1)' aptcache rdepends foo -o APT::Cache::ShowDependencyType=1 -o APT::Cache::ShowVersion=1 |
25b86db1 | 185 | testsuccessequal 'foo |
081c9d44 | 186 | Reverse Depends: |
8c7af4d4 DK |
187 | Breaks: bar (<< 1) |
188 | Breaks: specific (<< 1)' aptcache rdepends foo -o APT::Cache::ShowDependencyType=1 -o APT::Cache::ShowVersion=1 --important --breaks |