2015-09-13 04:10:28 +00:00
|
|
|
import unittest
|
2015-09-14 22:35:47 +00:00
|
|
|
|
2015-09-23 21:14:26 +00:00
|
|
|
from slixmpp import Message
|
|
|
|
from slixmpp.test import SlixTest
|
|
|
|
import slixmpp.plugins.xep_0004 as xep_0004
|
|
|
|
import slixmpp.plugins.xep_0122 as xep_0122
|
|
|
|
from slixmpp.xmlstream import register_stanza_plugin
|
2015-09-13 04:10:28 +00:00
|
|
|
|
|
|
|
|
2015-09-23 21:14:26 +00:00
|
|
|
class TestDataForms(SlixTest):
|
2015-09-13 04:10:28 +00:00
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
register_stanza_plugin(Message, xep_0004.Form)
|
|
|
|
register_stanza_plugin(xep_0004.Form, xep_0004.FormField, iterable=True)
|
|
|
|
register_stanza_plugin(xep_0004.FormField, xep_0004.FieldOption, iterable=True)
|
|
|
|
register_stanza_plugin(xep_0004.FormField, xep_0122.FormValidation)
|
|
|
|
|
|
|
|
def test_basic_validation(self):
|
2015-09-15 16:09:06 +00:00
|
|
|
"""Testing basic validation setting and getting."""
|
2015-09-13 04:10:28 +00:00
|
|
|
msg = self.Message()
|
|
|
|
form = msg['form']
|
2015-09-23 21:14:26 +00:00
|
|
|
field = form.add_field(var='f1',
|
|
|
|
ftype='text-single',
|
|
|
|
label='Text',
|
|
|
|
desc='A text field',
|
|
|
|
required=True,
|
|
|
|
value='Some text!')
|
2015-09-13 04:10:28 +00:00
|
|
|
|
|
|
|
validation = field['validate']
|
|
|
|
validation['datatype'] = 'xs:string'
|
|
|
|
validation.set_basic(True)
|
|
|
|
|
|
|
|
self.check(msg, """
|
|
|
|
<message>
|
|
|
|
<x xmlns="jabber:x:data" type="form">
|
|
|
|
<field var="f1" type="text-single" label="Text">
|
|
|
|
<desc>A text field</desc>
|
|
|
|
<required />
|
|
|
|
<value>Some text!</value>
|
|
|
|
<validate xmlns="http://jabber.org/protocol/xdata-validate" datatype="xs:string">
|
|
|
|
<basic/>
|
|
|
|
</validate>
|
|
|
|
</field>
|
|
|
|
</x>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
2015-09-14 22:35:47 +00:00
|
|
|
self.assertTrue(validation.get_basic())
|
|
|
|
self.assertFalse(validation.get_open())
|
|
|
|
self.assertFalse(validation.get_range())
|
|
|
|
self.assertFalse(validation.get_regex())
|
|
|
|
|
|
|
|
def test_open_validation(self):
|
2015-09-15 16:09:06 +00:00
|
|
|
"""Testing open validation setting and getting."""
|
2015-09-14 22:35:47 +00:00
|
|
|
msg = self.Message()
|
|
|
|
form = msg['form']
|
2015-09-23 21:14:26 +00:00
|
|
|
field = form.add_field(var='f1',
|
|
|
|
ftype='text-single',
|
|
|
|
label='Text',
|
|
|
|
desc='A text field',
|
|
|
|
required=True,
|
|
|
|
value='Some text!')
|
2015-09-14 22:35:47 +00:00
|
|
|
|
|
|
|
validation = field['validate']
|
|
|
|
validation.set_open(True)
|
|
|
|
|
|
|
|
self.check(msg, """
|
|
|
|
<message>
|
|
|
|
<x xmlns="jabber:x:data" type="form">
|
|
|
|
<field var="f1" type="text-single" label="Text">
|
|
|
|
<desc>A text field</desc>
|
|
|
|
<required />
|
|
|
|
<value>Some text!</value>
|
|
|
|
<validate xmlns="http://jabber.org/protocol/xdata-validate">
|
|
|
|
<open />
|
|
|
|
</validate>
|
|
|
|
</field>
|
|
|
|
</x>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
|
|
|
self.assertFalse(validation.get_basic())
|
|
|
|
self.assertTrue(validation.get_open())
|
|
|
|
self.assertFalse(validation.get_range())
|
|
|
|
self.assertFalse(validation.get_regex())
|
|
|
|
|
|
|
|
def test_regex_validation(self):
|
2015-09-15 16:09:06 +00:00
|
|
|
"""Testing regex validation setting and getting."""
|
2015-09-14 22:35:47 +00:00
|
|
|
msg = self.Message()
|
|
|
|
form = msg['form']
|
2015-09-23 21:14:26 +00:00
|
|
|
field = form.add_field(var='f1',
|
|
|
|
ftype='text-single',
|
|
|
|
label='Text',
|
|
|
|
desc='A text field',
|
|
|
|
required=True,
|
|
|
|
value='Some text!')
|
2015-09-14 22:35:47 +00:00
|
|
|
|
|
|
|
regex_value = '[0-9]+'
|
|
|
|
|
|
|
|
validation = field['validate']
|
|
|
|
validation.set_regex(regex_value)
|
|
|
|
|
|
|
|
self.check(msg, """
|
|
|
|
<message>
|
|
|
|
<x xmlns="jabber:x:data" type="form">
|
|
|
|
<field var="f1" type="text-single" label="Text">
|
|
|
|
<desc>A text field</desc>
|
|
|
|
<required />
|
|
|
|
<value>Some text!</value>
|
|
|
|
<validate xmlns="http://jabber.org/protocol/xdata-validate">
|
|
|
|
<regex>[0-9]+</regex>
|
|
|
|
</validate>
|
|
|
|
</field>
|
|
|
|
</x>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
|
|
|
self.assertFalse(validation.get_basic())
|
|
|
|
self.assertFalse(validation.get_open())
|
|
|
|
self.assertFalse(validation.get_range())
|
|
|
|
self.assertTrue(validation.get_regex())
|
|
|
|
|
|
|
|
self.assertEqual(regex_value, validation.get_regex())
|
|
|
|
|
|
|
|
def test_range_validation(self):
|
2015-09-15 16:09:06 +00:00
|
|
|
"""Testing range validation setting and getting."""
|
2015-09-14 22:35:47 +00:00
|
|
|
msg = self.Message()
|
|
|
|
form = msg['form']
|
2015-09-23 21:14:26 +00:00
|
|
|
field = form.add_field(var='f1',
|
|
|
|
ftype='text-single',
|
|
|
|
label='Text',
|
|
|
|
desc='A text field',
|
|
|
|
required=True,
|
|
|
|
value='Some text!')
|
2015-09-14 22:35:47 +00:00
|
|
|
|
|
|
|
validation = field['validate']
|
|
|
|
validation.set_range(True, minimum=0, maximum=10)
|
|
|
|
|
|
|
|
self.check(msg, """
|
|
|
|
<message>
|
|
|
|
<x xmlns="jabber:x:data" type="form">
|
|
|
|
<field var="f1" type="text-single" label="Text">
|
|
|
|
<desc>A text field</desc>
|
|
|
|
<required />
|
|
|
|
<value>Some text!</value>
|
|
|
|
<validate xmlns="http://jabber.org/protocol/xdata-validate">
|
|
|
|
<range min="0" max="10" />
|
|
|
|
</validate>
|
|
|
|
</field>
|
|
|
|
</x>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
|
|
|
self.assertDictEqual(dict(minimum=str(0), maximum=str(10)), validation.get_range())
|
2015-09-13 04:10:28 +00:00
|
|
|
|
2015-09-15 16:09:06 +00:00
|
|
|
def test_reported_field_validation(self):
|
|
|
|
"""
|
|
|
|
Testing adding validation to the field when it's stored in the reported.
|
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
msg = self.Message()
|
|
|
|
form = msg['form']
|
2015-09-23 21:14:26 +00:00
|
|
|
field = form.add_reported(var='f1', ftype='text-single', label='Text')
|
2015-09-15 16:09:06 +00:00
|
|
|
validation = field['validate']
|
|
|
|
validation.set_basic(True)
|
|
|
|
|
2015-09-23 21:14:26 +00:00
|
|
|
form.add_item({'f1': 'Some text!'})
|
2015-09-15 16:09:06 +00:00
|
|
|
|
|
|
|
self.check(msg, """
|
|
|
|
<message>
|
|
|
|
<x xmlns="jabber:x:data" type="form">
|
|
|
|
<reported>
|
|
|
|
<field var="f1" type="text-single" label="Text">
|
|
|
|
<validate xmlns="http://jabber.org/protocol/xdata-validate">
|
|
|
|
<basic />
|
|
|
|
</validate>
|
|
|
|
</field>
|
|
|
|
</reported>
|
|
|
|
<item>
|
|
|
|
<field var="f1">
|
|
|
|
<value>Some text!</value>
|
|
|
|
</field>
|
|
|
|
</item>
|
|
|
|
</x>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
2015-09-13 04:10:28 +00:00
|
|
|
|
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TestDataForms)
|