author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Fri, 26 Feb 2010 13:19:14 +0100 | |
branch | stable |
changeset 4719 | aaed3f813ef8 |
parent 4677 | c701aac36f5c |
child 4726 | 1357833f5595 |
permissions | -rw-r--r-- |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1797
diff
changeset
|
1 |
""" |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1797
diff
changeset
|
2 |
|
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1797
diff
changeset
|
3 |
:organization: Logilab |
4212
ab6573088b4a
update copyright: welcome 2010
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3930
diff
changeset
|
4 |
:copyright: 2001-2010 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1797
diff
changeset
|
5 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1797
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1797
diff
changeset
|
7 |
""" |
3930
c0ae3148b893
fix test: required to fake parent form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3771
diff
changeset
|
8 |
from logilab.common.testlib import unittest_main, mock_object |
3757 | 9 |
from logilab.common.compat import any |
3722 | 10 |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2661
diff
changeset
|
11 |
from cubicweb.devtools.testlib import CubicWebTC |
4080 | 12 |
from cubicweb.web import uicfg |
1359 | 13 |
from cubicweb.web.formwidgets import AutoCompletionWidget |
3722 | 14 |
|
4080 | 15 |
AFFK = uicfg.autoform_field_kwargs |
16 |
AFS = uicfg.autoform_section |
|
1287 | 17 |
|
4080 | 18 |
def rbc(entity, formtype, section): |
4570
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
19 |
if section in ('attributes', 'metadata', 'hidden'): |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
20 |
permission = 'update' |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
21 |
else: |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
22 |
permission = 'add' |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
23 |
return [(rschema.type, x) for rschema, tschemas, x in AFS.relations_by_section(entity, formtype, section, permission)] |
1287 | 24 |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2661
diff
changeset
|
25 |
class AutomaticEntityFormTC(CubicWebTC): |
1287 | 26 |
|
1359 | 27 |
def test_custom_widget(self): |
4080 | 28 |
AFFK.tag_subject_of(('CWUser', 'login', '*'), |
29 |
{'widget': AutoCompletionWidget(autocomplete_initfunc='get_logins')}) |
|
2661
f8df42c9da6b
[vreg api update] remove some deprecation warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2643
diff
changeset
|
30 |
form = self.vreg['forms'].select('edition', self.request(), |
f8df42c9da6b
[vreg api update] remove some deprecation warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2643
diff
changeset
|
31 |
entity=self.user()) |
4172
4d4cef034eec
all web tests OK
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4080
diff
changeset
|
32 |
field = form.field_by_name('login', 'subject') |
1359 | 33 |
self.assertIsInstance(field.widget, AutoCompletionWidget) |
4080 | 34 |
AFFK.del_rtag('CWUser', 'login', '*', 'subject') |
1533 | 35 |
|
1359 | 36 |
|
2637
07103211e511
R [test] update and fix deprecation warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
37 |
def test_cwuser_relations_by_category(self): |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2661
diff
changeset
|
38 |
e = self.vreg['etypes'].etype_class('CWUser')(self.request()) |
2637
07103211e511
R [test] update and fix deprecation warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
39 |
# see custom configuration in views.cwuser |
4080 | 40 |
self.assertEquals(rbc(e, 'main', 'attributes'), |
1287 | 41 |
[('login', 'subject'), |
42 |
('upassword', 'subject'), |
|
4080 | 43 |
('firstname', 'subject'), |
44 |
('surname', 'subject'), |
|
1287 | 45 |
('in_group', 'subject'), |
46 |
('eid', 'subject'), |
|
47 |
]) |
|
4080 | 48 |
self.assertListEquals(rbc(e, 'muledit', 'attributes'), |
49 |
[('login', 'subject'), |
|
50 |
('upassword', 'subject'), |
|
51 |
('in_group', 'subject'), |
|
52 |
('eid', 'subject'), |
|
1287 | 53 |
]) |
4080 | 54 |
self.assertListEquals(rbc(e, 'main', 'metadata'), |
1287 | 55 |
[('last_login_time', 'subject'), |
3771 | 56 |
('modification_date', 'subject'), |
1287 | 57 |
('created_by', 'subject'), |
58 |
('creation_date', 'subject'), |
|
2637
07103211e511
R [test] update and fix deprecation warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
59 |
('cwuri', 'subject'), |
1287 | 60 |
('owned_by', 'subject'), |
61 |
('bookmarked_by', 'object'), |
|
1533 | 62 |
]) |
4080 | 63 |
self.assertListEquals(rbc(e, 'main', 'relations'), |
1797
c2a80130b06d
fix some web tests, adjusts rtags
sylvain.thenault@logilab.fr
parents:
1739
diff
changeset
|
64 |
[('primary_email', 'subject'), |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2661
diff
changeset
|
65 |
('custom_workflow', 'subject'), |
1797
c2a80130b06d
fix some web tests, adjusts rtags
sylvain.thenault@logilab.fr
parents:
1739
diff
changeset
|
66 |
('connait', 'subject'), |
1287 | 67 |
('checked_by', 'object'), |
68 |
]) |
|
4080 | 69 |
self.assertListEquals(rbc(e, 'main', 'inlined'), |
70 |
[('use_email', 'subject'), |
|
71 |
]) |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
72 |
# owned_by is defined both as subject and object relations on CWUser |
4570
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
73 |
self.assertListEquals(sorted(rbc(e, 'main', 'hidden')), |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
74 |
sorted([('has_text', 'subject'), |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
75 |
('identity', 'subject'), |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
76 |
('tags', 'object'), |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
77 |
('for_user', 'object'), |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
78 |
('created_by', 'object'), |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
79 |
('wf_info_for', 'object'), |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
80 |
('owned_by', 'object'), |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
81 |
('identity', 'object'), |
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
82 |
])) |
1298 | 83 |
|
84 |
def test_inlined_view(self): |
|
4080 | 85 |
self.failUnless('main_inlined' in AFS.etype_get('CWUser', 'use_email', 'subject', 'EmailAddress')) |
86 |
self.failIf('main_inlined' in AFS.etype_get('CWUser', 'primary_email', 'subject', 'EmailAddress')) |
|
87 |
self.failUnless('main_relations' in AFS.etype_get('CWUser', 'primary_email', 'subject', 'EmailAddress')) |
|
1533 | 88 |
|
1287 | 89 |
def test_personne_relations_by_category(self): |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2661
diff
changeset
|
90 |
e = self.vreg['etypes'].etype_class('Personne')(self.request()) |
4080 | 91 |
self.assertListEquals(rbc(e, 'main', 'attributes'), |
1287 | 92 |
[('nom', 'subject'), |
4080 | 93 |
('prenom', 'subject'), |
1287 | 94 |
('sexe', 'subject'), |
95 |
('promo', 'subject'), |
|
96 |
('titre', 'subject'), |
|
97 |
('ass', 'subject'), |
|
98 |
('web', 'subject'), |
|
99 |
('tel', 'subject'), |
|
100 |
('fax', 'subject'), |
|
101 |
('datenaiss', 'subject'), |
|
102 |
('test', 'subject'), |
|
103 |
('description', 'subject'), |
|
4080 | 104 |
('salary', 'subject'), |
105 |
('eid', 'subject') |
|
1287 | 106 |
]) |
4080 | 107 |
self.assertListEquals(rbc(e, 'muledit', 'attributes'), |
108 |
[('nom', 'subject'), |
|
109 |
('eid', 'subject') |
|
110 |
]) |
|
111 |
self.assertListEquals(rbc(e, 'main', 'metadata'), |
|
3771 | 112 |
[('creation_date', 'subject'), |
2637
07103211e511
R [test] update and fix deprecation warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
113 |
('cwuri', 'subject'), |
1287 | 114 |
('modification_date', 'subject'), |
3771 | 115 |
('created_by', 'subject'), |
1287 | 116 |
('owned_by', 'subject'), |
1533 | 117 |
]) |
4080 | 118 |
self.assertListEquals(rbc(e, 'main', 'relations'), |
1287 | 119 |
[('travaille', 'subject'), |
120 |
('connait', 'object') |
|
121 |
]) |
|
4080 | 122 |
self.assertListEquals(rbc(e, 'main', 'hidden'), |
4570
ede247bbbf62
follow yams api change: attributes permissions are now defined for
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
123 |
[('has_text', 'subject'), |
1300 | 124 |
('identity', 'subject'), |
125 |
('identity', 'object'), |
|
1287 | 126 |
]) |
1533 | 127 |
|
1300 | 128 |
def test_edition_form(self): |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
129 |
rset = self.execute('CWUser X LIMIT 1') |
2661
f8df42c9da6b
[vreg api update] remove some deprecation warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2643
diff
changeset
|
130 |
form = self.vreg['forms'].select('edition', rset.req, rset=rset, |
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
131 |
row=0, col=0) |
1300 | 132 |
# should be also selectable by specifying entity |
2661
f8df42c9da6b
[vreg api update] remove some deprecation warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2643
diff
changeset
|
133 |
self.vreg['forms'].select('edition', rset.req, |
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
134 |
entity=rset.get_entity(0, 0)) |
1300 | 135 |
self.failIf(any(f for f in form.fields if f is None)) |
1533 | 136 |
|
137 |
||
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2661
diff
changeset
|
138 |
class FormViewsTC(CubicWebTC): |
1300 | 139 |
def test_delete_conf_formview(self): |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
140 |
rset = self.execute('CWGroup X') |
1300 | 141 |
self.view('deleteconf', rset, template=None).source |
1533 | 142 |
|
1300 | 143 |
def test_automatic_edition_formview(self): |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
144 |
rset = self.execute('CWUser X') |
1300 | 145 |
self.view('edition', rset, row=0, template=None).source |
1533 | 146 |
|
1300 | 147 |
def test_automatic_edition_formview(self): |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
148 |
rset = self.execute('CWUser X') |
1300 | 149 |
self.view('copy', rset, row=0, template=None).source |
1533 | 150 |
|
1300 | 151 |
def test_automatic_creation_formview(self): |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
152 |
self.view('creation', None, etype='CWUser', template=None).source |
1533 | 153 |
|
1300 | 154 |
def test_automatic_muledit_formview(self): |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
155 |
rset = self.execute('CWUser X') |
1300 | 156 |
self.view('muledit', rset, template=None).source |
1533 | 157 |
|
1300 | 158 |
def test_automatic_reledit_formview(self): |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
159 |
rset = self.execute('CWUser X') |
1300 | 160 |
self.view('reledit', rset, row=0, rtype='login', template=None).source |
1533 | 161 |
|
1300 | 162 |
def test_automatic_inline_edit_formview(self): |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
163 |
geid = self.execute('CWGroup X LIMIT 1')[0][0] |
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
164 |
rset = self.execute('CWUser X LIMIT 1') |
3361
be0605689fed
[tests] fix inline-creation/edition unit tests
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2920
diff
changeset
|
165 |
self.view('inline-edition', rset, row=0, col=0, rtype='in_group', |
4677
c701aac36f5c
[test] inline-creation requires petype argument to be selectable. Fix arguments order to make it clearer that 'template' is an argument of the test class .view method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
166 |
peid=geid, role='object', i18nctx='', pform=MOCKPFORM, |
c701aac36f5c
[test] inline-creation requires petype argument to be selectable. Fix arguments order to make it clearer that 'template' is an argument of the test class .view method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
167 |
template=None).source |
1533 | 168 |
|
1300 | 169 |
def test_automatic_inline_creation_formview(self): |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
170 |
geid = self.execute('CWGroup X LIMIT 1')[0][0] |
3361
be0605689fed
[tests] fix inline-creation/edition unit tests
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2920
diff
changeset
|
171 |
self.view('inline-creation', None, etype='CWUser', rtype='in_group', |
4677
c701aac36f5c
[test] inline-creation requires petype argument to be selectable. Fix arguments order to make it clearer that 'template' is an argument of the test class .view method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
172 |
peid=geid, petype='CWGroup', i18nctx='', role='object', pform=MOCKPFORM, |
c701aac36f5c
[test] inline-creation requires petype argument to be selectable. Fix arguments order to make it clearer that 'template' is an argument of the test class .view method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4570
diff
changeset
|
173 |
template=None) |
1300 | 174 |
|
3930
c0ae3148b893
fix test: required to fake parent form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3771
diff
changeset
|
175 |
MOCKPFORM = mock_object(form_previous_values={}, form_valerror=None) |
1533 | 176 |
|
1287 | 177 |
if __name__ == '__main__': |
178 |
unittest_main() |
|
2637
07103211e511
R [test] update and fix deprecation warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
179 |