author | sylvain.thenault@logilab.fr |
Mon, 04 May 2009 12:55:00 +0200 | |
branch | tls-sprint |
changeset 1640 | 65b60f177eb1 |
parent 1341 | 9502d02630bf |
child 1787 | 71c143c0ada3 |
permissions | -rw-r--r-- |
0 | 1 |
from logilab.common.testlib import unittest_main, TestCase |
2 |
||
3 |
from os.path import join |
|
4 |
||
5 |
from cubicweb import CW_SOFTWARE_ROOT as BASE |
|
6 |
from cubicweb.vregistry import VObject |
|
7 |
from cubicweb.cwvreg import CubicWebRegistry, UnknownProperty |
|
777
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
8 |
from cubicweb.devtools import TestServerConfiguration |
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
9 |
from cubicweb.interfaces import IMileStone |
0 | 10 |
|
1640 | 11 |
from cubes.card.entities import Card |
12 |
||
0 | 13 |
class YesSchema: |
14 |
def __contains__(self, something): |
|
15 |
return True |
|
1341 | 16 |
|
17 |
WEBVIEWSDIR = join(BASE, 'web', 'views') |
|
1640 | 18 |
|
0 | 19 |
class VRegistryTC(TestCase): |
20 |
||
21 |
def setUp(self): |
|
777
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
22 |
config = TestServerConfiguration('data') |
0 | 23 |
self.vreg = CubicWebRegistry(config) |
777
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
24 |
config.bootstrap_cubes() |
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
25 |
self.vreg.schema = config.load_schema() |
1640 | 26 |
|
0 | 27 |
def test_load(self): |
1341 | 28 |
self.vreg.init_registration([WEBVIEWSDIR]) |
1640 | 29 |
self.vreg.load_file(join(WEBVIEWSDIR, 'cwuser.py'), 'cubicweb.web.views.cwuser') |
1341 | 30 |
self.vreg.load_file(join(WEBVIEWSDIR, 'baseviews.py'), 'cubicweb.web.views.baseviews') |
631
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
31 |
fpvc = [v for v in self.vreg.registry_objects('views', 'primary') |
1640 | 32 |
if v.__module__ == 'cubicweb.web.views.cwuser'][0] |
0 | 33 |
fpv = fpvc(None, None) |
34 |
# don't want a TypeError due to super call |
|
35 |
self.assertRaises(AttributeError, fpv.render_entity_attributes, None, None) |
|
36 |
||
37 |
def test_load_interface_based_vojects(self): |
|
1341 | 38 |
self.vreg.init_registration([WEBVIEWSDIR]) |
1640 | 39 |
self.vreg.load_file(join(BASE, 'entities', '__init__.py'), 'cubicweb.entities.__init__') |
1341 | 40 |
self.vreg.load_file(join(WEBVIEWSDIR, 'idownloadable.py'), 'cubicweb.web.views.idownloadable') |
1640 | 41 |
self.vreg.load_file(join(WEBVIEWSDIR, 'primary.py'), 'cubicweb.web.views.primary') |
0 | 42 |
self.assertEquals(len(self.vreg['views']['primary']), 2) |
1640 | 43 |
self.vreg.initialization_completed() |
44 |
self.assertEquals(len(self.vreg['views']['primary']), 1) |
|
45 |
||
740 | 46 |
def test___selectors__compat(self): |
0 | 47 |
myselector1 = lambda *args: 1 |
48 |
myselector2 = lambda *args: 1 |
|
49 |
class AnAppObject(VObject): |
|
50 |
__selectors__ = (myselector1, myselector2) |
|
740 | 51 |
AnAppObject.build___select__() |
52 |
self.assertEquals(AnAppObject.__select__(AnAppObject), 2) |
|
0 | 53 |
|
54 |
def test_properties(self): |
|
55 |
self.failIf('system.version.cubicweb' in self.vreg['propertydefs']) |
|
56 |
self.failUnless(self.vreg.property_info('system.version.cubicweb')) |
|
57 |
self.assertRaises(UnknownProperty, self.vreg.property_info, 'a.non.existent.key') |
|
777
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
58 |
|
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
59 |
def test_load_subinterface_based_vobjects(self): |
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
60 |
self.vreg.reset() |
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
61 |
self.vreg.register_objects([join(BASE, 'web', 'views', 'iprogress.py')]) |
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
62 |
# check progressbar was kicked |
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
63 |
self.failIf(self.vreg['views'].get('progressbar')) |
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
64 |
class MyCard(Card): |
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
65 |
__implements__ = (IMileStone,) |
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
66 |
self.vreg.reset() |
1341 | 67 |
self.vreg._loadedmods[__name__] = {} |
777
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
68 |
self.vreg.register_vobject_class(MyCard) |
1640 | 69 |
self.vreg.register_objects([join(BASE, 'entities', '__init__.py'), |
70 |
join(BASE, 'web', 'views', 'iprogress.py')]) |
|
777
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
71 |
# check progressbar isn't kicked |
39695e98ba35
test and fix interface based objects cleaning
sylvain.thenault@logilab.fr
parents:
750
diff
changeset
|
72 |
self.assertEquals(len(self.vreg['views']['progressbar']), 1) |
1640 | 73 |
|
0 | 74 |
|
75 |
if __name__ == '__main__': |
|
76 |
unittest_main() |