author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Tue, 10 May 2011 10:28:29 +0200 | |
changeset 7349 | 43416f63eca9 |
parent 7244 | a918f76441ce |
child 7791 | 31bb51ea5485 |
permissions | -rw-r--r-- |
0 | 1 |
# -*- coding: utf-8 -*- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
2 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
3 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
4 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
5 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
6 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
7 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
8 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
9 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
10 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
11 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
12 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
13 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
14 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
15 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
16 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
17 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
18 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1642
diff
changeset
|
19 |
"""unit tests for cubicweb.entities.base module |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1642
diff
changeset
|
20 |
|
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1642
diff
changeset
|
21 |
""" |
0 | 22 |
|
23 |
from logilab.common.testlib import unittest_main |
|
24 |
from logilab.common.decorators import clear_cache |
|
25 |
from logilab.common.interface import implements |
|
26 |
||
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2660
diff
changeset
|
27 |
from cubicweb.devtools.testlib import CubicWebTC |
0 | 28 |
|
29 |
from cubicweb import ValidationError |
|
5578
6b9fee0c5c42
[test] fix test broken by introduction of adapters
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
30 |
from cubicweb.interfaces import IMileStone, ICalendarable |
0 | 31 |
from cubicweb.entities import AnyEntity |
32 |
||
33 |
||
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2660
diff
changeset
|
34 |
class BaseEntityTC(CubicWebTC): |
0 | 35 |
|
36 |
def setup_database(self): |
|
7244
a918f76441ce
fix tests broken by fcb8932082a5 (continued)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7212
diff
changeset
|
37 |
req = self.request() |
a918f76441ce
fix tests broken by fcb8932082a5 (continued)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7212
diff
changeset
|
38 |
self.member = self.create_user(req, 'member') |
1642 | 39 |
|
40 |
||
41 |
||
0 | 42 |
class MetadataTC(BaseEntityTC): |
43 |
||
44 |
def test_creator(self): |
|
45 |
self.login(u'member') |
|
4024
6a14cff373c3
more api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3890
diff
changeset
|
46 |
entity = self.request().create_entity('Bookmark', title=u"hello", path=u'project/cubicweb') |
0 | 47 |
self.commit() |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
48 |
self.assertEqual(entity.creator.eid, self.member.eid) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
49 |
self.assertEqual(entity.dc_creator(), u'member') |
0 | 50 |
|
51 |
def test_type(self): |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
52 |
self.assertEqual(self.member.dc_type(), 'cwuser') |
0 | 53 |
|
1102
054dfee29bfc
some test for meta attributes (XXX should be in yams)
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
54 |
def test_entity_meta_attributes(self): |
054dfee29bfc
some test for meta attributes (XXX should be in yams)
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
55 |
# XXX move to yams |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
56 |
self.assertEqual(self.schema['CWUser'].meta_attributes(), {}) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
57 |
self.assertEqual(dict((str(k), v) for k, v in self.schema['State'].meta_attributes().iteritems()), |
1642 | 58 |
{'description_format': ('format', 'description')}) |
59 |
||
0 | 60 |
|
61 |
class EmailAddressTC(BaseEntityTC): |
|
62 |
def test_canonical_form(self): |
|
3204
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
63 |
email1 = self.execute('INSERT EmailAddress X: X address "maarten.ter.huurne@philips.com"').get_entity(0, 0) |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
64 |
email2 = self.execute('INSERT EmailAddress X: X address "maarten@philips.com"').get_entity(0, 0) |
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
65 |
email3 = self.execute('INSERT EmailAddress X: X address "toto@logilab.fr"').get_entity(0, 0) |
3831
5eb369d24e7d
benefit from the orm for clearer code
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3830
diff
changeset
|
66 |
email1.set_relations(prefered_form=email2) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
67 |
self.assertEqual(email1.prefered.eid, email2.eid) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
68 |
self.assertEqual(email2.prefered.eid, email2.eid) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
69 |
self.assertEqual(email3.prefered.eid, email3.eid) |
0 | 70 |
|
71 |
def test_mangling(self): |
|
3831
5eb369d24e7d
benefit from the orm for clearer code
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3830
diff
changeset
|
72 |
email = self.execute('INSERT EmailAddress X: X address "maarten.ter.huurne@philips.com"').get_entity(0, 0) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
73 |
self.assertEqual(email.display_address(), 'maarten.ter.huurne@philips.com') |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
74 |
self.assertEqual(email.printable_value('address'), 'maarten.ter.huurne@philips.com') |
0 | 75 |
self.vreg.config.global_set_option('mangle-emails', True) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
76 |
self.assertEqual(email.display_address(), 'maarten.ter.huurne at philips dot com') |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
77 |
self.assertEqual(email.printable_value('address'), 'maarten.ter.huurne at philips dot com') |
3831
5eb369d24e7d
benefit from the orm for clearer code
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3830
diff
changeset
|
78 |
email = self.execute('INSERT EmailAddress X: X address "syt"').get_entity(0, 0) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
79 |
self.assertEqual(email.display_address(), 'syt') |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
80 |
self.assertEqual(email.printable_value('address'), 'syt') |
0 | 81 |
|
82 |
||
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1358
diff
changeset
|
83 |
class CWUserTC(BaseEntityTC): |
1642 | 84 |
|
0 | 85 |
def test_complete(self): |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
86 |
e = self.execute('CWUser X WHERE X login "admin"').get_entity(0, 0) |
0 | 87 |
e.complete() |
88 |
||
89 |
def test_matching_groups(self): |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
90 |
e = self.execute('CWUser X WHERE X login "admin"').get_entity(0, 0) |
0 | 91 |
self.failUnless(e.matching_groups('managers')) |
92 |
self.failIf(e.matching_groups('xyz')) |
|
93 |
self.failUnless(e.matching_groups(('xyz', 'managers'))) |
|
94 |
self.failIf(e.matching_groups(('xyz', 'abcd'))) |
|
95 |
||
3830
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
96 |
def test_dc_title_and_name(self): |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
97 |
e = self.execute('CWUser U WHERE U login "member"').get_entity(0, 0) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
98 |
self.assertEqual(e.dc_title(), 'member') |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
99 |
self.assertEqual(e.name(), 'member') |
3830
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
100 |
e.set_attributes(firstname=u'bouah') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
101 |
self.assertEqual(e.dc_title(), 'member') |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
102 |
self.assertEqual(e.name(), u'bouah') |
3830
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
103 |
e.set_attributes(surname=u'lôt') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
104 |
self.assertEqual(e.dc_title(), 'member') |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
105 |
self.assertEqual(e.name(), u'bouah lôt') |
3830
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
106 |
|
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
107 |
def test_allowed_massmail_keys(self): |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4491
diff
changeset
|
108 |
e = self.execute('CWUser U WHERE U login "member"').get_entity(0, 0) |
3830
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
109 |
# Bytes/Password attributes should be omited |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
110 |
self.assertEqual(e.cw_adapt_to('IEmailable').allowed_massmail_keys(), |
3830
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
111 |
set(('surname', 'firstname', 'login', 'last_login_time', |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
112 |
'creation_date', 'modification_date', 'cwuri', 'eid')) |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
113 |
) |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3316
diff
changeset
|
114 |
|
7212
040d3597444f
[entities/test] add failing test for cw_instantiate
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
6340
diff
changeset
|
115 |
def test_cw_instantiate_object_relation(self): |
040d3597444f
[entities/test] add failing test for cw_instantiate
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
6340
diff
changeset
|
116 |
""" a weird non regression test """ |
040d3597444f
[entities/test] add failing test for cw_instantiate
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
6340
diff
changeset
|
117 |
e = self.execute('CWUser U WHERE U login "member"').get_entity(0, 0) |
040d3597444f
[entities/test] add failing test for cw_instantiate
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
6340
diff
changeset
|
118 |
self.request().create_entity('CWGroup', name=u'logilab', reverse_in_group=e) |
040d3597444f
[entities/test] add failing test for cw_instantiate
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
6340
diff
changeset
|
119 |
|
0 | 120 |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2660
diff
changeset
|
121 |
class InterfaceTC(CubicWebTC): |
0 | 122 |
|
123 |
def test_nonregr_subclasses_and_mixins_interfaces(self): |
|
5578
6b9fee0c5c42
[test] fix test broken by introduction of adapters
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
124 |
from cubicweb.entities.wfobjs import WorkflowableMixIn |
6b9fee0c5c42
[test] fix test broken by introduction of adapters
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
125 |
WorkflowableMixIn.__implements__ = (ICalendarable,) |
3140
1f64e9a5e1f8
update test now that etype_class systematically copy registry classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
126 |
CWUser = self.vreg['etypes'].etype_class('CWUser') |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1358
diff
changeset
|
127 |
class MyUser(CWUser): |
0 | 128 |
__implements__ = (IMileStone,) |
1358 | 129 |
self.vreg._loadedmods[__name__] = {} |
4491
a0f48c31b58a
kill register_appobject_class method, simplifying autoregistration. Update test accordingly (test which manually registers object should also properly call there __register__ method). Drop the disable-appobjects config file entry: no one used it since its introduction years ago.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
130 |
self.vreg.register(MyUser) |
2660
0d0924d75849
[test] update test: class initialization done in etype_class now
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2657
diff
changeset
|
131 |
self.vreg['etypes'].initialization_completed() |
0d0924d75849
[test] update test: class initialization done in etype_class now
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2657
diff
changeset
|
132 |
MyUser_ = self.vreg['etypes'].etype_class('CWUser') |
3206
5a51ac97f1d3
tests update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
133 |
# a copy is done systematically |
5a51ac97f1d3
tests update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
134 |
self.failUnless(issubclass(MyUser_, MyUser)) |
2660
0d0924d75849
[test] update test: class initialization done in etype_class now
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2657
diff
changeset
|
135 |
self.failUnless(implements(MyUser_, IMileStone)) |
5578
6b9fee0c5c42
[test] fix test broken by introduction of adapters
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
136 |
self.failUnless(implements(MyUser_, ICalendarable)) |
3206
5a51ac97f1d3
tests update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
137 |
# original class should not have beed modified, only the copy |
5a51ac97f1d3
tests update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3204
diff
changeset
|
138 |
self.failUnless(implements(MyUser, IMileStone)) |
5578
6b9fee0c5c42
[test] fix test broken by introduction of adapters
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
139 |
self.failIf(implements(MyUser, ICalendarable)) |
0 | 140 |
|
141 |
||
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2660
diff
changeset
|
142 |
class SpecializedEntityClassesTC(CubicWebTC): |
0 | 143 |
|
144 |
def select_eclass(self, etype): |
|
145 |
# clear selector cache |
|
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
146 |
clear_cache(self.vreg['etypes'], 'etype_class') |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
147 |
return self.vreg['etypes'].etype_class(etype) |
1642 | 148 |
|
0 | 149 |
def test_etype_class_selection_and_specialization(self): |
150 |
# no specific class for Subdivisions, the default one should be selected |
|
151 |
eclass = self.select_eclass('SubDivision') |
|
152 |
self.failUnless(eclass.__autogenerated__) |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
153 |
#self.assertEqual(eclass.__bases__, (AnyEntity,)) |
0 | 154 |
# build class from most generic to most specific and make |
155 |
# sure the most specific is always selected |
|
1358 | 156 |
self.vreg._loadedmods[__name__] = {} |
0 | 157 |
for etype in ('Company', 'Division', 'SubDivision'): |
158 |
class Foo(AnyEntity): |
|
3450
265331a0920c
use __regid__
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
159 |
__regid__ = etype |
4491
a0f48c31b58a
kill register_appobject_class method, simplifying autoregistration. Update test accordingly (test which manually registers object should also properly call there __register__ method). Drop the disable-appobjects config file entry: no one used it since its introduction years ago.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
160 |
self.vreg.register(Foo) |
0 | 161 |
eclass = self.select_eclass('SubDivision') |
3140
1f64e9a5e1f8
update test now that etype_class systematically copy registry classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
162 |
self.failUnless(eclass.__autogenerated__) |
1f64e9a5e1f8
update test now that etype_class systematically copy registry classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
163 |
self.failIf(eclass is Foo) |
0 | 164 |
if etype == 'SubDivision': |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
165 |
self.assertEqual(eclass.__bases__, (Foo,)) |
0 | 166 |
else: |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
167 |
self.assertEqual(eclass.__bases__[0].__bases__, (Foo,)) |
0 | 168 |
# check Division eclass is still selected for plain Division entities |
169 |
eclass = self.select_eclass('Division') |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5578
diff
changeset
|
170 |
self.assertEqual(eclass.__regid__, 'Division') |
1642 | 171 |
|
0 | 172 |
if __name__ == '__main__': |
173 |
unittest_main() |