author | Julien Cristau <julien.cristau@logilab.fr> |
Wed, 05 Mar 2014 10:44:45 +0100 | |
changeset 9555 | 370a7c40864f |
parent 9547 | 43aace16a953 |
child 9640 | 26ea1c4387bf |
permissions | -rw-r--r-- |
9547
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
1 |
# copyright 2003-2014 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
2 |
# 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:
5179
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
4 |
# 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:
5179
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
6 |
# 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:
5179
diff
changeset
|
7 |
# 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:
5179
diff
changeset
|
8 |
# 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:
5179
diff
changeset
|
9 |
# 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:
5179
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# 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:
5179
diff
changeset
|
12 |
# 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:
5179
diff
changeset
|
13 |
# 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:
5179
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5179
diff
changeset
|
16 |
# 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:
5179
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
6117 | 18 |
"""unit tests for module cubicweb.schema""" |
0 | 19 |
|
20 |
import sys |
|
21 |
from os.path import join, isabs, basename, dirname |
|
22 |
||
23 |
from logilab.common.testlib import TestCase, unittest_main |
|
24 |
||
25 |
from rql import RQLSyntaxError |
|
26 |
||
7640
85ebdbbcb321
[schema] closes #1816439: RQLConstraint does not take variable U into account
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7603
diff
changeset
|
27 |
from yams import ValidationError, BadSchemaDefinition |
0 | 28 |
from yams.constraints import SizeConstraint, StaticVocabularyConstraint |
29 |
from yams.buildobjs import RelationDefinition, EntityType, RelationType |
|
7469
f8c983afbf8e
[test] update cubicweb/test/unittest_schema.py (to follow yams#.....)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7460
diff
changeset
|
30 |
from yams.reader import fill_schema |
0 | 31 |
|
3978
2c95e3033f64
finish yesterday work on rql constraints:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3899
diff
changeset
|
32 |
from cubicweb.schema import ( |
2c95e3033f64
finish yesterday work on rql constraints:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3899
diff
changeset
|
33 |
CubicWebSchema, CubicWebEntitySchema, CubicWebSchemaLoader, |
2c95e3033f64
finish yesterday work on rql constraints:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3899
diff
changeset
|
34 |
RQLConstraint, RQLUniqueConstraint, RQLVocabularyConstraint, |
3998
94cc7cad3d2d
backport stable into default
Sylvain Thénault <sylvain.thenault@logilab.fr>
diff
changeset
|
35 |
RQLExpression, ERQLExpression, RRQLExpression, |
4132
440d383367eb
fix mainvars detection bug with EXISTS (paren, actually)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3978
diff
changeset
|
36 |
normalize_expression, order_eschemas, guess_rrqlexpr_mainvars) |
0 | 37 |
from cubicweb.devtools import TestServerConfiguration as TestConfiguration |
7640
85ebdbbcb321
[schema] closes #1816439: RQLConstraint does not take variable U into account
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7603
diff
changeset
|
38 |
from cubicweb.devtools.testlib import CubicWebTC |
0 | 39 |
|
40 |
DATADIR = join(dirname(__file__), 'data') |
|
41 |
||
42 |
# build a dummy schema ######################################################## |
|
43 |
||
44 |
||
45 |
PERSONNE_PERMISSIONS = { |
|
46 |
'read': ('managers', 'users', 'guests'), |
|
47 |
'update': ('managers', 'owners'), |
|
48 |
'add': ('managers', ERQLExpression('X travaille S, S owned_by U')), |
|
49 |
'delete': ('managers', 'owners',), |
|
50 |
} |
|
51 |
||
52 |
CONCERNE_PERMISSIONS = { |
|
53 |
'read': ('managers', 'users', 'guests'), |
|
54 |
'add': ('managers', RRQLExpression('U has_update_permission S')), |
|
55 |
'delete': ('managers', RRQLExpression('O owned_by U')), |
|
56 |
} |
|
57 |
||
58 |
schema = CubicWebSchema('Test Schema') |
|
59 |
enote = schema.add_entity_type(EntityType('Note')) |
|
60 |
eaffaire = schema.add_entity_type(EntityType('Affaire')) |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
61 |
eperson = schema.add_entity_type(EntityType('Personne', __permissions__=PERSONNE_PERMISSIONS)) |
0 | 62 |
esociete = schema.add_entity_type(EntityType('Societe')) |
63 |
||
64 |
RELS = ( |
|
65 |
# attribute relations |
|
66 |
('Note date String'), |
|
67 |
('Note type String'), |
|
68 |
('Affaire sujet String'), |
|
69 |
('Affaire ref String'), |
|
70 |
('Personne nom String'), |
|
71 |
('Personne prenom String'), |
|
72 |
('Personne sexe String'), |
|
73 |
('Personne tel Int'), |
|
74 |
('Personne fax Int'), |
|
75 |
('Personne datenaiss Date'), |
|
76 |
('Personne promo String'), |
|
77 |
# real relations |
|
78 |
('Personne travaille Societe'), |
|
79 |
('Personne evaluee Note'), |
|
80 |
('Societe evaluee Note'), |
|
81 |
('Personne concerne Affaire'), |
|
82 |
('Personne concerne Societe'), |
|
6861
9d4e11d6e783
[schema] ease understanding of schema naming error
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6796
diff
changeset
|
83 |
('Affaire concerne Societe'), |
0 | 84 |
) |
85 |
done = {} |
|
86 |
for rel in RELS: |
|
87 |
_from, _type, _to = rel.split() |
|
88 |
if not _type.lower() in done: |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
89 |
schema.add_relation_type(RelationType(_type)) |
0 | 90 |
done[_type.lower()] = True |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
91 |
if _type == 'concerne': |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
92 |
schema.add_relation_def(RelationDefinition(_from, _type, _to, |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
93 |
__permissions__=CONCERNE_PERMISSIONS)) |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
94 |
else: |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
95 |
schema.add_relation_def(RelationDefinition(_from, _type, _to)) |
0 | 96 |
|
97 |
class CubicWebSchemaTC(TestCase): |
|
98 |
||
3978
2c95e3033f64
finish yesterday work on rql constraints:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3899
diff
changeset
|
99 |
def test_rql_constraints_inheritance(self): |
2c95e3033f64
finish yesterday work on rql constraints:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3899
diff
changeset
|
100 |
# isinstance(cstr, RQLVocabularyConstraint) |
2c95e3033f64
finish yesterday work on rql constraints:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3899
diff
changeset
|
101 |
# -> expected to return RQLVocabularyConstraint and RQLConstraint |
2c95e3033f64
finish yesterday work on rql constraints:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3899
diff
changeset
|
102 |
# instances but not RQLUniqueConstraint |
2c95e3033f64
finish yesterday work on rql constraints:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3899
diff
changeset
|
103 |
# |
2c95e3033f64
finish yesterday work on rql constraints:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3899
diff
changeset
|
104 |
# isinstance(cstr, RQLConstraint) |
2c95e3033f64
finish yesterday work on rql constraints:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3899
diff
changeset
|
105 |
# -> expected to return RQLConstraint instances but not |
2c95e3033f64
finish yesterday work on rql constraints:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3899
diff
changeset
|
106 |
# RRQLVocabularyConstraint and QLUniqueConstraint |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7642
diff
changeset
|
107 |
self.assertFalse(issubclass(RQLUniqueConstraint, RQLVocabularyConstraint)) |
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7642
diff
changeset
|
108 |
self.assertFalse(issubclass(RQLUniqueConstraint, RQLConstraint)) |
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7642
diff
changeset
|
109 |
self.assertTrue(issubclass(RQLConstraint, RQLVocabularyConstraint)) |
3978
2c95e3033f64
finish yesterday work on rql constraints:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3899
diff
changeset
|
110 |
|
0 | 111 |
def test_entity_perms(self): |
112 |
self.assertEqual(eperson.get_groups('read'), set(('managers', 'users', 'guests'))) |
|
113 |
self.assertEqual(eperson.get_groups('update'), set(('managers', 'owners',))) |
|
114 |
self.assertEqual(eperson.get_groups('delete'), set(('managers', 'owners'))) |
|
115 |
self.assertEqual(eperson.get_groups('add'), set(('managers',))) |
|
116 |
self.assertEqual([str(e) for e in eperson.get_rqlexprs('add')], |
|
117 |
['Any X WHERE X travaille S, S owned_by U, X eid %(x)s, U eid %(u)s']) |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
118 |
eperson.set_action_permissions('read', ('managers',)) |
0 | 119 |
self.assertEqual(eperson.get_groups('read'), set(('managers',))) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
120 |
|
0 | 121 |
def test_relation_perms(self): |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
122 |
rconcerne = schema.rschema('concerne').rdef('Personne', 'Societe') |
0 | 123 |
self.assertEqual(rconcerne.get_groups('read'), set(('managers', 'users', 'guests'))) |
124 |
self.assertEqual(rconcerne.get_groups('delete'), set(('managers',))) |
|
125 |
self.assertEqual(rconcerne.get_groups('add'), set(('managers', ))) |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
126 |
rconcerne.set_action_permissions('read', ('managers',)) |
0 | 127 |
self.assertEqual(rconcerne.get_groups('read'), set(('managers',))) |
128 |
self.assertEqual([str(e) for e in rconcerne.get_rqlexprs('add')], |
|
3899
78a2c8e7eef5
test update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
129 |
['Any S,U WHERE U has_update_permission S, S eid %(s)s, U eid %(u)s']) |
0 | 130 |
|
131 |
def test_erqlexpression(self): |
|
132 |
self.assertRaises(RQLSyntaxError, ERQLExpression, '1') |
|
133 |
expr = ERQLExpression('X travaille S, S owned_by U') |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6306
diff
changeset
|
134 |
self.assertEqual(str(expr), 'Any X WHERE X travaille S, S owned_by U, X eid %(x)s, U eid %(u)s') |
9280
bae0caa8477a
[schema] edit syntax tree instead of playing with strings for RQLExpressions
Julien Cristau <julien.cristau@logilab.fr>
parents:
9214
diff
changeset
|
135 |
expr = ERQLExpression('X foo S, S bar U, X baz XE, S quux SE HAVING XE > SE') |
bae0caa8477a
[schema] edit syntax tree instead of playing with strings for RQLExpressions
Julien Cristau <julien.cristau@logilab.fr>
parents:
9214
diff
changeset
|
136 |
self.assertEqual(str(expr), 'Any X WHERE X foo S, S bar U, X baz XE, S quux SE, X eid %(x)s, U eid %(u)s HAVING XE > SE') |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
137 |
|
0 | 138 |
def test_rrqlexpression(self): |
139 |
self.assertRaises(Exception, RRQLExpression, '1') |
|
140 |
self.assertRaises(RQLSyntaxError, RRQLExpression, 'O X Y') |
|
141 |
expr = RRQLExpression('U has_update_permission O') |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6306
diff
changeset
|
142 |
self.assertEqual(str(expr), 'Any O,U WHERE U has_update_permission O, O eid %(o)s, U eid %(u)s') |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
143 |
|
0 | 144 |
loader = CubicWebSchemaLoader() |
6640
4c4616c02f69
[test] more cwd independant tests
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6427
diff
changeset
|
145 |
config = TestConfiguration('data', apphome=DATADIR) |
0 | 146 |
config.bootstrap_cubes() |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
147 |
|
2926
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2730
diff
changeset
|
148 |
class SchemaReaderClassTest(TestCase): |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2730
diff
changeset
|
149 |
|
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2730
diff
changeset
|
150 |
def test_order_eschemas(self): |
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2730
diff
changeset
|
151 |
schema = loader.load(config) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6306
diff
changeset
|
152 |
self.assertEqual(order_eschemas([schema['Note'], schema['SubNote']]), |
2926
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2730
diff
changeset
|
153 |
[schema['Note'], schema['SubNote']]) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6306
diff
changeset
|
154 |
self.assertEqual(order_eschemas([schema['SubNote'], schema['Note']]), |
2926
4484387ed012
when adding/removing cubes, we should add/remove entity types in correct order if one inherits from another
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2730
diff
changeset
|
155 |
[schema['Note'], schema['SubNote']]) |
0 | 156 |
|
157 |
def test_knownValues_load_schema(self): |
|
158 |
schema = loader.load(config) |
|
159 |
self.assert_(isinstance(schema, CubicWebSchema)) |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6306
diff
changeset
|
160 |
self.assertEqual(schema.name, 'data') |
6415 | 161 |
entities = sorted([str(e) for e in schema.entities()]) |
9214
be05b42b4825
Do not use cubicweb-card in rest_path tests
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
9158
diff
changeset
|
162 |
expected_entities = ['Ami', 'BaseTransition', 'BigInt', 'Bookmark', 'Boolean', 'Bytes', 'Card', |
0 | 163 |
'Date', 'Datetime', 'Decimal', |
7995
9a9f35ef418c
Record a log of datafeed source imports (closes #2026097)
Julien Cristau <julien.cristau@logilab.fr>
parents:
7981
diff
changeset
|
164 |
'CWCache', 'CWConstraint', 'CWConstraintType', 'CWDataImport', |
9a9f35ef418c
Record a log of datafeed source imports (closes #2026097)
Julien Cristau <julien.cristau@logilab.fr>
parents:
7981
diff
changeset
|
165 |
'CWEType', 'CWAttribute', 'CWGroup', 'EmailAddress', 'CWRelation', |
6306
e6557be1127e
[test] fix test broken by introduction of CWUniqueTogetherConstraint
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6117
diff
changeset
|
166 |
'CWPermission', 'CWProperty', 'CWRType', |
6944
0cf10429ad39
[sources] rewrite the way pyrorql mapping are stored in the database so it can be reused for other sources (eg datafeed+cwxml)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6910
diff
changeset
|
167 |
'CWSource', 'CWSourceHostConfig', 'CWSourceSchemaConfig', |
6306
e6557be1127e
[test] fix test broken by introduction of CWUniqueTogetherConstraint
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6117
diff
changeset
|
168 |
'CWUniqueTogetherConstraint', 'CWUser', |
5563
26e242ba3da5
with cw 3.9, no more Image type
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
169 |
'ExternalUri', 'File', 'Float', 'Int', 'Interval', 'Note', |
7426
254bc099db1a
[test] update test broken by previous commit
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7166
diff
changeset
|
170 |
'Password', 'Personne', 'Produit', |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
171 |
'RQLExpression', |
7426
254bc099db1a
[test] update test broken by previous commit
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7166
diff
changeset
|
172 |
'Service', 'Societe', 'State', 'StateFull', 'String', 'SubNote', 'SubWorkflowExitPoint', |
7166
dde161937d3e
[time zone] support for TZDatetime and TZTime data type
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7152
diff
changeset
|
173 |
'Tag', 'TZDatetime', 'TZTime', 'Time', 'Transition', 'TrInfo', |
7426
254bc099db1a
[test] update test broken by previous commit
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7166
diff
changeset
|
174 |
'Usine', |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2730
diff
changeset
|
175 |
'Workflow', 'WorkflowTransition'] |
6944
0cf10429ad39
[sources] rewrite the way pyrorql mapping are stored in the database so it can be reused for other sources (eg datafeed+cwxml)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6910
diff
changeset
|
176 |
self.assertListEqual(sorted(expected_entities), entities) |
6415 | 177 |
relations = sorted([str(r) for r in schema.relations()]) |
8005
a3e06bed6b18
fix broken tests (at least by #1800002)
Florent Cayré <florent.cayre@gmail.com>
parents:
7995
diff
changeset
|
178 |
expected_relations = ['actionnaire', 'add_permission', 'address', 'alias', 'allowed_transition', 'associe', |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2730
diff
changeset
|
179 |
'bookmarked_by', 'by_transition', |
0 | 180 |
|
3204
0b766b8a13e1
#370578: change EmailAddress identical_to/canonical to prefered_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2943
diff
changeset
|
181 |
'cardinality', 'comment', 'comment_format', |
6427
c8a5ac2d1eaa
[schema / sources] store data sources as cubicweb entities
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6415
diff
changeset
|
182 |
'composite', 'condition', 'config', 'connait', |
6306
e6557be1127e
[test] fix test broken by introduction of CWUniqueTogetherConstraint
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6117
diff
changeset
|
183 |
'constrained_by', 'constraint_of', |
8005
a3e06bed6b18
fix broken tests (at least by #1800002)
Florent Cayré <florent.cayre@gmail.com>
parents:
7995
diff
changeset
|
184 |
'content', 'content_format', 'contrat_exclusif', |
6427
c8a5ac2d1eaa
[schema / sources] store data sources as cubicweb entities
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6415
diff
changeset
|
185 |
'created_by', 'creation_date', 'cstrtype', 'custom_workflow', |
7995
9a9f35ef418c
Record a log of datafeed source imports (closes #2026097)
Julien Cristau <julien.cristau@logilab.fr>
parents:
7981
diff
changeset
|
186 |
'cwuri', 'cw_for_source', 'cw_import_of', 'cw_host_config_of', 'cw_schema', 'cw_source', |
0 | 187 |
|
3587 | 188 |
'data', 'data_encoding', 'data_format', 'data_name', 'default_workflow', 'defaultval', 'delete_permission', |
8005
a3e06bed6b18
fix broken tests (at least by #1800002)
Florent Cayré <florent.cayre@gmail.com>
parents:
7995
diff
changeset
|
189 |
'description', 'description_format', 'destination_state', 'dirige', |
0 | 190 |
|
8945
ba9e3fbfa5a5
[schemaserial] serialize additional yams parameter for customs type
Vincent Michel <vincent.michel@logilab.fr>
parents:
8694
diff
changeset
|
191 |
'ecrit_par', 'eid', 'end_timestamp', 'evaluee', 'expression', 'exprtype', 'extra_props', |
0 | 192 |
|
7426
254bc099db1a
[test] update test broken by previous commit
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7166
diff
changeset
|
193 |
'fabrique_par', 'final', 'firstname', 'for_user', 'fournit', |
0 | 194 |
'from_entity', 'from_state', 'fulltext_container', 'fulltextindexed', |
8005
a3e06bed6b18
fix broken tests (at least by #1800002)
Florent Cayré <florent.cayre@gmail.com>
parents:
7995
diff
changeset
|
195 |
|
7981
676fd5b30c6a
[test] fix failure introduced by localperms cube introduction
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7962
diff
changeset
|
196 |
'has_group_permission', 'has_text', |
7957
5da7ede69063
[test]Â fix some failures recently introduced
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7642
diff
changeset
|
197 |
'identity', 'in_group', 'in_state', 'in_synchronization', 'indexed', |
0 | 198 |
'initial_state', 'inlined', 'internationalizable', 'is', 'is_instance_of', |
199 |
||
7995
9a9f35ef418c
Record a log of datafeed source imports (closes #2026097)
Julien Cristau <julien.cristau@logilab.fr>
parents:
7981
diff
changeset
|
200 |
'label', 'last_login_time', 'latest_retrieval', 'lieu', 'log', 'login', |
0 | 201 |
|
6427
c8a5ac2d1eaa
[schema / sources] store data sources as cubicweb entities
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6415
diff
changeset
|
202 |
'mainvars', 'match_host', 'modification_date', |
0 | 203 |
|
750
89e997bc2bf1
update test for new test schema
sylvain.thenault@logilab.fr
parents:
624
diff
changeset
|
204 |
'name', 'nom', |
0 | 205 |
|
6944
0cf10429ad39
[sources] rewrite the way pyrorql mapping are stored in the database so it can be reused for other sources (eg datafeed+cwxml)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6910
diff
changeset
|
206 |
'options', 'ordernum', 'owned_by', |
0 | 207 |
|
6957
ffda12be2e9f
[repository] #1460066: backport datafeed cube as cubicweb source
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6944
diff
changeset
|
208 |
'parser', 'path', 'pkey', 'prefered_form', 'prenom', 'primary_email', |
0 | 209 |
|
6306
e6557be1127e
[test] fix test broken by introduction of CWUniqueTogetherConstraint
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6117
diff
changeset
|
210 |
'read_permission', 'relation_type', 'relations', 'require_group', |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
211 |
|
7995
9a9f35ef418c
Record a log of datafeed source imports (closes #2026097)
Julien Cristau <julien.cristau@logilab.fr>
parents:
7981
diff
changeset
|
212 |
'specializes', 'start_timestamp', 'state_of', 'status', 'subworkflow', 'subworkflow_exit', 'subworkflow_state', 'surname', 'symmetric', 'synopsis', |
0 | 213 |
|
750
89e997bc2bf1
update test for new test schema
sylvain.thenault@logilab.fr
parents:
624
diff
changeset
|
214 |
'tags', 'timestamp', 'title', 'to_entity', 'to_state', 'transition_of', 'travaille', 'type', |
0 | 215 |
|
6957
ffda12be2e9f
[repository] #1460066: backport datafeed cube as cubicweb source
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6944
diff
changeset
|
216 |
'upassword', 'update_permission', 'url', 'uri', 'use_email', |
0 | 217 |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
218 |
'value', |
0 | 219 |
|
6768
b75f688bded7
fix unittest broken by TrInfo schema change
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
6640
diff
changeset
|
220 |
'wf_info_for', 'wikiid', 'workflow_of', 'tr_count'] |
9158
08d8fba05854
[test] make unittest_schema.py compatible with cubicweb-file 0.14
David Douard <david.douard@logilab.fr>
parents:
8945
diff
changeset
|
221 |
if config.cube_version('file') >= (1, 14, 0): |
08d8fba05854
[test] make unittest_schema.py compatible with cubicweb-file 0.14
David Douard <david.douard@logilab.fr>
parents:
8945
diff
changeset
|
222 |
expected_relations.append('data_sha1hex') |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
223 |
|
6944
0cf10429ad39
[sources] rewrite the way pyrorql mapping are stored in the database so it can be reused for other sources (eg datafeed+cwxml)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6910
diff
changeset
|
224 |
self.assertListEqual(sorted(expected_relations), relations) |
0 | 225 |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
985
diff
changeset
|
226 |
eschema = schema.eschema('CWUser') |
0 | 227 |
rels = sorted(str(r) for r in eschema.subject_relations()) |
6427
c8a5ac2d1eaa
[schema / sources] store data sources as cubicweb entities
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6415
diff
changeset
|
228 |
self.assertListEqual(rels, ['created_by', 'creation_date', 'custom_workflow', |
c8a5ac2d1eaa
[schema / sources] store data sources as cubicweb entities
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6415
diff
changeset
|
229 |
'cw_source', 'cwuri', 'eid', |
7795
b8027b317d1c
[test]Â fix some tests broken since localperms cube extraction
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7791
diff
changeset
|
230 |
'evaluee', 'firstname', 'has_group_permission', |
b8027b317d1c
[test]Â fix some tests broken since localperms cube extraction
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7791
diff
changeset
|
231 |
'has_text', 'identity', |
b8027b317d1c
[test]Â fix some tests broken since localperms cube extraction
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7791
diff
changeset
|
232 |
'in_group', 'in_state', 'is', |
b8027b317d1c
[test]Â fix some tests broken since localperms cube extraction
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7791
diff
changeset
|
233 |
'is_instance_of', 'last_login_time', |
b8027b317d1c
[test]Â fix some tests broken since localperms cube extraction
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7791
diff
changeset
|
234 |
'login', 'modification_date', 'owned_by', |
b8027b317d1c
[test]Â fix some tests broken since localperms cube extraction
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7791
diff
changeset
|
235 |
'primary_email', 'surname', 'upassword', |
b8027b317d1c
[test]Â fix some tests broken since localperms cube extraction
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7791
diff
changeset
|
236 |
'use_email']) |
0 | 237 |
rels = sorted(r.type for r in eschema.object_relations()) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6306
diff
changeset
|
238 |
self.assertListEqual(rels, ['bookmarked_by', 'created_by', 'for_user', |
0 | 239 |
'identity', 'owned_by', 'wf_info_for']) |
240 |
rschema = schema.rschema('relation_type') |
|
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
241 |
properties = rschema.rdef('CWAttribute', 'CWRType') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6306
diff
changeset
|
242 |
self.assertEqual(properties.cardinality, '1*') |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
243 |
constraints = properties.constraints |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7642
diff
changeset
|
244 |
self.assertEqual(len(constraints), 1, constraints) |
0 | 245 |
constraint = constraints[0] |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7642
diff
changeset
|
246 |
self.assertTrue(isinstance(constraint, RQLConstraint)) |
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7642
diff
changeset
|
247 |
self.assertEqual(constraint.expression, 'O final TRUE') |
0 | 248 |
|
249 |
def test_fulltext_container(self): |
|
250 |
schema = loader.load(config) |
|
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7642
diff
changeset
|
251 |
self.assertTrue('has_text' in schema['CWUser'].subject_relations()) |
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7642
diff
changeset
|
252 |
self.assertFalse('has_text' in schema['EmailAddress'].subject_relations()) |
0 | 253 |
|
5179
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
254 |
def test_permission_settings(self): |
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
255 |
schema = loader.load(config) |
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
256 |
aschema = schema['TrInfo'].rdef('comment') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6306
diff
changeset
|
257 |
self.assertEqual(aschema.get_groups('read'), |
5179
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
258 |
set(('managers', 'users', 'guests'))) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6306
diff
changeset
|
259 |
self.assertEqual(aschema.get_rqlexprs('read'), |
5179
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
260 |
()) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6306
diff
changeset
|
261 |
self.assertEqual(aschema.get_groups('update'), |
5179
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
262 |
set(('managers',))) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6306
diff
changeset
|
263 |
self.assertEqual([x.expression for x in aschema.get_rqlexprs('update')], |
5179
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
264 |
['U has_update_permission X']) |
0 | 265 |
|
7440
539de926ec9d
[test] fix failure introduced by 1719eab69551: the regexp should be fixed, not the error message
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7426
diff
changeset
|
266 |
def test_nonregr_allowed_type_names(self): |
539de926ec9d
[test] fix failure introduced by 1719eab69551: the regexp should be fixed, not the error message
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7426
diff
changeset
|
267 |
schema = CubicWebSchema('Test Schema') |
539de926ec9d
[test] fix failure introduced by 1719eab69551: the regexp should be fixed, not the error message
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7426
diff
changeset
|
268 |
schema.add_entity_type(EntityType('NaN')) |
539de926ec9d
[test] fix failure introduced by 1719eab69551: the regexp should be fixed, not the error message
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7426
diff
changeset
|
269 |
|
8167
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
270 |
def test_relation_perm_overriding(self): |
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
271 |
loader = CubicWebSchemaLoader() |
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
272 |
config = TestConfiguration('data', apphome=join(dirname(__file__), 'data_schemareader')) |
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
273 |
config.bootstrap_cubes() |
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
274 |
schema = loader.load(config) |
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
275 |
self.assertEqual(schema['in_group'].rdefs.values()[0].permissions, |
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
276 |
{'read': ('managers',), |
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
277 |
'add': ('managers',), |
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
278 |
'delete': ('managers',)}) |
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
279 |
self.assertEqual(schema['cw_for_source'].rdefs.values()[0].permissions, |
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
280 |
{'read': ('managers', 'users'), |
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
281 |
'add': ('managers',), |
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
282 |
'delete': ('managers',)}) |
41ec579e27c4
[test] test/demonstrate relation permissions overriding
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8005
diff
changeset
|
283 |
|
7440
539de926ec9d
[test] fix failure introduced by 1719eab69551: the regexp should be fixed, not the error message
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7426
diff
changeset
|
284 |
|
6861
9d4e11d6e783
[schema] ease understanding of schema naming error
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6796
diff
changeset
|
285 |
class BadSchemaTC(TestCase): |
0 | 286 |
def setUp(self): |
287 |
self.loader = CubicWebSchemaLoader() |
|
288 |
self.loader.defined = {} |
|
951 | 289 |
self.loader.loaded_files = [] |
4469
310b5f01c982
need post_build_callbacks attribute with earlier yams version
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4467
diff
changeset
|
290 |
self.loader.post_build_callbacks = [] |
0 | 291 |
|
292 |
def _test(self, schemafile, msg): |
|
293 |
self.loader.handle_file(join(DATADIR, schemafile)) |
|
7469
f8c983afbf8e
[test] update cubicweb/test/unittest_schema.py (to follow yams#.....)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7460
diff
changeset
|
294 |
sch = self.loader.schemacls('toto') |
6796
e70ca9abfc51
[unittest2] update to unittest2 assertRaises api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6768
diff
changeset
|
295 |
with self.assertRaises(BadSchemaDefinition) as cm: |
7469
f8c983afbf8e
[test] update cubicweb/test/unittest_schema.py (to follow yams#.....)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7460
diff
changeset
|
296 |
fill_schema(sch, self.loader.defined, False) |
6796
e70ca9abfc51
[unittest2] update to unittest2 assertRaises api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6768
diff
changeset
|
297 |
self.assertEqual(str(cm.exception), msg) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
298 |
|
6861
9d4e11d6e783
[schema] ease understanding of schema naming error
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6796
diff
changeset
|
299 |
def test_lowered_etype(self): |
9d4e11d6e783
[schema] ease understanding of schema naming error
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6796
diff
changeset
|
300 |
self._test('lowered_etype.py', |
9d4e11d6e783
[schema] ease understanding of schema naming error
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6796
diff
changeset
|
301 |
"'my_etype' is not a valid name for an entity type. It should " |
9d4e11d6e783
[schema] ease understanding of schema naming error
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6796
diff
changeset
|
302 |
"start with an upper cased letter and be followed by at least " |
9d4e11d6e783
[schema] ease understanding of schema naming error
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6796
diff
changeset
|
303 |
"a lower cased letter") |
9d4e11d6e783
[schema] ease understanding of schema naming error
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6796
diff
changeset
|
304 |
|
9d4e11d6e783
[schema] ease understanding of schema naming error
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6796
diff
changeset
|
305 |
def test_uppered_rtype(self): |
9d4e11d6e783
[schema] ease understanding of schema naming error
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6796
diff
changeset
|
306 |
self._test('uppered_rtype.py', |
9d4e11d6e783
[schema] ease understanding of schema naming error
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6796
diff
changeset
|
307 |
"'ARelation' is not a valid name for a relation type. It should be lower cased") |
9d4e11d6e783
[schema] ease understanding of schema naming error
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6796
diff
changeset
|
308 |
|
0 | 309 |
def test_rrqlexpr_on_etype(self): |
5179
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
310 |
self._test('rrqlexpr_on_eetype.py', |
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
311 |
"can't use RRQLExpression on ToTo, use an ERQLExpression") |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
312 |
|
0 | 313 |
def test_erqlexpr_on_rtype(self): |
5179
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
314 |
self._test('erqlexpr_on_ertype.py', |
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
315 |
"can't use ERQLExpression on relation ToTo toto TuTu, use a RRQLExpression") |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
316 |
|
0 | 317 |
def test_rqlexpr_on_rtype_read(self): |
5179
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
318 |
self._test('rqlexpr_on_ertype_read.py', |
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
319 |
"can't use rql expression for read permission of relation ToTo toto TuTu") |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
320 |
|
0 | 321 |
def test_rrqlexpr_on_attr(self): |
5179
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
322 |
self._test('rrqlexpr_on_attr.py', |
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
323 |
"can't use RRQLExpression on attribute ToTo.attr[String], use an ERQLExpression") |
0 | 324 |
|
325 |
||
326 |
class NormalizeExpressionTC(TestCase): |
|
327 |
||
328 |
def test(self): |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6306
diff
changeset
|
329 |
self.assertEqual(normalize_expression('X bla Y,Y blur Z , Z zigoulou X '), |
0 | 330 |
'X bla Y, Y blur Z, Z zigoulou X') |
331 |
||
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
332 |
class RQLExpressionTC(TestCase): |
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3689
diff
changeset
|
333 |
def test_comparison(self): |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6306
diff
changeset
|
334 |
self.assertEqual(ERQLExpression('X is CWUser', 'X', 0), |
5179
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
335 |
ERQLExpression('X is CWUser', 'X', 0)) |
6415 | 336 |
self.assertNotEqual(ERQLExpression('X is CWUser', 'X', 0), |
5179
f08943f22334
[schema] #847739: test and fix bad permission on TrInfo.comment
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4611
diff
changeset
|
337 |
ERQLExpression('X is CWGroup', 'X', 0)) |
4181 | 338 |
|
4132
440d383367eb
fix mainvars detection bug with EXISTS (paren, actually)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3978
diff
changeset
|
339 |
class GuessRrqlExprMainVarsTC(TestCase): |
440d383367eb
fix mainvars detection bug with EXISTS (paren, actually)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3978
diff
changeset
|
340 |
def test_exists(self): |
7603
1302aa6ba4da
[schema / rql] fix mainvars of RRQLExpression with parens
Florent Cayré <florent.cayre@gmail.com>
parents:
7426
diff
changeset
|
341 |
mainvars = guess_rrqlexpr_mainvars(normalize_expression('NOT EXISTS(O team_competition C, C level < 3, C concerns S)')) |
1302aa6ba4da
[schema / rql] fix mainvars of RRQLExpression with parens
Florent Cayré <florent.cayre@gmail.com>
parents:
7426
diff
changeset
|
342 |
self.assertEqual(mainvars, set(['S', 'O'])) |
4132
440d383367eb
fix mainvars detection bug with EXISTS (paren, actually)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3978
diff
changeset
|
343 |
|
4181 | 344 |
|
7640
85ebdbbcb321
[schema] closes #1816439: RQLConstraint does not take variable U into account
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7603
diff
changeset
|
345 |
class RQLConstraintTC(CubicWebTC): |
85ebdbbcb321
[schema] closes #1816439: RQLConstraint does not take variable U into account
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7603
diff
changeset
|
346 |
def test_user_constraint(self): |
85ebdbbcb321
[schema] closes #1816439: RQLConstraint does not take variable U into account
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7603
diff
changeset
|
347 |
cstr = RQLConstraint('U identity O') |
85ebdbbcb321
[schema] closes #1816439: RQLConstraint does not take variable U into account
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7603
diff
changeset
|
348 |
anoneid = self.execute('Any X WHERE X login "anon"')[0][0] |
85ebdbbcb321
[schema] closes #1816439: RQLConstraint does not take variable U into account
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7603
diff
changeset
|
349 |
self.assertRaises(ValidationError, cstr.repo_check, self.session, 1, 'rel', anoneid) |
85ebdbbcb321
[schema] closes #1816439: RQLConstraint does not take variable U into account
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7603
diff
changeset
|
350 |
self.assertEqual(cstr.repo_check(self.session, 1, self.session.user.eid), |
85ebdbbcb321
[schema] closes #1816439: RQLConstraint does not take variable U into account
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7603
diff
changeset
|
351 |
None) # no validation error, constraint checked |
85ebdbbcb321
[schema] closes #1816439: RQLConstraint does not take variable U into account
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7603
diff
changeset
|
352 |
|
8336
7ccd4367ee1c
[workflow] set default test/plain option for workflow default comment (closes #993083)
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
8167
diff
changeset
|
353 |
class WorkflowShemaTC(CubicWebTC): |
7ccd4367ee1c
[workflow] set default test/plain option for workflow default comment (closes #993083)
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
8167
diff
changeset
|
354 |
def test_trinfo_default_format(self): |
8549
0740ffe73df1
[test] reindent and use request() rather than bare session
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8336
diff
changeset
|
355 |
tr = self.request().user.cw_adapt_to('IWorkflowable').fire_transition('deactivate') |
0740ffe73df1
[test] reindent and use request() rather than bare session
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8336
diff
changeset
|
356 |
self.assertEqual(tr.comment_format, 'text/plain') |
7640
85ebdbbcb321
[schema] closes #1816439: RQLConstraint does not take variable U into account
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7603
diff
changeset
|
357 |
|
9547
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
358 |
|
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
359 |
class CompositeSchemaTC(CubicWebTC): |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
360 |
composites = { |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
361 |
'BaseTransition': [('condition', 'BaseTransition', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
362 |
('condition', 'Transition', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
363 |
('condition', 'WorkflowTransition', 'RQLExpression', 'subject')], |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
364 |
'CWAttribute': [('add_permission', 'CWAttribute', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
365 |
('add_permission', 'CWEType', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
366 |
('add_permission', 'CWRelation', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
367 |
('constrained_by', 'CWAttribute', 'CWConstraint', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
368 |
('constrained_by', 'CWRelation', 'CWConstraint', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
369 |
('read_permission', 'CWAttribute', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
370 |
('read_permission', 'CWEType', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
371 |
('read_permission', 'CWRelation', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
372 |
('update_permission', 'CWAttribute', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
373 |
('update_permission', 'CWEType', 'RQLExpression', 'subject')], |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
374 |
'CWEType': [('add_permission', 'CWAttribute', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
375 |
('add_permission', 'CWEType', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
376 |
('add_permission', 'CWRelation', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
377 |
('constraint_of', 'CWUniqueTogetherConstraint', 'CWEType', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
378 |
('cw_schema', 'CWSourceSchemaConfig', 'CWEType', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
379 |
('cw_schema', 'CWSourceSchemaConfig', 'CWRType', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
380 |
('cw_schema', 'CWSourceSchemaConfig', 'CWRelation', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
381 |
('delete_permission', 'CWEType', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
382 |
('delete_permission', 'CWRelation', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
383 |
('from_entity', 'CWAttribute', 'CWEType', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
384 |
('from_entity', 'CWRelation', 'CWEType', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
385 |
('read_permission', 'CWAttribute', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
386 |
('read_permission', 'CWEType', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
387 |
('read_permission', 'CWRelation', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
388 |
('to_entity', 'CWAttribute', 'CWEType', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
389 |
('to_entity', 'CWRelation', 'CWEType', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
390 |
('update_permission', 'CWAttribute', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
391 |
('update_permission', 'CWEType', 'RQLExpression', 'subject')], |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
392 |
'CWRType': [('cw_schema', 'CWSourceSchemaConfig', 'CWEType', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
393 |
('cw_schema', 'CWSourceSchemaConfig', 'CWRType', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
394 |
('cw_schema', 'CWSourceSchemaConfig', 'CWRelation', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
395 |
('relation_type', 'CWAttribute', 'CWRType', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
396 |
('relation_type', 'CWRelation', 'CWRType', 'object')], |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
397 |
'CWRelation': [('add_permission', 'CWAttribute', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
398 |
('add_permission', 'CWEType', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
399 |
('add_permission', 'CWRelation', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
400 |
('constrained_by', 'CWAttribute', 'CWConstraint', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
401 |
('constrained_by', 'CWRelation', 'CWConstraint', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
402 |
('cw_schema', 'CWSourceSchemaConfig', 'CWEType', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
403 |
('cw_schema', 'CWSourceSchemaConfig', 'CWRType', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
404 |
('cw_schema', 'CWSourceSchemaConfig', 'CWRelation', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
405 |
('delete_permission', 'CWEType', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
406 |
('delete_permission', 'CWRelation', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
407 |
('read_permission', 'CWAttribute', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
408 |
('read_permission', 'CWEType', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
409 |
('read_permission', 'CWRelation', 'RQLExpression', 'subject')], |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
410 |
'CWSource': [('cw_for_source', 'CWSourceSchemaConfig', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
411 |
('cw_host_config_of', 'CWSourceHostConfig', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
412 |
('cw_import_of', 'CWDataImport', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
413 |
('cw_source', 'Ami', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
414 |
('cw_source', 'BaseTransition', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
415 |
('cw_source', 'Bookmark', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
416 |
('cw_source', 'CWAttribute', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
417 |
('cw_source', 'CWCache', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
418 |
('cw_source', 'CWConstraint', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
419 |
('cw_source', 'CWConstraintType', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
420 |
('cw_source', 'CWDataImport', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
421 |
('cw_source', 'CWEType', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
422 |
('cw_source', 'CWGroup', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
423 |
('cw_source', 'CWPermission', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
424 |
('cw_source', 'CWProperty', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
425 |
('cw_source', 'CWRType', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
426 |
('cw_source', 'CWRelation', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
427 |
('cw_source', 'CWSource', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
428 |
('cw_source', 'CWSourceHostConfig', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
429 |
('cw_source', 'CWSourceSchemaConfig', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
430 |
('cw_source', 'CWUniqueTogetherConstraint', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
431 |
('cw_source', 'CWUser', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
432 |
('cw_source', 'Card', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
433 |
('cw_source', 'EmailAddress', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
434 |
('cw_source', 'ExternalUri', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
435 |
('cw_source', 'File', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
436 |
('cw_source', 'Note', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
437 |
('cw_source', 'Personne', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
438 |
('cw_source', 'Produit', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
439 |
('cw_source', 'RQLExpression', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
440 |
('cw_source', 'Service', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
441 |
('cw_source', 'Societe', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
442 |
('cw_source', 'State', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
443 |
('cw_source', 'StateFull', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
444 |
('cw_source', 'SubNote', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
445 |
('cw_source', 'SubWorkflowExitPoint', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
446 |
('cw_source', 'Tag', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
447 |
('cw_source', 'TrInfo', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
448 |
('cw_source', 'Transition', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
449 |
('cw_source', 'Usine', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
450 |
('cw_source', 'Workflow', 'CWSource', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
451 |
('cw_source', 'WorkflowTransition', 'CWSource', 'object')], |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
452 |
'CWUser': [('for_user', 'CWProperty', 'CWUser', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
453 |
('use_email', 'CWUser', 'EmailAddress', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
454 |
('wf_info_for', 'TrInfo', 'CWUser', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
455 |
('wf_info_for', 'TrInfo', 'StateFull', 'object')], |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
456 |
'StateFull': [('wf_info_for', 'TrInfo', 'CWUser', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
457 |
('wf_info_for', 'TrInfo', 'StateFull', 'object')], |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
458 |
'Transition': [('condition', 'BaseTransition', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
459 |
('condition', 'Transition', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
460 |
('condition', 'WorkflowTransition', 'RQLExpression', 'subject')], |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
461 |
'Workflow': [('state_of', 'State', 'Workflow', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
462 |
('transition_of', 'BaseTransition', 'Workflow', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
463 |
('transition_of', 'Transition', 'Workflow', 'object'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
464 |
('transition_of', 'WorkflowTransition', 'Workflow', 'object')], |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
465 |
'WorkflowTransition': [('condition', 'BaseTransition', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
466 |
('condition', 'Transition', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
467 |
('condition', 'WorkflowTransition', 'RQLExpression', 'subject'), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
468 |
('subworkflow_exit', 'WorkflowTransition', 'SubWorkflowExitPoint', 'subject')] |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
469 |
} |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
470 |
|
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
471 |
def test_composite_entities(self): |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
472 |
schema = self.vreg.schema |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
473 |
self.assertEqual(sorted(self.composites.keys()), |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
474 |
[eschema.type |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
475 |
for eschema in sorted(schema.entities()) |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
476 |
if eschema.is_composite]) |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
477 |
for etype in self.composites: |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
478 |
self.assertEqual(self.composites[etype], |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
479 |
sorted([(r.rtype.type, r.subject.type, r.object.type, role) |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
480 |
for r, role in sorted(schema[etype].composite_rdef_roles)])) |
43aace16a953
[schema] add composite handling helpers on EntitySchema (related to #3463112)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
9280
diff
changeset
|
481 |
|
0 | 482 |
if __name__ == '__main__': |
483 |
unittest_main() |