# -*- coding: utf-8 -*- # Tests to prevent against recurrences of earlier bugs. tests = r""" It should be possible to re-use attribute dictionaries (#3810) >>> from django.newforms import * >>> extra_attrs = {'class': 'special'} >>> class TestForm(Form): ... f1 = CharField(max_length=10, widget=TextInput(attrs=extra_attrs)) ... f2 = CharField(widget=TextInput(attrs=extra_attrs)) >>> TestForm(auto_id=False).as_p() u'

F1:

\n

F2:

' ####################### # Tests for form i18n # ####################### There were some problems with form translations in #3600 >>> from django.utils.translation import ugettext_lazy, activate, deactivate >>> class SomeForm(Form): ... username = CharField(max_length=10, label=ugettext_lazy('Username')) >>> f = SomeForm() >>> print f.as_p()

Translations are done at rendering time, so multi-lingual apps can define forms early and still send back the right translation. >>> activate('de') >>> print f.as_p()

>>> activate('pl') >>> f.as_p() u'

' >>> deactivate() Unicode decoding problems... >>> GENDERS = ((u'\xc5', u'En tied\xe4'), (u'\xf8', u'Mies'), (u'\xdf', u'Nainen')) >>> class SomeForm(Form): ... somechoice = ChoiceField(choices=GENDERS, widget=RadioSelect(), label=u'\xc5\xf8\xdf') >>> f = SomeForm() >>> f.as_p() u'

' Testing choice validation with UTF-8 bytestrings as input (these are the Russian abbreviations "мес." and "шт.". >>> UNITS = (('\xd0\xbc\xd0\xb5\xd1\x81.', '\xd0\xbc\xd0\xb5\xd1\x81.'), ('\xd1\x88\xd1\x82.', '\xd1\x88\xd1\x82.')) >>> f = ChoiceField(choices=UNITS) >>> f.clean(u'\u0448\u0442.') u'\u0448\u0442.' >>> f.clean('\xd1\x88\xd1\x82.') u'\u0448\u0442.' Translated error messages used to be buggy. >>> activate('ru') >>> f = SomeForm({}) >>> f.as_p() u'\n

' >>> deactivate() Deep copying translated text shouldn't raise an error >>> from django.utils.translation import gettext_lazy >>> class CopyForm(Form): ... degree = IntegerField(widget=Select(choices=((1, gettext_lazy('test')),))) >>> f = CopyForm() ####################### # Miscellaneous Tests # ####################### There once was a problem with Form fields called "data". Let's make sure that doesn't come back. >>> class DataForm(Form): ... data = CharField(max_length=10) >>> f = DataForm({'data': 'xyzzy'}) >>> f.is_valid() True >>> f.cleaned_data {'data': u'xyzzy'} """