1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
|
import unittest
from urllib.parse import parse_qsl
from formencode import Invalid, Validator, compound, foreach, validators
from formencode.schema import Schema, merge_dicts, SimpleFormValidator
from formencode.variabledecode import NestedVariables
import pytest
def _notranslation(s):
return s
def setup_module(module):
"""Disable i18n translation"""
import builtins
builtins._ = _notranslation
def teardown_module(module):
"""Remove translation function"""
import builtins
del builtins._
def d(**kw):
return kw
def cgi_parse(qs):
"""Parse a query string and returns the usually dictionary."""
d = {}
for key, value in parse_qsl(qs, True):
if key in d:
if isinstance(d[key], list):
d[key].append(value)
else:
d[key] = [d[key], value]
else:
d[key] = value
return d
class DecodeCase:
error_expected = False
def __init__(self, schema, input, **output):
if isinstance(input, str):
input = cgi_parse(input)
self.input = input
self.schema = schema
self.output = output
all_cases.append(self)
def test(self):
print('input', repr(self.input))
actual = self.schema.to_python(self.input)
print('output', repr(actual))
assert actual == self.output
class BadCase(DecodeCase):
error_expected = True
def __init__(self, *args, **kw):
DecodeCase.__init__(self, *args, **kw)
if len(self.output) == 1 and 'text' in self.output:
self.output = self.output['text']
def test(self):
print(repr(self.input))
try:
print(repr(self.schema.to_python(self.input)))
except Invalid as e:
actual = e.unpack_errors()
assert actual == self.output
else:
assert False, "Exception expected"
class Name(Schema):
fname = validators.String(not_empty=True)
mi = validators.String(max=1, if_missing=None, if_empty=None)
lname = validators.String(not_empty=True)
all_cases = []
DecodeCase(Name, 'fname=Ian&mi=S&lname=Bicking',
fname='Ian', mi='S', lname='Bicking')
DecodeCase(Name, 'fname=Ian&lname=Bicking',
fname='Ian', mi=None, lname='Bicking')
BadCase(Name, 'fname=&lname=',
fname='Please enter a value',
lname='Please enter a value')
BadCase(Name, 'fname=Franklin&mi=Delano&lname=Roosevelt',
mi="Enter a value not more than 1 characters long")
BadCase(Name, '',
fname='Missing value',
lname='Missing value')
class AddressesForm(Schema):
pre_validators = [NestedVariables()]
class addresses(foreach.ForEach):
class schema(Schema):
name = Name()
email = validators.Email()
DecodeCase(AddressesForm,
'addresses-2.name.fname=Jill&addresses-1.name.fname=Bob&'
'addresses-1.name.lname=Briscoe&'
'addresses-1.email=bob@bobcom.com&'
'addresses-2.name.lname=Hill&addresses-2.email=jill@hill.com&'
'addresses-2.name.mi=J',
addresses=[d(name=d(fname='Bob', mi=None, lname='Briscoe'),
email='bob@bobcom.com'),
d(name=d(fname='Jill', mi='J', lname='Hill'),
email='jill@hill.com')])
DecodeCase(AddressesForm,
'',
addresses=[])
BadCase(AddressesForm,
'addresses-1.name.fname=&addresses-1.name.lname=x&'
'addresses-1.email=x@domain.com',
addresses=[d(name=d(fname="Please enter a value"))])
BadCase(AddressesForm,
'whatever=nothing',
text="The input field 'whatever' was not expected.")
def collect_cases():
for case in all_cases:
yield case.test
@pytest.mark.parametrize('func', list(collect_cases()))
def test_this(func):
func()
def test_merge():
assert (merge_dicts(dict(a='a'), dict(b='b'))
== dict(a='a', b='b'))
assert (merge_dicts(dict(a='a', c='c'), dict(a='a', b='b'))
== dict(a='a\na', b='b', c='c'))
assert (merge_dicts(dict(a=['a1', 'a2'], b=['b'], c=['c']),
dict(a=['aa1'],
b=['bb', 'bbb'],
c='foo'))
== dict(a=['a1\naa1', 'a2'], b=['b\nbb', 'bbb'],
c=['c']))
class ChainedTest(Schema):
a = validators.String()
a_confirm = validators.String()
b = validators.String()
b_confirm = validators.String()
chained_validators = [
validators.FieldsMatch('a', 'a_confirm'),
validators.FieldsMatch('b', 'b_confirm')]
def test_multiple_chained_validators_errors():
s = ChainedTest()
try:
s.to_python({'a': '1', 'a_confirm': '2', 'b': '3', 'b_confirm': '4'})
except Invalid as e:
assert 'a_confirm' in e.error_dict and 'b_confirm' in e.error_dict
try:
s.to_python({})
except Invalid:
pass
else:
assert False
def test_SimpleFormValidator_doc():
"""
Verify SimpleFormValidator preserves the decorated function's docstring.
"""
BOGUS_DOCSTRING = "blah blah blah"
def f(value_dict, state, validator):
value_dict['f'] = 99
f.__doc__ = BOGUS_DOCSTRING
g = SimpleFormValidator(f)
assert f.__doc__ == g.__doc__, "Docstrings don't match!"
class State:
pass
def test_state_manipulation():
"""
Verify that full_dict push and pop works
"""
state = State()
old_dict = state.full_dict = {'a': 1}
old_key = state.key = 'a'
new_dict = {'b': 2}
class MyValidator(Validator):
check_key = None
pre_validator = False
post_validator = False
__unpackargs__ = ('check_key',)
def to_python(self, value, state):
if not self.pre_validator:
assert getattr(
state, 'full_dict', {}) == new_dict, "full_dict not added"
assert state.key == self.check_key, "key not updated"
return value
def from_python(self, value, state):
if not self.post_validator:
assert getattr(
state, 'full_dict', {}) == new_dict, "full_dict not added"
assert state.key == self.check_key, "key not updated"
return value
s = Schema(if_key_missing=None, b=MyValidator('b'), c=MyValidator('c'),
pre_validators=[MyValidator('a', pre_validator=True)],
chained_validators=[MyValidator('a', post_validator=True)])
s.to_python(new_dict, state)
assert state.full_dict == old_dict, "full_dict not restored"
assert state.key == old_key, "key not restored"
s.from_python(new_dict, state)
assert state.full_dict == old_dict, "full_dict not restored"
assert state.key == old_key, "key not restored"
class TestAtLeastOneCheckboxIsChecked(unittest.TestCase):
"""Tests to address SourceForge bug #1777245
The reporter is trying to enforce agreement to a Terms of Service
agreement, with failure to check the 'I agree' checkbox handled as
a validation failure. The tests below illustrate a working approach.
"""
def setUp(self):
self.not_empty_messages = {'missing': 'a missing value message'}
class CheckForCheckboxSchema(Schema):
agree = validators.StringBool(messages=self.not_empty_messages)
self.schema = CheckForCheckboxSchema()
def test_Schema_with_input_present(self):
# <input type="checkbox" name="agree" value="yes" checked="checked">
result = self.schema.to_python({'agree': 'yes'})
self.assertTrue(result['agree'])
def test_Schema_with_input_missing(self):
# <input type="checkbox" name="agree" value="yes">
try:
self.schema.to_python({})
except Invalid as exc:
error_message = exc.error_dict['agree'].msg
self.assertEqual(self.not_empty_messages['missing'], error_message,
error_message)
else:
self.fail('missing input not detected')
class TestStrictSchemaWithMultipleEqualInputFields(unittest.TestCase):
"""Tests to address github bug #13"""
def setUp(self):
class StrictSchema(Schema):
allow_extra_fields = False
class IntegerTestSchema(StrictSchema):
field = validators.Int(not_empty=True)
class StringTestSchema(StrictSchema):
field = validators.UnicodeString(not_empty=True)
class CorrectForEachStringTestSchema(StrictSchema):
field = foreach.ForEach(validators.UnicodeString(not_empty=True))
class CorrectSetTestSchema(StrictSchema):
field = validators.Set(not_empty=True)
class CorrectSetTestPipeSchema(StrictSchema):
field = compound.Pipe(validators.Set(not_empty=True),
foreach.ForEach(validators.UnicodeString(not_empty=True)))
self.int_schema = IntegerTestSchema()
self.string_schema = StringTestSchema()
self.foreach_schema = CorrectForEachStringTestSchema()
self.set_schema = CorrectSetTestSchema()
self.pipe_schema = CorrectSetTestPipeSchema()
def test_single_integer_value(self):
params = cgi_parse('field=111')
data = self.int_schema.to_python(params)
self.assertEqual(data, dict(field=111))
def test_multiple_integer_value(self):
params = cgi_parse('field=111&field=222')
self.assertRaises(Invalid, self.int_schema.to_python, params)
def test_single_string_value(self):
params = cgi_parse('field=string')
data = self.string_schema.to_python(params)
self.assertEqual(data, dict(field='string'))
def test_multiple_string_value(self):
params = cgi_parse('field=string1&field=string2')
self.assertRaises(Invalid, self.string_schema.to_python, params)
def test_correct_multiple_string_value_foreach(self):
params = cgi_parse('field=string1&field=string2')
data = self.foreach_schema.to_python(params)
self.assertEqual(data, dict(field=['string1', 'string2']))
def test_correct_multiple_string_value_set(self):
params = cgi_parse('field=string1&field=string2')
data = self.set_schema.to_python(params)
self.assertEqual(data, dict(field=['string1', 'string2']))
def test_correct_multiple_string_value_pipe(self):
params = cgi_parse('field=string1&field=string2')
data = self.pipe_schema.to_python(params)
self.assertEqual(data, dict(field=['string1', 'string2']))
def test_copy():
assert 'mi' in Name.fields
NoTitleName = Name()
assert 'mi' in NoTitleName.fields
TitleName = NoTitleName(title=validators.String())
assert 'mi' in TitleName.fields
assert 'title' in TitleName.fields
assert 'title' not in NoTitleName.fields
|