author | Pierre-Yves David <pierre-yves.david@logilab.fr> |
Tue, 20 Mar 2012 18:28:24 +0100 | |
changeset 8324 | 75694a61f089 |
parent 8307 | 8be58694f416 |
child 8472 | 444a8e25c940 |
child 8483 | 4ba11607d84a |
permissions | -rw-r--r-- |
0 | 1 |
# -*- coding: utf-8 -*- |
8161
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
2 |
# copyright 2003-2012 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:
4835
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:
4835
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:
4835
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:
4835
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:
4835
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:
4835
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:
4835
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:
4835
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:
4835
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:
4835
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:
4835
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:
4835
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:
4835
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:
4835
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:
4835
diff
changeset
|
18 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
6173 | 19 |
"""unit tests for cubicweb.web.views.entities module""" |
0 | 20 |
|
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
821
diff
changeset
|
21 |
from datetime import datetime |
8161
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
22 |
|
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
23 |
from logilab.common import tempattr |
8161
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
24 |
from logilab.common.decorators import clear_cache |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
25 |
|
3241
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
26 |
from cubicweb import Binary, Unauthorized |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
27 |
from cubicweb.devtools.testlib import CubicWebTC |
4023
eae23c40627a
drop common subpackage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4015
diff
changeset
|
28 |
from cubicweb.mttransforms import HAS_TAL |
3241
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
29 |
from cubicweb.entities import fetch_config |
6685
eeedb3575d25
[uilib] soup2xhtml uses now lxml.html.Cleaner
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
6427
diff
changeset
|
30 |
from cubicweb.uilib import soup2xhtml |
7973
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
31 |
from cubicweb.schema import RQLVocabularyConstraint |
0 | 32 |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
33 |
class EntityTC(CubicWebTC): |
1640 | 34 |
|
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
35 |
def setUp(self): |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
36 |
super(EntityTC, self).setUp() |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
37 |
self.backup_dict = {} |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
38 |
for cls in self.vreg['etypes'].iter_classes(): |
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7798
diff
changeset
|
39 |
self.backup_dict[cls] = (cls.fetch_attrs, cls.cw_fetch_order) |
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
40 |
|
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
41 |
def tearDown(self): |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
42 |
super(EntityTC, self).tearDown() |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
43 |
for cls in self.vreg['etypes'].iter_classes(): |
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7798
diff
changeset
|
44 |
cls.fetch_attrs, cls.cw_fetch_order = self.backup_dict[cls] |
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
45 |
|
0 | 46 |
def test_boolean_value(self): |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
47 |
e = self.vreg['etypes'].etype_class('CWUser')(self.request()) |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
48 |
self.assertTrue(e) |
0 | 49 |
|
50 |
def test_yams_inheritance(self): |
|
748 | 51 |
from entities import Note |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
52 |
e = self.vreg['etypes'].etype_class('SubNote')(self.request()) |
748 | 53 |
self.assertIsInstance(e, Note) |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
54 |
e2 = self.vreg['etypes'].etype_class('SubNote')(self.request()) |
0 | 55 |
self.assertIs(e.__class__, e2.__class__) |
56 |
||
57 |
def test_has_eid(self): |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
58 |
e = self.vreg['etypes'].etype_class('CWUser')(self.request()) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
59 |
self.assertEqual(e.eid, None) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
60 |
self.assertEqual(e.has_eid(), False) |
0 | 61 |
e.eid = 'X' |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
62 |
self.assertEqual(e.has_eid(), False) |
0 | 63 |
e.eid = 0 |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
64 |
self.assertEqual(e.has_eid(), True) |
0 | 65 |
e.eid = 2 |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
66 |
self.assertEqual(e.has_eid(), True) |
1640 | 67 |
|
0 | 68 |
def test_copy(self): |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
69 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
70 |
req.create_entity('Tag', name=u'x') |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
71 |
p = req.create_entity('Personne', nom=u'toto') |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
72 |
oe = req.create_entity('Note', type=u'x') |
0 | 73 |
self.execute('SET T ecrit_par U WHERE T eid %(t)s, U eid %(u)s', |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
74 |
{'t': oe.eid, 'u': p.eid}) |
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
75 |
self.execute('SET TAG tags X WHERE X eid %(x)s', {'x': oe.eid}) |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
76 |
e = req.create_entity('Note', type=u'z') |
0 | 77 |
e.copy_relations(oe.eid) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
78 |
self.assertEqual(len(e.ecrit_par), 1) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
79 |
self.assertEqual(e.ecrit_par[0].eid, p.eid) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
80 |
self.assertEqual(len(e.reverse_tags), 1) |
2635
c94df21f7ab2
F [cw.test] OK
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2208
diff
changeset
|
81 |
# check meta-relations are not copied, set on commit |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
82 |
self.assertEqual(len(e.created_by), 0) |
1640 | 83 |
|
0 | 84 |
def test_copy_with_nonmeta_composite_inlined(self): |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
85 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
86 |
p = req.create_entity('Personne', nom=u'toto') |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
87 |
oe = req.create_entity('Note', type=u'x') |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3826
diff
changeset
|
88 |
self.schema['ecrit_par'].rdef('Note', 'Personne').composite = 'subject' |
0 | 89 |
self.execute('SET T ecrit_par U WHERE T eid %(t)s, U eid %(u)s', |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
90 |
{'t': oe.eid, 'u': p.eid}) |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
91 |
e = req.create_entity('Note', type=u'z') |
0 | 92 |
e.copy_relations(oe.eid) |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
93 |
self.assertFalse(e.ecrit_par) |
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
94 |
self.assertTrue(oe.ecrit_par) |
1640 | 95 |
|
0 | 96 |
def test_copy_with_composite(self): |
97 |
user = self.user() |
|
98 |
adeleid = self.execute('INSERT EmailAddress X: X address "toto@logilab.org", U use_email X WHERE U login "admin"')[0][0] |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
99 |
e = self.execute('Any X WHERE X eid %(x)s', {'x': user.eid}).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:
6168
diff
changeset
|
100 |
self.assertEqual(e.use_email[0].address, "toto@logilab.org") |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
101 |
self.assertEqual(e.use_email[0].eid, adeleid) |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
102 |
usereid = self.execute('INSERT CWUser X: X login "toto", X upassword "toto", X in_group G ' |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
103 |
'WHERE G name "users"')[0][0] |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
104 |
e = self.execute('Any X WHERE X eid %(x)s', {'x': usereid}).get_entity(0, 0) |
0 | 105 |
e.copy_relations(user.eid) |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
106 |
self.assertFalse(e.use_email) |
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
107 |
self.assertFalse(e.primary_email) |
1640 | 108 |
|
0 | 109 |
def test_copy_with_non_initial_state(self): |
110 |
user = self.user() |
|
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
111 |
user = self.execute('INSERT CWUser X: X login "toto", X upassword %(pwd)s, X in_group G WHERE G name "users"', |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
112 |
{'pwd': 'toto'}).get_entity(0, 0) |
0 | 113 |
self.commit() |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
114 |
user.cw_adapt_to('IWorkflowable').fire_transition('deactivate') |
0 | 115 |
self.commit() |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1341
diff
changeset
|
116 |
eid2 = self.execute('INSERT CWUser X: X login "tutu", X upassword %(pwd)s', {'pwd': 'toto'})[0][0] |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
117 |
e = self.execute('Any X WHERE X eid %(x)s', {'x': eid2}).get_entity(0, 0) |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
118 |
e.copy_relations(user.eid) |
0 | 119 |
self.commit() |
5557
1a534c596bff
[entity] continue cleanup of Entity/AnyEntity namespace
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
120 |
e.cw_clear_relation_cache('in_state', 'subject') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
121 |
self.assertEqual(e.cw_adapt_to('IWorkflowable').state, 'activated') |
0 | 122 |
|
123 |
def test_related_cache_both(self): |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
124 |
user = self.execute('Any X WHERE X eid %(x)s', {'x':self.user().eid}).get_entity(0, 0) |
0 | 125 |
adeleid = self.execute('INSERT EmailAddress X: X address "toto@logilab.org", U use_email X WHERE U login "admin"')[0][0] |
126 |
self.commit() |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
127 |
self.assertEqual(user._cw_related_cache, {}) |
0 | 128 |
email = user.primary_email[0] |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
129 |
self.assertEqual(sorted(user._cw_related_cache), ['primary_email_subject']) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
130 |
self.assertEqual(email._cw_related_cache.keys(), ['primary_email_object']) |
0 | 131 |
groups = user.in_group |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
132 |
self.assertEqual(sorted(user._cw_related_cache), ['in_group_subject', 'primary_email_subject']) |
0 | 133 |
for group in groups: |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
134 |
self.assertFalse('in_group_subject' in group._cw_related_cache, group._cw_related_cache.keys()) |
413
a7366dd3c33c
fix bug in entity.related_rql(): fetch_attr list / fetchorder weren't computed correctly
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
135 |
|
0 | 136 |
def test_related_limit(self): |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
137 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
138 |
p = req.create_entity('Personne', nom=u'di mascio', prenom=u'adrien') |
0 | 139 |
for tag in u'abcd': |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
140 |
req.create_entity('Tag', name=tag) |
0 | 141 |
self.execute('SET X tags Y WHERE X is Tag, Y is Personne') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
142 |
self.assertEqual(len(p.related('tags', 'object', limit=2)), 2) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
143 |
self.assertEqual(len(p.related('tags', 'object')), 4) |
0 | 144 |
|
7376
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
145 |
def test_cw_instantiate_relation(self): |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
146 |
req = self.request() |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
147 |
p1 = req.create_entity('Personne', nom=u'di') |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
148 |
p2 = req.create_entity('Personne', nom=u'mascio') |
8199
fb5c0e60a615
[entity] fix crash when using cw_instantiate with empty related entity list; closes #2094462
Florent Cayré <florent.cayre@gmail.com>
parents:
7973
diff
changeset
|
149 |
t = req.create_entity('Tag', name=u't0', tags=[]) |
fb5c0e60a615
[entity] fix crash when using cw_instantiate with empty related entity list; closes #2094462
Florent Cayré <florent.cayre@gmail.com>
parents:
7973
diff
changeset
|
150 |
self.assertItemsEqual(t.tags, []) |
7376
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
151 |
t = req.create_entity('Tag', name=u't1', tags=p1) |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
152 |
self.assertItemsEqual(t.tags, [p1]) |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
153 |
t = req.create_entity('Tag', name=u't2', tags=p1.eid) |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
154 |
self.assertItemsEqual(t.tags, [p1]) |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
155 |
t = req.create_entity('Tag', name=u't3', tags=[p1, p2.eid]) |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
156 |
self.assertItemsEqual(t.tags, [p1, p2]) |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
157 |
|
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
158 |
def test_cw_instantiate_reverse_relation(self): |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
159 |
req = self.request() |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
160 |
t1 = req.create_entity('Tag', name=u't1') |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
161 |
t2 = req.create_entity('Tag', name=u't2') |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
162 |
p = req.create_entity('Personne', nom=u'di mascio', reverse_tags=t1) |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
163 |
self.assertItemsEqual(p.reverse_tags, [t1]) |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
164 |
p = req.create_entity('Personne', nom=u'di mascio', reverse_tags=t1.eid) |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
165 |
self.assertItemsEqual(p.reverse_tags, [t1]) |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
166 |
p = req.create_entity('Personne', nom=u'di mascio', reverse_tags=[t1, t2.eid]) |
38524ca653e5
[entity] fix cw_instantiate w/ reverse_ relation crash when either multiple entities are given or an eid instead of an entity
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7308
diff
changeset
|
167 |
self.assertItemsEqual(p.reverse_tags, [t1, t2]) |
1640 | 168 |
|
0 | 169 |
def test_fetch_rql(self): |
170 |
user = self.user() |
|
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:
2635
diff
changeset
|
171 |
Personne = self.vreg['etypes'].etype_class('Personne') |
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:
2635
diff
changeset
|
172 |
Societe = self.vreg['etypes'].etype_class('Societe') |
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:
2635
diff
changeset
|
173 |
Note = self.vreg['etypes'].etype_class('Note') |
0 | 174 |
peschema = Personne.e_schema |
175 |
seschema = Societe.e_schema |
|
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
176 |
torestore = [] |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
177 |
for rdef, card in [(peschema.subjrels['travaille'].rdef(peschema, seschema), '1*'), |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
178 |
(peschema.subjrels['connait'].rdef(peschema, peschema), '11'), |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
179 |
(peschema.subjrels['evaluee'].rdef(peschema, Note.e_schema), '1*'), |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
180 |
(seschema.subjrels['evaluee'].rdef(seschema, Note.e_schema), '1*')]: |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
181 |
cm = tempattr(rdef, 'cardinality', card) |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
182 |
cm.__enter__() |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
183 |
torestore.append(cm) |
0 | 184 |
try: |
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
185 |
# testing basic fetch_attrs attribute |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
186 |
self.assertEqual(Personne.fetch_rql(user), |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
187 |
'Any X,AA,AB,AC ORDERBY AA ' |
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
188 |
'WHERE X is Personne, X nom AA, X prenom AB, X modification_date AC') |
0 | 189 |
# testing unknown attributes |
190 |
Personne.fetch_attrs = ('bloug', 'beep') |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
191 |
self.assertEqual(Personne.fetch_rql(user), 'Any X WHERE X is Personne') |
0 | 192 |
# testing one non final relation |
193 |
Personne.fetch_attrs = ('nom', 'prenom', 'travaille') |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
194 |
self.assertEqual(Personne.fetch_rql(user), |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
195 |
'Any X,AA,AB,AC,AD ORDERBY AA ' |
3135
996c1ec7376c
test fixes and enhancement
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2930
diff
changeset
|
196 |
'WHERE X is Personne, X nom AA, X prenom AB, X travaille AC?, AC nom AD') |
0 | 197 |
# testing two non final relations |
198 |
Personne.fetch_attrs = ('nom', 'prenom', 'travaille', 'evaluee') |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
199 |
self.assertEqual(Personne.fetch_rql(user), |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
200 |
'Any X,AA,AB,AC,AD,AE ORDERBY AA ' |
7302
c281afe35b8b
[entity] fix entity fetch_rql when fetch_attrs contains a rtype with multiple destination etypes which do not have the same fetched attributes themselves (closes #1631282)
Florent Cayré <florent.cayre@gmail.com>
parents:
7244
diff
changeset
|
201 |
'WHERE X is Personne, X nom AA, X prenom AB, X travaille AC?, AC nom AD, ' |
c281afe35b8b
[entity] fix entity fetch_rql when fetch_attrs contains a rtype with multiple destination etypes which do not have the same fetched attributes themselves (closes #1631282)
Florent Cayré <florent.cayre@gmail.com>
parents:
7244
diff
changeset
|
202 |
'X evaluee AE?') |
0 | 203 |
# testing one non final relation with recursion |
204 |
Personne.fetch_attrs = ('nom', 'prenom', 'travaille') |
|
205 |
Societe.fetch_attrs = ('nom', 'evaluee') |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
206 |
self.assertEqual(Personne.fetch_rql(user), |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
207 |
'Any X,AA,AB,AC,AD,AE,AF ORDERBY AA,AF DESC ' |
3135
996c1ec7376c
test fixes and enhancement
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2930
diff
changeset
|
208 |
'WHERE X is Personne, X nom AA, X prenom AB, X travaille AC?, AC nom AD, ' |
996c1ec7376c
test fixes and enhancement
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2930
diff
changeset
|
209 |
'AC evaluee AE?, AE modification_date AF' |
0 | 210 |
) |
4467
0e73d299730a
fix long-waiting symetric typo: should be spelled symmetric. Add auto database migration on schema deserialization
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4460
diff
changeset
|
211 |
# testing symmetric relation |
0 | 212 |
Personne.fetch_attrs = ('nom', 'connait') |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
213 |
self.assertEqual(Personne.fetch_rql(user), 'Any X,AA,AB ORDERBY AA ' |
2930
d7c23b2c7538
some test fixes, more in the 3.5 branch
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
214 |
'WHERE X is Personne, X nom AA, X connait AB?') |
0 | 215 |
# testing optional relation |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3826
diff
changeset
|
216 |
peschema.subjrels['travaille'].rdef(peschema, seschema).cardinality = '?*' |
0 | 217 |
Personne.fetch_attrs = ('nom', 'prenom', 'travaille') |
218 |
Societe.fetch_attrs = ('nom',) |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
219 |
self.assertEqual(Personne.fetch_rql(user), |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
220 |
'Any X,AA,AB,AC,AD ORDERBY AA WHERE X is Personne, X nom AA, X prenom AB, X travaille AC?, AC nom AD') |
0 | 221 |
# testing relation with cardinality > 1 |
3877
7ca53fc72a0a
reldefsecurity branch :
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3826
diff
changeset
|
222 |
peschema.subjrels['travaille'].rdef(peschema, seschema).cardinality = '**' |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
223 |
self.assertEqual(Personne.fetch_rql(user), |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
224 |
'Any X,AA,AB ORDERBY AA WHERE X is Personne, X nom AA, X prenom AB') |
0 | 225 |
# XXX test unauthorized attribute |
226 |
finally: |
|
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
227 |
# fetch_attrs restored by generic tearDown |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
228 |
for cm in torestore: |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
229 |
cm.__exit__(None, None, None) |
0 | 230 |
|
4630
528dee042927
fix #694445: related entity generates weird RQL which in turn generates weird SQL which fails on SQL Server
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4467
diff
changeset
|
231 |
def test_related_rql_base(self): |
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:
2635
diff
changeset
|
232 |
Personne = self.vreg['etypes'].etype_class('Personne') |
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:
2635
diff
changeset
|
233 |
Note = self.vreg['etypes'].etype_class('Note') |
4691
ae468fae9965
[test] fix test inter-dependancies pb. Pytest ok in each individual test dir, though not yet for whole cubicweb, but for different reasons
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4681
diff
changeset
|
234 |
SubNote = self.vreg['etypes'].etype_class('SubNote') |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
235 |
self.assertTrue(issubclass(self.vreg['etypes'].etype_class('SubNote'), Note)) |
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7798
diff
changeset
|
236 |
Personne.fetch_attrs, Personne.cw_fetch_order = fetch_config(('nom', 'type')) |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7798
diff
changeset
|
237 |
Note.fetch_attrs, Note.cw_fetch_order = fetch_config(('type',)) |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7798
diff
changeset
|
238 |
SubNote.fetch_attrs, SubNote.cw_fetch_order = fetch_config(('type',)) |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
239 |
p = self.request().create_entity('Personne', nom=u'pouet') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
240 |
self.assertEqual(p.cw_related_rql('evaluee'), |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
241 |
'Any X,AA,AB ORDERBY AA WHERE E eid %(x)s, E evaluee X, ' |
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
242 |
'X type AA, X modification_date AB') |
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
243 |
n = self.request().create_entity('Note') |
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
244 |
self.assertEqual(n.cw_related_rql('evaluee', role='object', |
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
245 |
targettypes=('Societe', 'Personne')), |
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
246 |
"Any X,AA ORDERBY AB DESC WHERE E eid %(x)s, X evaluee E, " |
7973
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
247 |
"X is IN(Personne, Societe), X nom AA, " |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
248 |
"X modification_date AB") |
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7798
diff
changeset
|
249 |
Personne.fetch_attrs, Personne.cw_fetch_order = fetch_config(('nom', )) |
744 | 250 |
# XXX |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
251 |
self.assertEqual(p.cw_related_rql('evaluee'), |
4672 | 252 |
'Any X,AA ORDERBY AA DESC ' |
4681
5f72584ab1d7
[test] cleanup
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4672
diff
changeset
|
253 |
'WHERE E eid %(x)s, E evaluee X, X modification_date AA') |
3672
554a588ffaea
[entity] make related_rql honors its targettypes argument
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3670
diff
changeset
|
254 |
|
554a588ffaea
[entity] make related_rql honors its targettypes argument
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3670
diff
changeset
|
255 |
tag = self.vreg['etypes'].etype_class('Tag')(self.request()) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
256 |
self.assertEqual(tag.cw_related_rql('tags', 'subject'), |
4672 | 257 |
'Any X,AA ORDERBY AA DESC ' |
4681
5f72584ab1d7
[test] cleanup
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4672
diff
changeset
|
258 |
'WHERE E eid %(x)s, E tags X, X modification_date AA') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
259 |
self.assertEqual(tag.cw_related_rql('tags', 'subject', ('Personne',)), |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
260 |
'Any X,AA,AB ORDERBY AA ' |
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
261 |
'WHERE E eid %(x)s, E tags X, X is Personne, X nom AA, ' |
3672
554a588ffaea
[entity] make related_rql honors its targettypes argument
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3670
diff
changeset
|
262 |
'X modification_date AB') |
1640 | 263 |
|
7425
7e9d1d6fcba7
[entity fetch_attrs] remove ambiguous relations on different etypes from fetched attrs or it may produce wrong related results; closes #1700896
Florent Cayré <florent.cayre@gmail.com>
parents:
7376
diff
changeset
|
264 |
def test_related_rql_ambiguous_cant_use_fetch_order(self): |
4630
528dee042927
fix #694445: related entity generates weird RQL which in turn generates weird SQL which fails on SQL Server
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4467
diff
changeset
|
265 |
tag = self.vreg['etypes'].etype_class('Tag')(self.request()) |
528dee042927
fix #694445: related entity generates weird RQL which in turn generates weird SQL which fails on SQL Server
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4467
diff
changeset
|
266 |
for ttype in self.schema['tags'].objects(): |
528dee042927
fix #694445: related entity generates weird RQL which in turn generates weird SQL which fails on SQL Server
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4467
diff
changeset
|
267 |
self.vreg['etypes'].etype_class(ttype).fetch_attrs = ('modification_date',) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
268 |
self.assertEqual(tag.cw_related_rql('tags', 'subject'), |
4630
528dee042927
fix #694445: related entity generates weird RQL which in turn generates weird SQL which fails on SQL Server
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4467
diff
changeset
|
269 |
'Any X,AA ORDERBY AA DESC ' |
528dee042927
fix #694445: related entity generates weird RQL which in turn generates weird SQL which fails on SQL Server
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4467
diff
changeset
|
270 |
'WHERE E eid %(x)s, E tags X, X modification_date AA') |
528dee042927
fix #694445: related entity generates weird RQL which in turn generates weird SQL which fails on SQL Server
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4467
diff
changeset
|
271 |
|
7798
8930f7a284dd
[entity fetchattrs] also fetch ambiguous rtypes even if we do not recurse on them (closes #1720823)
Florent Cayré <florent.cayre@gmail.com>
parents:
7794
diff
changeset
|
272 |
def test_related_rql_fetch_ambiguous_rtype(self): |
7425
7e9d1d6fcba7
[entity fetch_attrs] remove ambiguous relations on different etypes from fetched attrs or it may produce wrong related results; closes #1700896
Florent Cayré <florent.cayre@gmail.com>
parents:
7376
diff
changeset
|
273 |
soc_etype = self.vreg['etypes'].etype_class('Societe') |
7e9d1d6fcba7
[entity fetch_attrs] remove ambiguous relations on different etypes from fetched attrs or it may produce wrong related results; closes #1700896
Florent Cayré <florent.cayre@gmail.com>
parents:
7376
diff
changeset
|
274 |
soc = soc_etype(self.request()) |
7e9d1d6fcba7
[entity fetch_attrs] remove ambiguous relations on different etypes from fetched attrs or it may produce wrong related results; closes #1700896
Florent Cayré <florent.cayre@gmail.com>
parents:
7376
diff
changeset
|
275 |
soc_etype.fetch_attrs = ('fournit',) |
7e9d1d6fcba7
[entity fetch_attrs] remove ambiguous relations on different etypes from fetched attrs or it may produce wrong related results; closes #1700896
Florent Cayré <florent.cayre@gmail.com>
parents:
7376
diff
changeset
|
276 |
self.vreg['etypes'].etype_class('Service').fetch_attrs = ('fabrique_par',) |
7e9d1d6fcba7
[entity fetch_attrs] remove ambiguous relations on different etypes from fetched attrs or it may produce wrong related results; closes #1700896
Florent Cayré <florent.cayre@gmail.com>
parents:
7376
diff
changeset
|
277 |
self.vreg['etypes'].etype_class('Produit').fetch_attrs = ('fabrique_par',) |
7e9d1d6fcba7
[entity fetch_attrs] remove ambiguous relations on different etypes from fetched attrs or it may produce wrong related results; closes #1700896
Florent Cayré <florent.cayre@gmail.com>
parents:
7376
diff
changeset
|
278 |
self.vreg['etypes'].etype_class('Usine').fetch_attrs = ('lieu',) |
7e9d1d6fcba7
[entity fetch_attrs] remove ambiguous relations on different etypes from fetched attrs or it may produce wrong related results; closes #1700896
Florent Cayré <florent.cayre@gmail.com>
parents:
7376
diff
changeset
|
279 |
self.vreg['etypes'].etype_class('Personne').fetch_attrs = ('nom',) |
7e9d1d6fcba7
[entity fetch_attrs] remove ambiguous relations on different etypes from fetched attrs or it may produce wrong related results; closes #1700896
Florent Cayré <florent.cayre@gmail.com>
parents:
7376
diff
changeset
|
280 |
self.assertEqual(soc.cw_related_rql('fournit', 'subject'), |
7798
8930f7a284dd
[entity fetchattrs] also fetch ambiguous rtypes even if we do not recurse on them (closes #1720823)
Florent Cayré <florent.cayre@gmail.com>
parents:
7794
diff
changeset
|
281 |
'Any X,A WHERE E eid %(x)s, E fournit X, X fabrique_par A') |
7425
7e9d1d6fcba7
[entity fetch_attrs] remove ambiguous relations on different etypes from fetched attrs or it may produce wrong related results; closes #1700896
Florent Cayré <florent.cayre@gmail.com>
parents:
7376
diff
changeset
|
282 |
|
7139
20807d3d7cf6
[rql rewriter] to properly handle 'relation' rql expressions, rql rewriter must support multiple variables (eg S and O) at once to be given as varmap
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6685
diff
changeset
|
283 |
def test_unrelated_rql_security_1_manager(self): |
3241
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
284 |
user = self.request().user |
5557
1a534c596bff
[entity] continue cleanup of Entity/AnyEntity namespace
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
285 |
rql = user.cw_unrelated_rql('use_email', 'EmailAddress', 'subject')[0] |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
286 |
self.assertEqual(rql, 'Any O,AA,AB,AC ORDERBY AC DESC ' |
7973
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
287 |
'WHERE NOT A use_email O, S eid %(x)s, ' |
7139
20807d3d7cf6
[rql rewriter] to properly handle 'relation' rql expressions, rql rewriter must support multiple variables (eg S and O) at once to be given as varmap
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6685
diff
changeset
|
288 |
'O is EmailAddress, O address AA, O alias AB, O modification_date AC') |
20807d3d7cf6
[rql rewriter] to properly handle 'relation' rql expressions, rql rewriter must support multiple variables (eg S and O) at once to be given as varmap
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6685
diff
changeset
|
289 |
|
20807d3d7cf6
[rql rewriter] to properly handle 'relation' rql expressions, rql rewriter must support multiple variables (eg S and O) at once to be given as varmap
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6685
diff
changeset
|
290 |
def test_unrelated_rql_security_1_user(self): |
7244
a918f76441ce
fix tests broken by fcb8932082a5 (continued)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7177
diff
changeset
|
291 |
req = self.request() |
a918f76441ce
fix tests broken by fcb8932082a5 (continued)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7177
diff
changeset
|
292 |
self.create_user(req, 'toto') |
3241
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
293 |
self.login('toto') |
7244
a918f76441ce
fix tests broken by fcb8932082a5 (continued)
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
7177
diff
changeset
|
294 |
user = req.user |
5557
1a534c596bff
[entity] continue cleanup of Entity/AnyEntity namespace
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
295 |
rql = user.cw_unrelated_rql('use_email', 'EmailAddress', 'subject')[0] |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
296 |
self.assertEqual(rql, 'Any O,AA,AB,AC ORDERBY AC DESC ' |
7973
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
297 |
'WHERE NOT A use_email O, S eid %(x)s, ' |
7139
20807d3d7cf6
[rql rewriter] to properly handle 'relation' rql expressions, rql rewriter must support multiple variables (eg S and O) at once to be given as varmap
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6685
diff
changeset
|
298 |
'O is EmailAddress, O address AA, O alias AB, O modification_date AC') |
3241
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
299 |
user = self.execute('Any X WHERE X login "admin"').get_entity(0, 0) |
7139
20807d3d7cf6
[rql rewriter] to properly handle 'relation' rql expressions, rql rewriter must support multiple variables (eg S and O) at once to be given as varmap
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6685
diff
changeset
|
300 |
rql = user.cw_unrelated_rql('use_email', 'EmailAddress', 'subject')[0] |
7177
0f2905cbe443
[entity vocab] fix bug introduced in 3.12 vs/ entity vocabulary, leading to some unexpected empty vocabulary. Fix test accordingly.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7154
diff
changeset
|
301 |
self.assertEqual(rql, 'Any O,AA,AB,AC ORDERBY AC DESC ' |
7973
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
302 |
'WHERE NOT A use_email O, S eid %(x)s, ' |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
303 |
'O is EmailAddress, O address AA, O alias AB, O modification_date AC, AD eid %(AE)s, ' |
7973
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
304 |
'EXISTS(S identity AD, NOT AD in_group AF, AF name "guests", AF is CWGroup), A is CWUser') |
7139
20807d3d7cf6
[rql rewriter] to properly handle 'relation' rql expressions, rql rewriter must support multiple variables (eg S and O) at once to be given as varmap
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6685
diff
changeset
|
305 |
|
20807d3d7cf6
[rql rewriter] to properly handle 'relation' rql expressions, rql rewriter must support multiple variables (eg S and O) at once to be given as varmap
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6685
diff
changeset
|
306 |
def test_unrelated_rql_security_1_anon(self): |
3241
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
307 |
self.login('anon') |
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
308 |
user = self.request().user |
7139
20807d3d7cf6
[rql rewriter] to properly handle 'relation' rql expressions, rql rewriter must support multiple variables (eg S and O) at once to be given as varmap
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6685
diff
changeset
|
309 |
rql = user.cw_unrelated_rql('use_email', 'EmailAddress', 'subject')[0] |
7177
0f2905cbe443
[entity vocab] fix bug introduced in 3.12 vs/ entity vocabulary, leading to some unexpected empty vocabulary. Fix test accordingly.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7154
diff
changeset
|
310 |
self.assertEqual(rql, 'Any O,AA,AB,AC ORDERBY AC DESC ' |
7973
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
311 |
'WHERE NOT A use_email O, S eid %(x)s, ' |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
312 |
'O is EmailAddress, O address AA, O alias AB, O modification_date AC, AD eid %(AE)s, ' |
7973
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
313 |
'EXISTS(S identity AD, NOT AD in_group AF, AF name "guests", AF is CWGroup), A is CWUser') |
3241
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
314 |
|
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
315 |
def test_unrelated_rql_security_2(self): |
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
316 |
email = self.execute('INSERT EmailAddress X: X address "hop"').get_entity(0, 0) |
5557
1a534c596bff
[entity] continue cleanup of Entity/AnyEntity namespace
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
317 |
rql = email.cw_unrelated_rql('use_email', 'CWUser', 'object')[0] |
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
318 |
self.assertEqual(rql, 'Any S,AA,AB,AC,AD ORDERBY AA ' |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
319 |
'WHERE NOT S use_email O, O eid %(x)s, S is CWUser, ' |
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
320 |
'S login AA, S firstname AB, S surname AC, S modification_date AD') |
3241
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
321 |
self.login('anon') |
8161
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
322 |
rperms = self.schema['EmailAddress'].permissions['read'] |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
323 |
clear_cache(self.schema['EmailAddress'], 'get_groups') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
324 |
clear_cache(self.schema['EmailAddress'], 'get_rqlexprs') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
325 |
self.schema['EmailAddress'].permissions['read'] = ('managers', 'users', 'guests',) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
326 |
try: |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
327 |
email = self.execute('Any X WHERE X eid %(x)s', {'x': email.eid}).get_entity(0, 0) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
328 |
rql = email.cw_unrelated_rql('use_email', 'CWUser', 'object')[0] |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
329 |
self.assertEqual(rql, 'Any S,AA,AB,AC,AD ORDERBY AA ' |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
330 |
'WHERE NOT S use_email O, O eid %(x)s, S is CWUser, ' |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
331 |
'S login AA, S firstname AB, S surname AC, S modification_date AD, ' |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
332 |
'AE eid %(AF)s, EXISTS(S identity AE, NOT AE in_group AG, AG name "guests", AG is CWGroup)') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
333 |
finally: |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
334 |
clear_cache(self.schema['EmailAddress'], 'get_groups') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
335 |
clear_cache(self.schema['EmailAddress'], 'get_rqlexprs') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
336 |
self.schema['EmailAddress'].permissions['read'] = rperms |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
337 |
|
3241
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
338 |
|
3826
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3771
diff
changeset
|
339 |
def test_unrelated_rql_security_nonexistant(self): |
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3771
diff
changeset
|
340 |
self.login('anon') |
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3771
diff
changeset
|
341 |
email = self.vreg['etypes'].etype_class('EmailAddress')(self.request()) |
5557
1a534c596bff
[entity] continue cleanup of Entity/AnyEntity namespace
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
342 |
rql = email.cw_unrelated_rql('use_email', 'CWUser', 'object')[0] |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
343 |
self.assertEqual(rql, 'Any S,AA,AB,AC,AD ORDERBY AA ' |
7177
0f2905cbe443
[entity vocab] fix bug introduced in 3.12 vs/ entity vocabulary, leading to some unexpected empty vocabulary. Fix test accordingly.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7154
diff
changeset
|
344 |
'WHERE S is CWUser, ' |
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
345 |
'S login AA, S firstname AB, S surname AC, S modification_date AD, ' |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
346 |
'AE eid %(AF)s, EXISTS(S identity AE, NOT AE in_group AG, AG name "guests", AG is CWGroup)') |
3826
0c0c051863cb
close #511810: bad rql generated when looking for vocabulary for a relation on an entity which doesn't exist (yet)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3771
diff
changeset
|
347 |
|
7153
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
348 |
def test_unrelated_rql_constraints_creation_subject(self): |
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
349 |
person = self.vreg['etypes'].etype_class('Personne')(self.request()) |
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
350 |
rql = person.cw_unrelated_rql('connait', 'Personne', 'subject')[0] |
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
351 |
self.assertEqual( |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
352 |
rql, 'Any O,AA,AB,AC ORDERBY AC DESC WHERE ' |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
353 |
'O is Personne, O nom AA, O prenom AB, O modification_date AC') |
7153
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
354 |
|
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
355 |
def test_unrelated_rql_constraints_creation_object(self): |
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
356 |
person = self.vreg['etypes'].etype_class('Personne')(self.request()) |
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
357 |
rql = person.cw_unrelated_rql('connait', 'Personne', 'object')[0] |
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
358 |
self.assertEqual( |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
359 |
rql, 'Any S,AA,AB,AC ORDERBY AC DESC WHERE ' |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
360 |
'S is Personne, S nom AA, S prenom AB, S modification_date AC, ' |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
361 |
'NOT (S connait AD, AD nom "toto"), AD is Personne, ' |
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
362 |
'EXISTS(S travaille AE, AE nom "tutu")') |
7153
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
363 |
|
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
364 |
def test_unrelated_rql_constraints_edition_subject(self): |
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
365 |
person = self.request().create_entity('Personne', nom=u'sylvain') |
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
366 |
rql = person.cw_unrelated_rql('connait', 'Personne', 'subject')[0] |
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
367 |
self.assertEqual( |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
368 |
rql, 'Any O,AA,AB,AC ORDERBY AC DESC WHERE ' |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
369 |
'NOT S connait O, S eid %(x)s, O is Personne, ' |
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
370 |
'O nom AA, O prenom AB, O modification_date AC, ' |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
371 |
'NOT S identity O') |
7153
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
372 |
|
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
373 |
def test_unrelated_rql_constraints_edition_object(self): |
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
374 |
person = self.request().create_entity('Personne', nom=u'sylvain') |
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
375 |
rql = person.cw_unrelated_rql('connait', 'Personne', 'object')[0] |
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
376 |
self.assertEqual( |
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
377 |
rql, 'Any S,AA,AB,AC ORDERBY AC DESC WHERE ' |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
378 |
'NOT S connait O, O eid %(x)s, S is Personne, ' |
7154
5e2f93b88d86
[entity vocabulary] refactor unrelated rql to allow usage of RQLRewriter to insert schema constraints. Closes #1561806
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7153
diff
changeset
|
379 |
'S nom AA, S prenom AB, S modification_date AC, ' |
7794
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
380 |
'NOT S identity O, NOT (S connait AD, AD nom "toto"), ' |
aed065b97f12
refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings ; closes #1585650
Florent Cayré <florent.cayre@gmail.com>
parents:
7791
diff
changeset
|
381 |
'EXISTS(S travaille AE, AE nom "tutu")') |
7153
7df83a6d17c0
[entity vocabulary] fix unrelated rql generation to skip rql constraints that don't make sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7139
diff
changeset
|
382 |
|
7973
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
383 |
def test_unrelated_rql_s_linkto_s(self): |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
384 |
req = self.request() |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
385 |
person = self.vreg['etypes'].etype_class('Personne')(req) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
386 |
self.vreg['etypes'].etype_class('Personne').fetch_attrs = () |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
387 |
soc = req.create_entity('Societe', nom=u'logilab') |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
388 |
lt_infos = {('actionnaire', 'subject'): [soc.eid]} |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
389 |
rql, args = person.cw_unrelated_rql('associe', 'Personne', 'subject', |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
390 |
lt_infos=lt_infos) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
391 |
self.assertEqual(u'Any O ORDERBY O WHERE O is Personne, ' |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
392 |
u'EXISTS(AA eid %(SOC)s, O actionnaire AA)', rql) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
393 |
self.assertEqual({'SOC': soc.eid}, args) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
394 |
|
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
395 |
def test_unrelated_rql_s_linkto_o(self): |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
396 |
req = self.request() |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
397 |
person = self.vreg['etypes'].etype_class('Personne')(req) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
398 |
self.vreg['etypes'].etype_class('Societe').fetch_attrs = () |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
399 |
soc = req.create_entity('Societe', nom=u'logilab') |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
400 |
lt_infos = {('contrat_exclusif', 'object'): [soc.eid]} |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
401 |
rql, args = person.cw_unrelated_rql('actionnaire', 'Societe', 'subject', |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
402 |
lt_infos=lt_infos) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
403 |
self.assertEqual(u'Any O ORDERBY O WHERE NOT A actionnaire O, ' |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
404 |
u'O is Societe, NOT EXISTS(O eid %(O)s), ' |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
405 |
u'A is Personne', rql) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
406 |
self.assertEqual({'O': soc.eid}, args) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
407 |
|
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
408 |
def test_unrelated_rql_o_linkto_s(self): |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
409 |
req = self.request() |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
410 |
soc = self.vreg['etypes'].etype_class('Societe')(req) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
411 |
self.vreg['etypes'].etype_class('Personne').fetch_attrs = () |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
412 |
person = req.create_entity('Personne', nom=u'florent') |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
413 |
lt_infos = {('contrat_exclusif', 'subject'): [person.eid]} |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
414 |
rql, args = soc.cw_unrelated_rql('actionnaire', 'Personne', 'object', |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
415 |
lt_infos=lt_infos) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
416 |
self.assertEqual(u'Any S ORDERBY S WHERE NOT S actionnaire A, ' |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
417 |
u'S is Personne, NOT EXISTS(S eid %(S)s), ' |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
418 |
u'A is Societe', rql) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
419 |
self.assertEqual({'S': person.eid}, args) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
420 |
|
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
421 |
def test_unrelated_rql_o_linkto_o(self): |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
422 |
req = self.request() |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
423 |
soc = self.vreg['etypes'].etype_class('Societe')(req) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
424 |
self.vreg['etypes'].etype_class('Personne').fetch_attrs = () |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
425 |
person = req.create_entity('Personne', nom=u'florent') |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
426 |
lt_infos = {('actionnaire', 'object'): [person.eid]} |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
427 |
rql, args = soc.cw_unrelated_rql('dirige', 'Personne', 'object', |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
428 |
lt_infos=lt_infos) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
429 |
self.assertEqual(u'Any S ORDERBY S WHERE NOT S dirige A, ' |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
430 |
u'S is Personne, EXISTS(S eid %(S)s), ' |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
431 |
u'A is Societe', rql) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
432 |
self.assertEqual({'S': person.eid}, args) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
433 |
|
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
434 |
def test_unrelated_rql_s_linkto_s_no_info(self): |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
435 |
req = self.request() |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
436 |
person = self.vreg['etypes'].etype_class('Personne')(req) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
437 |
self.vreg['etypes'].etype_class('Personne').fetch_attrs = () |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
438 |
soc = req.create_entity('Societe', nom=u'logilab') |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
439 |
rql, args = person.cw_unrelated_rql('associe', 'Personne', 'subject') |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
440 |
self.assertEqual(u'Any O ORDERBY O WHERE O is Personne', rql) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
441 |
self.assertEqual({}, args) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
442 |
|
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
443 |
def test_unrelated_rql_s_linkto_s_unused_info(self): |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
444 |
req = self.request() |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
445 |
person = self.vreg['etypes'].etype_class('Personne')(req) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
446 |
self.vreg['etypes'].etype_class('Personne').fetch_attrs = () |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
447 |
other_p = req.create_entity('Personne', nom=u'titi') |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
448 |
lt_infos = {('dirige', 'subject'): [other_p.eid]} |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
449 |
rql, args = person.cw_unrelated_rql('associe', 'Personne', 'subject', |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
450 |
lt_infos=lt_infos) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
451 |
self.assertEqual(u'Any O ORDERBY O WHERE O is Personne', rql) |
64639bc94e25
[entity] restrict creation form field vocabulary using __linkto information (closes #1799997)
Florent Cayré <florent.cayre@gmail.com>
parents:
7827
diff
changeset
|
452 |
|
3241
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
453 |
def test_unrelated_base(self): |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
454 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
455 |
p = req.create_entity('Personne', nom=u'di mascio', prenom=u'adrien') |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
456 |
e = req.create_entity('Tag', name=u'x') |
0 | 457 |
related = [r.eid for r in e.tags] |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
458 |
self.assertEqual(related, []) |
1341 | 459 |
unrelated = [r[0] for r in e.unrelated('tags', 'Personne', 'subject')] |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
460 |
self.assertTrue(p.eid in unrelated) |
0 | 461 |
self.execute('SET X tags Y WHERE X is Tag, Y is Personne') |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
462 |
e = self.execute('Any X WHERE X is Tag').get_entity(0, 0) |
1341 | 463 |
unrelated = [r[0] for r in e.unrelated('tags', 'Personne', 'subject')] |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
464 |
self.assertFalse(p.eid in unrelated) |
0 | 465 |
|
3241
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
466 |
def test_unrelated_limit(self): |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
467 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
468 |
e = req.create_entity('Tag', name=u'x') |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
469 |
req.create_entity('Personne', nom=u'di mascio', prenom=u'adrien') |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
470 |
req.create_entity('Personne', nom=u'thenault', prenom=u'sylvain') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
471 |
self.assertEqual(len(e.unrelated('tags', 'Personne', 'subject', limit=1)), |
0 | 472 |
1) |
1640 | 473 |
|
3241
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
474 |
def test_unrelated_security(self): |
8161
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
475 |
rperms = self.schema['EmailAddress'].permissions['read'] |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
476 |
clear_cache(self.schema['EmailAddress'], 'get_groups') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
477 |
clear_cache(self.schema['EmailAddress'], 'get_rqlexprs') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
478 |
self.schema['EmailAddress'].permissions['read'] = ('managers', 'users', 'guests',) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
479 |
try: |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
480 |
email = self.execute('INSERT EmailAddress X: X address "hop"').get_entity(0, 0) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
481 |
rset = email.unrelated('use_email', 'CWUser', 'object') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
482 |
self.assertEqual([x.login for x in rset.entities()], [u'admin', u'anon']) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
483 |
user = self.request().user |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
484 |
rset = user.unrelated('use_email', 'EmailAddress', 'subject') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
485 |
self.assertEqual([x.address for x in rset.entities()], [u'hop']) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
486 |
req = self.request() |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
487 |
self.create_user(req, 'toto') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
488 |
self.login('toto') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
489 |
email = self.execute('Any X WHERE X eid %(x)s', {'x': email.eid}).get_entity(0, 0) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
490 |
rset = email.unrelated('use_email', 'CWUser', 'object') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
491 |
self.assertEqual([x.login for x in rset.entities()], ['toto']) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
492 |
user = self.request().user |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
493 |
rset = user.unrelated('use_email', 'EmailAddress', 'subject') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
494 |
self.assertEqual([x.address for x in rset.entities()], ['hop']) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
495 |
user = self.execute('Any X WHERE X login "admin"').get_entity(0, 0) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
496 |
rset = user.unrelated('use_email', 'EmailAddress', 'subject') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
497 |
self.assertEqual([x.address for x in rset.entities()], []) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
498 |
self.login('anon') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
499 |
email = self.execute('Any X WHERE X eid %(x)s', {'x': email.eid}).get_entity(0, 0) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
500 |
rset = email.unrelated('use_email', 'CWUser', 'object') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
501 |
self.assertEqual([x.login for x in rset.entities()], []) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
502 |
user = self.request().user |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
503 |
rset = user.unrelated('use_email', 'EmailAddress', 'subject') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
504 |
self.assertEqual([x.address for x in rset.entities()], []) |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
505 |
finally: |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
506 |
clear_cache(self.schema['EmailAddress'], 'get_groups') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
507 |
clear_cache(self.schema['EmailAddress'], 'get_rqlexprs') |
6f4229eb8178
[test] fix test broken by 8158:2ee254e74382 and add a test for that change
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7973
diff
changeset
|
508 |
self.schema['EmailAddress'].permissions['read'] = rperms |
3241
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
509 |
|
1a6f7a0e7dbd
unrelated_rql now considers relation's add perm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3136
diff
changeset
|
510 |
def test_unrelated_new_entity(self): |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
511 |
e = self.vreg['etypes'].etype_class('CWUser')(self.request()) |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1341
diff
changeset
|
512 |
unrelated = [r[0] for r in e.unrelated('in_group', 'CWGroup', 'subject')] |
0 | 513 |
# should be default groups but owners, i.e. managers, users, guests |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
514 |
self.assertEqual(len(unrelated), 3) |
0 | 515 |
|
516 |
def test_printable_value_string(self): |
|
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
517 |
e = self.request().create_entity('Card', title=u'rest test', content=u'du :eid:`1:*ReST*`', |
6415 | 518 |
content_format=u'text/rest') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
519 |
self.assertEqual(e.printable_value('content'), |
6427
c8a5ac2d1eaa
[schema / sources] store data sources as cubicweb entities
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6416
diff
changeset
|
520 |
'<p>du <a class="reference" href="http://testing.fr/cubicweb/cwsource/system">*ReST*</a></p>\n') |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
521 |
e.cw_attr_cache['content'] = 'du <em>html</em> <ref rql="CWUser X">users</ref>' |
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
522 |
e.cw_attr_cache['content_format'] = 'text/html' |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
523 |
self.assertEqual(e.printable_value('content'), |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1341
diff
changeset
|
524 |
'du <em>html</em> <a href="http://testing.fr/cubicweb/view?rql=CWUser%20X">users</a>') |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
525 |
e.cw_attr_cache['content'] = 'du *texte*' |
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
526 |
e.cw_attr_cache['content_format'] = 'text/plain' |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
527 |
self.assertEqual(e.printable_value('content'), |
6168
a52ea49434c8
[test/entity] fix test (following mtconverter 0.8+ plain text transform change)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
6099
diff
changeset
|
528 |
'<p>\ndu *texte*<br/>\n</p>') |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
529 |
e.cw_attr_cache['title'] = 'zou' |
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
530 |
e.cw_attr_cache['content'] = '''\ |
0 | 531 |
a title |
532 |
======= |
|
533 |
du :eid:`1:*ReST*`''' |
|
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
534 |
e.cw_attr_cache['content_format'] = 'text/rest' |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
535 |
self.assertEqual(e.printable_value('content', format='text/plain'), |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
536 |
e.cw_attr_cache['content']) |
0 | 537 |
|
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
538 |
e.cw_attr_cache['content'] = u'<b>yo (zou éà ;)</b>' |
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
539 |
e.cw_attr_cache['content_format'] = 'text/html' |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
540 |
self.assertEqual(e.printable_value('content', format='text/plain').strip(), |
6416
2ca48e45522e
fix bad merge
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6415
diff
changeset
|
541 |
u'**yo (zou éà ;)**') |
821
78cc1682c3a4
fix test on systems that don't have simpleTAL installed
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
748
diff
changeset
|
542 |
if HAS_TAL: |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
543 |
e.cw_attr_cache['content'] = '<h1 tal:content="self/title">titre</h1>' |
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
544 |
e.cw_attr_cache['content_format'] = 'text/cubicweb-page-template' |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
545 |
self.assertEqual(e.printable_value('content'), |
821
78cc1682c3a4
fix test on systems that don't have simpleTAL installed
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
748
diff
changeset
|
546 |
'<h1>zou</h1>') |
1640 | 547 |
|
0 | 548 |
|
549 |
def test_printable_value_bytes(self): |
|
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
550 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
551 |
e = req.create_entity('File', data=Binary('lambda x: 1'), data_format=u'text/x-python', |
3587 | 552 |
data_encoding=u'ascii', data_name=u'toto.py') |
4023
eae23c40627a
drop common subpackage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4015
diff
changeset
|
553 |
from cubicweb import mttransforms |
0 | 554 |
if mttransforms.HAS_PYGMENTS_TRANSFORMS: |
5631
e2e99cdf0899
[test] generated html differs w/ pygments version
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5582
diff
changeset
|
555 |
import pygments |
e2e99cdf0899
[test] generated html differs w/ pygments version
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5582
diff
changeset
|
556 |
if tuple(int(i) for i in pygments.__version__.split('.')[:2]) >= (1, 3): |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
557 |
self.assertEqual(e.printable_value('data'), |
5631
e2e99cdf0899
[test] generated html differs w/ pygments version
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5582
diff
changeset
|
558 |
'''<div class="highlight"><pre><span class="k">lambda</span> <span class="n">x</span><span class="p">:</span> <span class="mi">1</span> |
e2e99cdf0899
[test] generated html differs w/ pygments version
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5582
diff
changeset
|
559 |
</pre></div> |
e2e99cdf0899
[test] generated html differs w/ pygments version
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5582
diff
changeset
|
560 |
''') |
5634
e01cf2013bf1
stop being dumb please
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5631
diff
changeset
|
561 |
else: |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
562 |
self.assertEqual(e.printable_value('data'), |
5631
e2e99cdf0899
[test] generated html differs w/ pygments version
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5582
diff
changeset
|
563 |
'''<div class="highlight"><pre><span class="k">lambda</span> <span class="n">x</span><span class="p">:</span> <span class="mf">1</span> |
0 | 564 |
</pre></div> |
565 |
''') |
|
566 |
else: |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
567 |
self.assertEqual(e.printable_value('data'), |
0 | 568 |
'''<pre class="python"> |
569 |
<span style="color: #C00000;">lambda</span> <span style="color: #000000;">x</span><span style="color: #0000C0;">:</span> <span style="color: #0080C0;">1</span> |
|
570 |
</pre> |
|
571 |
''') |
|
1640 | 572 |
|
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
573 |
e = req.create_entity('File', data=Binary('*héhéhé*'), data_format=u'text/rest', |
3587 | 574 |
data_encoding=u'utf-8', data_name=u'toto.txt') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
575 |
self.assertEqual(e.printable_value('data'), |
0 | 576 |
u'<p><em>héhéhé</em></p>\n') |
577 |
||
578 |
def test_printable_value_bad_html(self): |
|
579 |
"""make sure we don't crash if we try to render invalid XHTML strings""" |
|
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
580 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
581 |
e = req.create_entity('Card', title=u'bad html', content=u'<div>R&D<br>', |
0 | 582 |
content_format=u'text/html') |
583 |
tidy = lambda x: x.replace('\n', '') |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
584 |
self.assertEqual(tidy(e.printable_value('content')), |
0 | 585 |
'<div>R&D<br/></div>') |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
586 |
e.cw_attr_cache['content'] = u'yo !! R&D <div> pas fermé' |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
587 |
self.assertEqual(tidy(e.printable_value('content')), |
0 | 588 |
u'yo !! R&D <div> pas fermé</div>') |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
589 |
e.cw_attr_cache['content'] = u'R&D' |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
590 |
self.assertEqual(tidy(e.printable_value('content')), u'R&D') |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
591 |
e.cw_attr_cache['content'] = u'R&D;' |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
592 |
self.assertEqual(tidy(e.printable_value('content')), u'R&D;') |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
593 |
e.cw_attr_cache['content'] = u'yo !! R&D <div> pas fermé' |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
594 |
self.assertEqual(tidy(e.printable_value('content')), |
6415 | 595 |
u'yo !! R&D <div> pas fermé</div>') |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
596 |
e.cw_attr_cache['content'] = u'été <div> été' |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
597 |
self.assertEqual(tidy(e.printable_value('content')), |
6416
2ca48e45522e
fix bad merge
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6415
diff
changeset
|
598 |
u'été <div> été</div>') |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
599 |
e.cw_attr_cache['content'] = u'C'est un exemple sérieux' |
6366 | 600 |
self.assertEqual(tidy(e.printable_value('content')), |
6416
2ca48e45522e
fix bad merge
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6415
diff
changeset
|
601 |
u"C'est un exemple sérieux") |
3587 | 602 |
# make sure valid xhtml is left untouched |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
603 |
e.cw_attr_cache['content'] = u'<div>R&D<br/></div>' |
6366 | 604 |
self.assertEqual(e.printable_value('content'), e.cw_attr_cache['content']) |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
605 |
e.cw_attr_cache['content'] = u'<div>été</div>' |
6366 | 606 |
self.assertEqual(e.printable_value('content'), e.cw_attr_cache['content']) |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
607 |
e.cw_attr_cache['content'] = u'été' |
6366 | 608 |
self.assertEqual(e.printable_value('content'), e.cw_attr_cache['content']) |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
609 |
e.cw_attr_cache['content'] = u'hop\r\nhop\nhip\rmomo' |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
610 |
self.assertEqual(e.printable_value('content'), u'hop\nhop\nhip\nmomo') |
3587 | 611 |
|
612 |
def test_printable_value_bad_html_ms(self): |
|
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
613 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
614 |
e = req.create_entity('Card', title=u'bad html', content=u'<div>R&D<br>', |
3587 | 615 |
content_format=u'text/html') |
616 |
tidy = lambda x: x.replace('\n', '') |
|
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
617 |
e.cw_attr_cache['content'] = u'<div x:foo="bar">ms orifice produces weird html</div>' |
6685
eeedb3575d25
[uilib] soup2xhtml uses now lxml.html.Cleaner
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
6427
diff
changeset
|
618 |
# Caution! current implementation of soup2xhtml strips first div element |
eeedb3575d25
[uilib] soup2xhtml uses now lxml.html.Cleaner
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
6427
diff
changeset
|
619 |
content = soup2xhtml(e.printable_value('content'), 'utf-8') |
eeedb3575d25
[uilib] soup2xhtml uses now lxml.html.Cleaner
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
6427
diff
changeset
|
620 |
self.assertMultiLineEqual(content, u'<div>ms orifice produces weird html</div>') |
1640 | 621 |
|
0 | 622 |
def test_fulltextindex(self): |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
623 |
e = self.vreg['etypes'].etype_class('File')(self.request()) |
6142
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
624 |
e.cw_attr_cache['description'] = 'du <em>html</em>' |
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
625 |
e.cw_attr_cache['description_format'] = 'text/html' |
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
626 |
e.cw_attr_cache['data'] = Binary('some <em>data</em>') |
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
627 |
e.cw_attr_cache['data_name'] = 'an html file' |
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
628 |
e.cw_attr_cache['data_format'] = 'text/html' |
8bc6eac1fac1
[session] cleanup hook / operation / entity edition api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6099
diff
changeset
|
629 |
e.cw_attr_cache['data_encoding'] = 'ascii' |
4015
4f8235204dda
some cw 3.6 api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3890
diff
changeset
|
630 |
e._cw.transaction_data = {} # XXX req should be a session |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
631 |
self.assertEqual(e.cw_adapt_to('IFTIndexable').get_words(), |
6416
2ca48e45522e
fix bad merge
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6415
diff
changeset
|
632 |
{'C': ['an', 'html', 'file', 'du', 'html', 'some', 'data']}) |
0 | 633 |
|
1640 | 634 |
|
0 | 635 |
def test_nonregr_relation_cache(self): |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
636 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
637 |
p1 = req.create_entity('Personne', nom=u'di mascio', prenom=u'adrien') |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
638 |
p2 = req.create_entity('Personne', nom=u'toto') |
0 | 639 |
self.execute('SET X evaluee Y WHERE X nom "di mascio", Y nom "toto"') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
640 |
self.assertEqual(p1.evaluee[0].nom, "toto") |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
641 |
self.assertTrue(not p1.reverse_evaluee) |
1640 | 642 |
|
0 | 643 |
def test_complete_relation(self): |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
644 |
session = self.session |
4835
13b0b96d7982
[repo] enhanced security handling: deprecates unsafe_execute, in favor of explicit read/write security control using the `enabled_security` context manager. Also code executed on the repository side is now unsafe by default.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4691
diff
changeset
|
645 |
eid = session.execute( |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
646 |
'INSERT TrInfo X: X comment "zou", X wf_info_for U, X from_state S1, X to_state S2 ' |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
647 |
'WHERE U login "admin", S1 name "activated", S2 name "deactivated"')[0][0] |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
648 |
trinfo = self.execute('Any X WHERE X eid %(x)s', {'x': eid}).get_entity(0, 0) |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
649 |
trinfo.complete() |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
650 |
self.assertTrue(isinstance(trinfo.cw_attr_cache['creation_date'], datetime)) |
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
651 |
self.assertTrue(trinfo.cw_relation_cached('from_state', 'subject')) |
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
652 |
self.assertTrue(trinfo.cw_relation_cached('to_state', 'subject')) |
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
653 |
self.assertTrue(trinfo.cw_relation_cached('wf_info_for', 'subject')) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
654 |
self.assertEqual(trinfo.by_transition, ()) |
0 | 655 |
|
656 |
def test_request_cache(self): |
|
657 |
req = self.request() |
|
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
658 |
user = self.execute('CWUser X WHERE X login "admin"', req=req).get_entity(0, 0) |
0 | 659 |
state = user.in_state[0] |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
660 |
samestate = self.execute('State X WHERE X name "activated"', req=req).get_entity(0, 0) |
7791
31bb51ea5485
[deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7554
diff
changeset
|
661 |
self.assertTrue(state is samestate) |
0 | 662 |
|
663 |
def test_rest_path(self): |
|
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
664 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
665 |
note = req.create_entity('Note', type=u'z') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
666 |
self.assertEqual(note.rest_path(), 'note/%s' % note.eid) |
0 | 667 |
# unique attr |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
668 |
tag = req.create_entity('Tag', name=u'x') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
669 |
self.assertEqual(tag.rest_path(), 'tag/x') |
0 | 670 |
# test explicit rest_attr |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
671 |
person = req.create_entity('Personne', prenom=u'john', nom=u'doe') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
672 |
self.assertEqual(person.rest_path(), 'personne/doe') |
0 | 673 |
# ambiguity test |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
674 |
person2 = req.create_entity('Personne', prenom=u'remi', nom=u'doe') |
7293
97505b798975
[entity 3.13 api] rename clear_all_caches into cw_clear_all_cache
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7244
diff
changeset
|
675 |
person.cw_clear_all_caches() |
8286
8b0146e31baa
[entity url] rest path fallback should be the url used as cwuri. Closes #2186039
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8199
diff
changeset
|
676 |
self.assertEqual(person.rest_path(), unicode(person.eid)) |
8b0146e31baa
[entity url] rest path fallback should be the url used as cwuri. Closes #2186039
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8199
diff
changeset
|
677 |
self.assertEqual(person2.rest_path(), unicode(person2.eid)) |
0 | 678 |
# unique attr with None value (wikiid in this case) |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
679 |
card1 = req.create_entity('Card', title=u'hop') |
8286
8b0146e31baa
[entity url] rest path fallback should be the url used as cwuri. Closes #2186039
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8199
diff
changeset
|
680 |
self.assertEqual(card1.rest_path(), unicode(card1.eid)) |
6099
b22a4a3895df
work around Apache's mod_proxy limitation with special chars in URLs by not using Rest urls when such a case is detected
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
5768
diff
changeset
|
681 |
# don't use rest if we have /, ? or & in the path (breaks mod_proxy) |
b22a4a3895df
work around Apache's mod_proxy limitation with special chars in URLs by not using Rest urls when such a case is detected
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
5768
diff
changeset
|
682 |
card2 = req.create_entity('Card', title=u'pod', wikiid=u'zo/bi') |
8286
8b0146e31baa
[entity url] rest path fallback should be the url used as cwuri. Closes #2186039
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8199
diff
changeset
|
683 |
self.assertEqual(card2.rest_path(), unicode(card2.eid)) |
6099
b22a4a3895df
work around Apache's mod_proxy limitation with special chars in URLs by not using Rest urls when such a case is detected
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
5768
diff
changeset
|
684 |
card3 = req.create_entity('Card', title=u'pod', wikiid=u'zo&bi') |
8286
8b0146e31baa
[entity url] rest path fallback should be the url used as cwuri. Closes #2186039
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8199
diff
changeset
|
685 |
self.assertEqual(card3.rest_path(), unicode(card3.eid)) |
6099
b22a4a3895df
work around Apache's mod_proxy limitation with special chars in URLs by not using Rest urls when such a case is detected
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
5768
diff
changeset
|
686 |
card4 = req.create_entity('Card', title=u'pod', wikiid=u'zo?bi') |
8286
8b0146e31baa
[entity url] rest path fallback should be the url used as cwuri. Closes #2186039
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8199
diff
changeset
|
687 |
self.assertEqual(card4.rest_path(), unicode(card4.eid)) |
6415 | 688 |
|
0 | 689 |
|
690 |
def test_set_attributes(self): |
|
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
691 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
692 |
person = req.create_entity('Personne', nom=u'di mascio', prenom=u'adrien') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
693 |
self.assertEqual(person.prenom, u'adrien') |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
694 |
self.assertEqual(person.nom, u'di mascio') |
0 | 695 |
person.set_attributes(prenom=u'sylvain', nom=u'thénault') |
5174
78438ad513ca
#759035: Automate addition of eid cachekey in RQL analysis
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
696 |
person = self.execute('Personne P').get_entity(0, 0) # XXX retreival needed ? |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
697 |
self.assertEqual(person.prenom, u'sylvain') |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
698 |
self.assertEqual(person.nom, u'thénault') |
0 | 699 |
|
7308
ff8d6ae076c4
[entity] make set_relations() accept entities and eids (closes #1631391)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7302
diff
changeset
|
700 |
def test_set_relations(self): |
ff8d6ae076c4
[entity] make set_relations() accept entities and eids (closes #1631391)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7302
diff
changeset
|
701 |
req = self.request() |
ff8d6ae076c4
[entity] make set_relations() accept entities and eids (closes #1631391)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7302
diff
changeset
|
702 |
person = req.create_entity('Personne', nom=u'chauvat', prenom=u'nicolas') |
ff8d6ae076c4
[entity] make set_relations() accept entities and eids (closes #1631391)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7302
diff
changeset
|
703 |
note = req.create_entity('Note', type=u'x') |
ff8d6ae076c4
[entity] make set_relations() accept entities and eids (closes #1631391)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7302
diff
changeset
|
704 |
note.set_relations(ecrit_par=person) |
ff8d6ae076c4
[entity] make set_relations() accept entities and eids (closes #1631391)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7302
diff
changeset
|
705 |
note = req.create_entity('Note', type=u'y') |
ff8d6ae076c4
[entity] make set_relations() accept entities and eids (closes #1631391)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7302
diff
changeset
|
706 |
note.set_relations(ecrit_par=person.eid) |
ff8d6ae076c4
[entity] make set_relations() accept entities and eids (closes #1631391)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7302
diff
changeset
|
707 |
self.assertEqual(len(person.reverse_ecrit_par), 2) |
ff8d6ae076c4
[entity] make set_relations() accept entities and eids (closes #1631391)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7302
diff
changeset
|
708 |
|
1905
9c96dd7cc624
[tests] fix test after absolute_url got changed for external entities
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1640
diff
changeset
|
709 |
def test_metainformation_and_external_absolute_url(self): |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
710 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
711 |
note = req.create_entity('Note', type=u'z') |
5557
1a534c596bff
[entity] continue cleanup of Entity/AnyEntity namespace
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
712 |
metainf = note.cw_metainformation() |
7554 | 713 |
self.assertEqual(metainf, {'source': {'type': 'native', 'uri': 'system', |
714 |
'use-cwuri-as-url': False}, |
|
715 |
'type': u'Note', 'extid': None}) |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
716 |
self.assertEqual(note.absolute_url(), 'http://testing.fr/cubicweb/note/%s' % note.eid) |
0 | 717 |
metainf['source'] = metainf['source'].copy() |
718 |
metainf['source']['base-url'] = 'http://cubicweb2.com/' |
|
1905
9c96dd7cc624
[tests] fix test after absolute_url got changed for external entities
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1640
diff
changeset
|
719 |
metainf['extid'] = 1234 |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
720 |
self.assertEqual(note.absolute_url(), 'http://cubicweb2.com/note/1234') |
1640 | 721 |
|
2125
19861294506f
https://www.logilab.net/cwo/ticket/343724
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
722 |
def test_absolute_url_empty_field(self): |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
723 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
724 |
card = req.create_entity('Card', wikiid=u'', title=u'test') |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
725 |
self.assertEqual(card.absolute_url(), |
8286
8b0146e31baa
[entity url] rest path fallback should be the url used as cwuri. Closes #2186039
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8199
diff
changeset
|
726 |
'http://testing.fr/cubicweb/%s' % card.eid) |
2125
19861294506f
https://www.logilab.net/cwo/ticket/343724
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
727 |
|
3669
4eb33ee29c84
nicer create_entity implementation (and test)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3587
diff
changeset
|
728 |
def test_create_entity(self): |
4031
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
729 |
req = self.request() |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
730 |
p1 = req.create_entity('Personne', nom=u'fayolle', prenom=u'alexandre') |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
731 |
p2 = req.create_entity('Personne', nom=u'campeas', prenom=u'aurelien') |
56f4d4f7f86f
test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
732 |
note = req.create_entity('Note', type=u'z') |
3669
4eb33ee29c84
nicer create_entity implementation (and test)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3587
diff
changeset
|
733 |
req = self.request() |
4eb33ee29c84
nicer create_entity implementation (and test)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3587
diff
changeset
|
734 |
p = req.create_entity('Personne', nom=u'di mascio', prenom=u'adrien', |
3670
b7ec030a5e10
allow to link to multiple entities
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3669
diff
changeset
|
735 |
connait=p1, evaluee=[p1, p2], |
3669
4eb33ee29c84
nicer create_entity implementation (and test)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3587
diff
changeset
|
736 |
reverse_ecrit_par=note) |
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
737 |
self.assertEqual(p.nom, 'di mascio') |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
738 |
self.assertEqual([c.nom for c in p.connait], ['fayolle']) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
739 |
self.assertEqual(sorted([c.nom for c in p.evaluee]), ['campeas', 'fayolle']) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6168
diff
changeset
|
740 |
self.assertEqual([c.type for c in p.reverse_ecrit_par], ['z']) |
3669
4eb33ee29c84
nicer create_entity implementation (and test)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3587
diff
changeset
|
741 |
|
4eb33ee29c84
nicer create_entity implementation (and test)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3587
diff
changeset
|
742 |
|
3670
b7ec030a5e10
allow to link to multiple entities
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3669
diff
changeset
|
743 |
|
0 | 744 |
if __name__ == '__main__': |
745 |
from logilab.common.testlib import unittest_main |
|
746 |
unittest_main() |
|
747 |