author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Tue, 26 May 2009 19:45:39 +0200 | |
branch | stable |
changeset 1947 | 8696403e5324 |
parent 1843 | 646c2dd1f03e |
child 1977 | 606923dff11b |
permissions | -rw-r--r-- |
866
6fdb029663ca
use EnvBasedTC since we need to access the schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
848
diff
changeset
|
1 |
from logilab.common.testlib import unittest_main, mock_object |
907 | 2 |
from cubicweb import Binary |
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
868
diff
changeset
|
3 |
from cubicweb.devtools.testlib import WebTest |
1739 | 4 |
from cubicweb.web.form import EntityFieldsForm, FieldsForm |
5 |
from cubicweb.web.formrenderers import FormRenderer |
|
1111
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
6 |
from cubicweb.web.formfields import (IntField, StringField, RichTextField, |
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
7 |
DateTimeField, DateTimePicker, |
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
8 |
FileField, EditableFileField) |
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
9 |
from cubicweb.web.formwidgets import PasswordInput |
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
10 |
from cubicweb.web.views.workflow import ChangeStateForm |
845 | 11 |
|
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
868
diff
changeset
|
12 |
|
1359 | 13 |
class FieldsFormTC(WebTest): |
14 |
||
15 |
def test_form_field_format(self): |
|
16 |
form = FieldsForm(self.request(), None) |
|
17 |
self.assertEquals(form.form_field_format(None), 'text/html') |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
18 |
self.execute('INSERT CWProperty X: X pkey "ui.default-text-format", X value "text/rest", X for_user U WHERE U login "admin"') |
1359 | 19 |
self.commit() |
20 |
self.assertEquals(form.form_field_format(None), 'text/rest') |
|
21 |
||
22 |
||
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
868
diff
changeset
|
23 |
class EntityFieldsFormTC(WebTest): |
845 | 24 |
|
847
27c4ebe90d03
prefixed form methods to avoid potential conflicts with field names, button related method, a bit more serious renderer
sylvain.thenault@logilab.fr
parents:
845
diff
changeset
|
25 |
def setUp(self): |
866
6fdb029663ca
use EnvBasedTC since we need to access the schema
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
848
diff
changeset
|
26 |
super(EntityFieldsFormTC, self).setUp() |
868
5d993a0c794c
update test, use a DateTimePicker widget
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
866
diff
changeset
|
27 |
self.req = self.request() |
5d993a0c794c
update test, use a DateTimePicker widget
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
866
diff
changeset
|
28 |
self.entity = self.user(self.req) |
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
29 |
self.renderer = FormRenderer() |
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
30 |
|
1345 | 31 |
def test_form_field_vocabulary_unrelated(self): |
32 |
b = self.add_entity('BlogEntry', title=u'di mascii code', content=u'a best-seller') |
|
33 |
t = self.add_entity('Tag', name=u'x') |
|
34 |
form1 = EntityFieldsForm(self.request(), None, entity=t) |
|
35 |
unrelated = [reid for rview, reid in form1.subject_relation_vocabulary('tags')] |
|
36 |
self.failUnless(b.eid in unrelated, unrelated) |
|
37 |
form2 = EntityFieldsForm(self.request(), None, entity=b) |
|
38 |
unrelated = [reid for rview, reid in form2.object_relation_vocabulary('tags')] |
|
39 |
self.failUnless(t.eid in unrelated, unrelated) |
|
40 |
self.execute('SET X tags Y WHERE X is Tag, Y is BlogEntry') |
|
41 |
unrelated = [reid for rview, reid in form1.subject_relation_vocabulary('tags')] |
|
42 |
self.failIf(b.eid in unrelated, unrelated) |
|
43 |
unrelated = [reid for rview, reid in form2.object_relation_vocabulary('tags')] |
|
44 |
self.failIf(t.eid in unrelated, unrelated) |
|
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
45 |
|
1345 | 46 |
def test_form_field_vocabulary_new_entity(self): |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
47 |
e = self.etype_instance('CWUser') |
1345 | 48 |
form = EntityFieldsForm(self.request(), None, entity=e) |
49 |
unrelated = [rview for rview, reid in form.subject_relation_vocabulary('in_group')] |
|
50 |
# should be default groups but owners, i.e. managers, users, guests |
|
51 |
self.assertEquals(unrelated, [u'guests', u'managers', u'users']) |
|
52 |
||
1359 | 53 |
def test_subject_in_state_vocabulary(self): |
54 |
# on a new entity |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
55 |
e = self.etype_instance('CWUser') |
1359 | 56 |
form = EntityFieldsForm(self.request(), None, entity=e) |
57 |
states = list(form.subject_in_state_vocabulary('in_state')) |
|
58 |
self.assertEquals(len(states), 1) |
|
59 |
self.assertEquals(states[0][0], u'activated') # list of (combobox view, state eid) |
|
60 |
# on an existant entity |
|
61 |
e = self.user() |
|
62 |
form = EntityFieldsForm(self.request(), None, entity=e) |
|
63 |
states = list(form.subject_in_state_vocabulary('in_state')) |
|
64 |
self.assertEquals(len(states), 1) |
|
65 |
self.assertEquals(states[0][0], u'deactivated') # list of (combobox view, state eid) |
|
66 |
||
1843
646c2dd1f03e
#343290: inputs don't use value specified in URL
sylvain.thenault@logilab.fr
parents:
1793
diff
changeset
|
67 |
def test_consider_req_form_params(self): |
646c2dd1f03e
#343290: inputs don't use value specified in URL
sylvain.thenault@logilab.fr
parents:
1793
diff
changeset
|
68 |
e = self.etype_instance('CWUser') |
646c2dd1f03e
#343290: inputs don't use value specified in URL
sylvain.thenault@logilab.fr
parents:
1793
diff
changeset
|
69 |
e.eid = 'A' |
646c2dd1f03e
#343290: inputs don't use value specified in URL
sylvain.thenault@logilab.fr
parents:
1793
diff
changeset
|
70 |
form = EntityFieldsForm(self.request(login=u'toto'), None, entity=e) |
646c2dd1f03e
#343290: inputs don't use value specified in URL
sylvain.thenault@logilab.fr
parents:
1793
diff
changeset
|
71 |
field = StringField(name='login', eidparam=True) |
646c2dd1f03e
#343290: inputs don't use value specified in URL
sylvain.thenault@logilab.fr
parents:
1793
diff
changeset
|
72 |
form.append_field(field) |
646c2dd1f03e
#343290: inputs don't use value specified in URL
sylvain.thenault@logilab.fr
parents:
1793
diff
changeset
|
73 |
form.form_build_context({}) |
646c2dd1f03e
#343290: inputs don't use value specified in URL
sylvain.thenault@logilab.fr
parents:
1793
diff
changeset
|
74 |
self.assertEquals(form.form_field_display_value(field, {}), 'toto') |
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
75 |
|
1947
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
76 |
|
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
77 |
def test_linkto_field_duplication(self): |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
78 |
e = self.etype_instance('CWUser') |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
79 |
e.eid = 'A' |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
80 |
e.req = self.req |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
81 |
geid = self.execute('CWGroup X WHERE X name "users"')[0][0] |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
82 |
self.req.form['__linkto'] = 'in_group:%s:subject' % geid |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
83 |
form = self.vreg.select_object('forms', 'edition', self.req, None, entity=e) |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
84 |
form.content_type = 'text/html' |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
85 |
pageinfo = self._check_html(form.form_render(), form, template=None) |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
86 |
inputs = pageinfo.find_tag('select', False) |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
87 |
self.failUnless(any(attrs for t, attrs in inputs if attrs.get('name') == 'in_group:A')) |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
88 |
inputs = pageinfo.find_tag('input', False) |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
89 |
self.failIf(any(attrs for t, attrs in inputs if attrs.get('name') == '__linkto')) |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
90 |
|
1181
620ec8e6ae19
cleanup, various fix to get something working
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
91 |
# form view tests ######################################################### |
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
92 |
|
1181
620ec8e6ae19
cleanup, various fix to get something working
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
93 |
def test_massmailing_formview(self): |
620ec8e6ae19
cleanup, various fix to get something working
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
94 |
self.execute('INSERT EmailAddress X: X address L + "@cubicweb.org", ' |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
95 |
'U use_email X WHERE U is CWUser, U login L') |
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
96 |
rset = self.execute('CWUser X') |
1181
620ec8e6ae19
cleanup, various fix to get something working
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
97 |
self.view('massmailing', rset, template=None) |
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
98 |
|
1181
620ec8e6ae19
cleanup, various fix to get something working
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
99 |
|
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
100 |
# form tests ############################################################## |
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
101 |
|
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
868
diff
changeset
|
102 |
def test_form_inheritance(self): |
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
103 |
class CustomChangeStateForm(ChangeStateForm): |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
104 |
hello = IntField(name='youlou') |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
105 |
creation_date = DateTimeField(widget=DateTimePicker) |
894 | 106 |
form = CustomChangeStateForm(self.req, redirect_path='perdu.com', |
107 |
entity=self.entity) |
|
1147 | 108 |
form.form_render(state=123, trcomment=u'') |
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
868
diff
changeset
|
109 |
|
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
868
diff
changeset
|
110 |
def test_change_state_form(self): |
894 | 111 |
form = ChangeStateForm(self.req, redirect_path='perdu.com', |
112 |
entity=self.entity) |
|
1147 | 113 |
form.form_render(state=123, trcomment=u'') |
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
114 |
|
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
115 |
# fields tests ############################################################ |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
116 |
|
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
117 |
def _render_entity_field(self, name, form): |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
118 |
form.form_build_context({}) |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
119 |
return form.field_by_name(name).render(form, self.renderer) |
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
120 |
|
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
121 |
def _test_richtextfield(self, expected): |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
122 |
class RTFForm(EntityFieldsForm): |
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
123 |
description = RichTextField() |
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
124 |
state = self.execute('State X WHERE X name "activated", X state_of ET, ET name "CWUser"').get_entity(0, 0) |
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
125 |
form = RTFForm(self.req, redirect_path='perdu.com', entity=state) |
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
126 |
# make it think it can use fck editor anyway |
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
127 |
form.form_field_format = lambda x: 'text/html' |
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
128 |
self.assertTextEquals(self._render_entity_field('description', form), |
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
129 |
expected % {'eid': state.eid}) |
1111
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
130 |
|
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
131 |
|
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
132 |
def test_richtextfield_1(self): |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
133 |
self.req.use_fckeditor = lambda: False |
1793
fdac26e003e7
fix vertical alignment pb. with descr. format list and textarea inputs
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1739
diff
changeset
|
134 |
self._test_richtextfield('''<select id="description_format:%(eid)s" name="description_format:%(eid)s" size="1" style="display: block" tabindex="0"> |
1300 | 135 |
<option value="text/cubicweb-page-template">text/cubicweb-page-template</option> |
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
136 |
<option value="text/html">text/html</option> |
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
137 |
<option value="text/plain">text/plain</option> |
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
138 |
<option selected="selected" value="text/rest">text/rest</option> |
1654 | 139 |
</select><textarea cols="60" id="description:%(eid)s" name="description:%(eid)s" onkeypress="autogrow(this)" rows="5" tabindex="1"/>''') |
1111
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
140 |
|
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
141 |
|
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
142 |
def test_richtextfield_2(self): |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
143 |
self.req.use_fckeditor = lambda: True |
1793
fdac26e003e7
fix vertical alignment pb. with descr. format list and textarea inputs
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1739
diff
changeset
|
144 |
self._test_richtextfield('<input name="description_format:%(eid)s" style="display: block" type="hidden" value="text/rest"/><textarea cols="80" cubicweb:type="wysiwyg" id="description:%(eid)s" name="description:%(eid)s" onkeypress="autogrow(this)" rows="20" tabindex="0"/>') |
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
145 |
|
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
146 |
|
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
147 |
def test_filefield(self): |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
148 |
class FFForm(EntityFieldsForm): |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
149 |
data = FileField(format_field=StringField(name='data_format'), |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
150 |
encoding_field=StringField(name='data_encoding')) |
1654 | 151 |
file = self.add_entity('File', name=u"pouet.txt", data_encoding=u'UTF-8', |
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
152 |
data=Binary('new widgets system')) |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
153 |
form = FFForm(self.req, redirect_path='perdu.com', entity=file) |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
154 |
self.assertTextEquals(self._render_entity_field('data', form), |
1654 | 155 |
'''<input id="data:%(eid)s" name="data:%(eid)s" tabindex="0" type="file" value=""/> |
1111
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
156 |
<a href="javascript: toggleVisibility('data:%(eid)s-advanced')" title="show advanced fields"><img src="http://testing.fr/cubicweb/data/puce_down.png" alt="show advanced fields"/></a> |
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
157 |
<div id="data:%(eid)s-advanced" class="hidden"> |
1654 | 158 |
<label for="data_format:%(eid)s">data_format</label><input id="data_format:%(eid)s" name="data_format:%(eid)s" tabindex="1" type="text" value="text/plain"/><br/><br/> |
159 |
<label for="data_encoding:%(eid)s">data_encoding</label><input id="data_encoding:%(eid)s" name="data_encoding:%(eid)s" tabindex="2" type="text" value="UTF-8"/><br/><br/> |
|
1111
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
160 |
</div> |
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
161 |
<br/> |
1654 | 162 |
<input name="data:%(eid)s__detach" type="checkbox"/> |
1111
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
163 |
detach attached file |
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
164 |
''' % {'eid': file.eid}) |
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
165 |
|
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
166 |
|
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
167 |
def test_editablefilefield(self): |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
168 |
class EFFForm(EntityFieldsForm): |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
169 |
data = EditableFileField(format_field=StringField(name='data_format'), |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
170 |
encoding_field=StringField(name='data_encoding')) |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
171 |
def form_field_encoding(self, field): |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
172 |
return 'ascii' |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
173 |
def form_field_format(self, field): |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
174 |
return 'text/plain' |
1654 | 175 |
file = self.add_entity('File', name=u"pouet.txt", data_encoding=u'UTF-8', |
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
176 |
data=Binary('new widgets system')) |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
177 |
form = EFFForm(self.req, redirect_path='perdu.com', entity=file) |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
178 |
self.assertTextEquals(self._render_entity_field('data', form), |
1654 | 179 |
'''<input id="data:%(eid)s" name="data:%(eid)s" tabindex="0" type="file" value=""/> |
1111
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
180 |
<a href="javascript: toggleVisibility('data:%(eid)s-advanced')" title="show advanced fields"><img src="http://testing.fr/cubicweb/data/puce_down.png" alt="show advanced fields"/></a> |
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
181 |
<div id="data:%(eid)s-advanced" class="hidden"> |
1654 | 182 |
<label for="data_format:%(eid)s">data_format</label><input id="data_format:%(eid)s" name="data_format:%(eid)s" tabindex="1" type="text" value="text/plain"/><br/><br/> |
183 |
<label for="data_encoding:%(eid)s">data_encoding</label><input id="data_encoding:%(eid)s" name="data_encoding:%(eid)s" tabindex="2" type="text" value="UTF-8"/><br/><br/> |
|
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
184 |
</div> |
1111
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
185 |
<br/> |
1654 | 186 |
<input name="data:%(eid)s__detach" type="checkbox"/> |
1111
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
187 |
detach attached file |
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
188 |
<p><b>You can either submit a new file using the browse button above, or choose to remove already uploaded file by checking the "detach attached file" check-box, or edit file content online with the widget below.</b></p> |
1654 | 189 |
<textarea cols="80" name="data:%(eid)s" onkeypress="autogrow(this)" rows="20" tabindex="3">new widgets system</textarea>''' % {'eid': file.eid}) |
1111
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
190 |
|
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
191 |
|
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
192 |
def test_passwordfield(self): |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
193 |
class PFForm(EntityFieldsForm): |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
194 |
upassword = StringField(widget=PasswordInput) |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
195 |
form = PFForm(self.req, redirect_path='perdu.com', entity=self.entity) |
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
196 |
self.assertTextEquals(self._render_entity_field('upassword', form), |
1654 | 197 |
'''<input id="upassword:%(eid)s" name="upassword:%(eid)s" tabindex="0" type="password" value="__cubicweb_internal_field__"/> |
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
198 |
<br/> |
1654 | 199 |
<input name="upassword-confirm:%(eid)s" tabindex="0" type="password" value="__cubicweb_internal_field__"/> |
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
200 |
|
1111
bcb81e7c41bc
fix test: form_add_entity_hiddens *must* be called before build context, resulting in slightly different outputs...
sylvain.thenault@logilab.fr
parents:
1074
diff
changeset
|
201 |
<span class="emphasis">confirm password</span>''' % {'eid': self.entity.eid}) |
1057
6636c75c4aa9
actual fields test, though it's still to early for form tests
sylvain.thenault@logilab.fr
parents:
1052
diff
changeset
|
202 |
|
1570
5c40d9fb4e8d
stop using card in test, update form tests
sylvain.thenault@logilab.fr
parents:
1398
diff
changeset
|
203 |
|
845 | 204 |
if __name__ == '__main__': |
205 |
unittest_main() |