2 from basetest
import BaseTest
6 sys
.path
.insert(0, '..')
7 from zeroinstall
.injector
import model
, arch
, qdom
8 from zeroinstall
.injector
.namespaces
import XMLNS_IFACE
10 from zeroinstall
.injector
.solver
import SATSolver
as Solver
11 from zeroinstall
.injector
import sat
14 logger
= logging
.getLogger()
17 def lookup_any(self
, digests
):
22 uri_prefix
= 'http://localhost/tests/'
25 def __init__(self
, n
):
30 def add_requires(self
, lib
, min_v
, max_v
):
31 self
.requires
.append((lib
, min_v
, max_v
))
34 def __init__(self
, name
):
38 def get_version(self
, version
):
39 if version
not in self
.versions
:
40 self
.versions
[version
] = Version(version
)
41 return self
.versions
[version
]
44 def child(parent
, name
, attrs
= None):
45 new
= qdom
.Element(XMLNS_IFACE
, name
, attrs
or {})
46 parent
.childNodes
.append(new
)
49 root
= qdom
.Element(XMLNS_IFACE
, 'interface', {'uri' : uri_prefix
+ self
.name
})
50 child(root
, 'name').content
= self
.name
51 child(root
, 'summary').content
= self
.name
54 for version
in self
.versions
.values():
57 'version': str(version
.n
),
60 attrs
['arch'] = version
.arch
61 impl
= child(root
, 'implementation', attrs
)
62 child(impl
, 'manifest-digest', {'sha1new': '1234'})
63 for lib
, min_v
, max_v
in version
.requires
:
64 req
= child(impl
, 'requires', {'interface': uri_prefix
+ lib
})
65 child(req
, 'version', {
66 'before': str(int(max_v
) + 1),
70 feed
= model
.ZeroInstallFeed(root
)
71 feed
.last_modified
= 1
80 def get_prog(self
, prog
):
81 if not prog
in self
.progs
:
82 self
.progs
[prog
] = Program(prog
)
83 return self
.progs
[prog
]
85 def get_interface(self
, uri
):
86 if uri
not in self
.interfaces
:
87 iface
= model
.Interface(uri
)
88 self
.interfaces
[uri
] = iface
89 return self
.interfaces
[uri
]
91 def get_feed(self
, url
):
92 if url
not in self
.feeds
:
93 feed
= self
.progs
[url
.rsplit('/', 1)[1]].build_feed()
94 self
.feeds
[url
] = feed
95 return self
.feeds
[url
]
97 def get_feed_imports(self
, iface
):
100 def assertSelection(expected
, repo
):
103 expected
= [tuple(e
.strip().split('-')) for e
in expected
.split(",")]
105 for line
in repo
.split('\n'):
107 if not line
: continue
109 prog
, versions
= line
.split(':')
112 prog
, prog_arch
= prog
.split()
115 for v
in versions
.split():
116 cache
.get_prog(prog
).get_version(v
).arch
= prog_arch
118 prog
, requires
= line
.split('=>')
119 prog
, version_range
= prog
.strip().split('[')
120 lib
, min_v
, max_v
= requires
.split()
121 assert version_range
.endswith(']')
122 version_range
= version_range
[:-1]
123 if ',' in version_range
:
124 min_p
, max_p
= map(int, version_range
.split(','))
125 prog_versions
= range(min_p
, max_p
+ 1)
127 prog_versions
= [int(version_range
)]
128 for prog_version
in prog_versions
:
129 cache
.get_prog(prog
).get_version(str(prog_version
)).add_requires(lib
, min_v
, max_v
)
131 root
= uri_prefix
+ expected
[0][0]
132 s
= Solver(model
.network_offline
, cache
, stores
)
133 s
.solve(root
, arch
.get_architecture('Linux', 'x86_64'))
135 if expected
[0][1] == 'FAIL':
141 for iface
, impl
in s
.selections
.iteritems():
142 actual
.append(((iface
.uri
.rsplit('/', 1)[1]), impl
.get_version()))
146 if expected
!= actual
:
147 raise Exception("Solve failed:\nExpected: %s\n Actual: %s" % (expected
, actual
))
150 class TestSAT(BaseTest
):
151 def testTrivial(self
):
152 assertSelection("prog-2", """
156 def testSimple(self
):
157 assertSelection("prog-5, liba-5", """
165 def testBestImpossible(self
):
166 assertSelection("prog-1", """
173 assertSelection("prog-1", """
174 prog: 1 2 3 4 5 6 7 8 9
175 liba: 1 2 3 4 5 6 7 8 9
176 libb: 1 2 3 4 5 6 7 8 9
177 libc: 1 2 3 4 5 6 7 8 9
178 libd: 1 2 3 4 5 6 7 8 9
180 prog[2,9] => liba 1 9
181 liba[1,9] => libb 1 9
182 libb[1,9] => libc 1 9
183 libc[1,9] => libd 1 9
184 libd[1,9] => libe 0 0
187 def testNoSolution(self
):
188 assertSelection("prog-FAIL", """
191 prog[1,3] => liba 2 3
194 def testBacktrackSimple(self
):
195 # We initially try liba-3 before learning that it
196 # is incompatible and backtracking.
197 # We learn that liba-3 doesn't work ever.
198 assertSelection("prog-1, liba-2", """
204 def testBacktrackLocal(self
):
205 # We initially try liba-3 before learning that it
206 # is incompatible and backtracking.
207 # We learn that liba-3 doesn't work with prog-1.
208 assertSelection("prog-2, liba-2", """
211 prog[1,2] => liba 1 2
214 def testLearning(self
):
215 # Prog-2 depends on libb and libz, but we can't have both
216 # at once. The learning means we don't have to explore every
217 # possible combination of liba and libb.
218 assertSelection("prog-1", """
221 libb Linux-i486: 1 2 3
222 libz Linux-x86_64: 1 2
225 liba[1,3] => libb 1 3
228 def testToplevelConflict(self
):
229 # We don't detect the conflict until we start solving, but the
230 # conflict is top-level so we abort immediately without
232 assertSelection("prog-FAIL", """
238 def testDiamondConflict(self
):
239 # prog depends on liba and libb, which depend on incompatible
241 assertSelection("prog-FAIL", """
252 def testCoverage(self
):
253 # Try to trigger some edge cases...
255 # An at_most_one clause must be analysed for causing
257 solver
= sat
.SATProblem()
258 v1
= solver
.add_variable("v1")
259 v2
= solver
.add_variable("v2")
260 v3
= solver
.add_variable("v3")
261 solver
.at_most_one([v1
, v2
])
262 solver
.add_clause([v1
, sat
.neg(v3
)])
263 solver
.add_clause([v2
, sat
.neg(v3
)])
264 solver
.add_clause([v1
, v3
])
265 solver
.run_solver(lambda: v3
)
267 def testFailState(self
):
268 # If we can't select a valid combination,
269 # try to select as many as we can.
270 s
= assertSelection("prog-FAIL", """
275 prog[1,2] => liba 1 2
276 liba[1,2] => libb 1 2
277 libb[1,2] => libc 0 0
281 for iface
, impl
in s
.selections
.iteritems():
282 if impl
is not None: impl
= impl
.get_version()
283 selected
[iface
.uri
.rsplit('/', 1)[1]] = impl
292 solver
= sat
.SATProblem()
294 a
= solver
.add_variable('a')
295 b
= solver
.add_variable('b')
296 c
= solver
.add_variable('c')
298 # Add a clause. It starts watching the first two variables (a and b).
299 # (use the internal function to avoid variable reordering)
300 solver
._add
_clause
([a
, b
, c
], False)
302 # b is False, so it switches to watching a and c
303 solver
.add_clause([sat
.neg(b
)])
305 # Try to trigger bug.
306 solver
.add_clause([c
])
309 solver
.run_solver(lambda: decisions
.pop())
310 assert not decisions
# All used up
312 assert solver
.assigns
[a
].value
== True
314 def testOverbacktrack(self
):
315 # After learning that prog-3 => m0 we backtrack all the way up to the prog-3
316 # assignment, unselecting liba-3, and then select it again.
317 assertSelection("prog-3, liba-3, libb-3, libc-1, libz-2", """
321 libc Linux-x86_64: 2 3
324 prog[2,3] => liba 1 3
325 prog[2,3] => libz 1 2
326 liba[1,3] => libb 1 3
327 libb[1,3] => libc 1 3
330 if __name__
== '__main__':