1 #!/usr/bin/env python2.4
2 from basetest
import BaseTest
3 import sys
, tempfile
, os
, shutil
6 sys
.path
.insert(0, '..')
7 from zeroinstall
.injector
import autopolicy
, reader
, model
8 from zeroinstall
.injector
.iface_cache
import iface_cache
9 from zeroinstall
.support
import basedir
12 logger
= logging
.getLogger()
13 #logger.setLevel(logging.DEBUG)
15 class TestPolicy(BaseTest
):
17 foo
= iface_cache
.get_interface('http://foo/Binary.xml')
18 reader
.update(foo
, 'Binary.xml')
19 foo_src
= iface_cache
.get_interface('http://foo/Source.xml')
20 reader
.update(foo_src
, 'Source.xml')
21 compiler
= iface_cache
.get_interface('http://foo/Compiler.xml')
22 reader
.update(compiler
, 'Compiler.xml')
24 p
= autopolicy
.AutoPolicy('http://foo/Binary.xml', dry_run
= True)
26 p
.network_use
= model
.network_full
28 assert p
.implementation
[foo
].id == 'sha1=123'
30 # Now ask for source instead
33 assert p
.implementation
[foo
].id == 'sha1=234' # The source
34 assert p
.implementation
[compiler
].id == 'sha1=345' # A binary needed to compile it
36 suite
= unittest
.makeSuite(TestPolicy
)
37 if __name__
== '__main__':