2010-10-07 14:58:13 +00:00
|
|
|
from sleekxmpp.test import *
|
2010-08-13 16:24:47 +00:00
|
|
|
from sleekxmpp.xmlstream.stanzabase import ElementBase
|
|
|
|
|
2010-10-07 14:58:13 +00:00
|
|
|
|
2010-08-13 16:24:47 +00:00
|
|
|
class TestElementBase(SleekTest):
|
|
|
|
|
2010-08-26 22:27:18 +00:00
|
|
|
def testFixNs(self):
|
|
|
|
"""Test fixing namespaces in an XPath expression."""
|
|
|
|
|
|
|
|
e = ElementBase()
|
|
|
|
ns = "http://jabber.org/protocol/disco#items"
|
|
|
|
result = e._fix_ns("{%s}foo/bar/{abc}baz/{%s}more" % (ns, ns))
|
|
|
|
|
|
|
|
expected = "/".join(["{%s}foo" % ns,
|
|
|
|
"{%s}bar" % ns,
|
|
|
|
"{abc}baz",
|
|
|
|
"{%s}more" % ns])
|
|
|
|
self.failUnless(expected == result,
|
|
|
|
"Incorrect namespace fixing result: %s" % str(result))
|
|
|
|
|
|
|
|
|
2010-08-13 16:24:47 +00:00
|
|
|
def testExtendedName(self):
|
|
|
|
"""Test element names of the form tag1/tag2/tag3."""
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo/bar/baz"
|
|
|
|
namespace = "test"
|
|
|
|
|
|
|
|
stanza = TestStanza()
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-13 16:24:47 +00:00
|
|
|
<foo xmlns="test">
|
|
|
|
<bar>
|
|
|
|
<baz />
|
|
|
|
</bar>
|
|
|
|
</foo>
|
|
|
|
""")
|
|
|
|
|
2010-08-14 00:05:24 +00:00
|
|
|
def testGetStanzaValues(self):
|
|
|
|
"""Test getStanzaValues using plugins and substanzas."""
|
|
|
|
|
|
|
|
class TestStanzaPlugin(ElementBase):
|
|
|
|
name = "foo2"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
plugin_attrib = "foo2"
|
|
|
|
|
|
|
|
class TestSubStanza(ElementBase):
|
|
|
|
name = "subfoo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
subitem = set((TestSubStanza,))
|
|
|
|
|
2010-10-18 01:38:22 +00:00
|
|
|
register_stanza_plugin(TestStanza, TestStanzaPlugin)
|
2010-08-14 00:05:24 +00:00
|
|
|
|
|
|
|
stanza = TestStanza()
|
|
|
|
stanza['bar'] = 'a'
|
|
|
|
stanza['foo2']['baz'] = 'b'
|
|
|
|
substanza = TestSubStanza()
|
|
|
|
substanza['bar'] = 'c'
|
|
|
|
stanza.append(substanza)
|
|
|
|
|
|
|
|
values = stanza.getStanzaValues()
|
|
|
|
expected = {'bar': 'a',
|
|
|
|
'baz': '',
|
|
|
|
'foo2': {'bar': '',
|
|
|
|
'baz': 'b'},
|
|
|
|
'substanzas': [{'__childtag__': '{foo}subfoo',
|
|
|
|
'bar': 'c',
|
|
|
|
'baz': ''}]}
|
|
|
|
self.failUnless(values == expected,
|
|
|
|
"Unexpected stanza values:\n%s\n%s" % (str(expected), str(values)))
|
|
|
|
|
|
|
|
|
|
|
|
def testSetStanzaValues(self):
|
|
|
|
"""Test using setStanzaValues with substanzas and plugins."""
|
|
|
|
|
|
|
|
class TestStanzaPlugin(ElementBase):
|
|
|
|
name = "pluginfoo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
plugin_attrib = "plugin_foo"
|
|
|
|
|
|
|
|
class TestStanzaPlugin2(ElementBase):
|
|
|
|
name = "pluginfoo2"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
plugin_attrib = "plugin_foo2"
|
|
|
|
|
|
|
|
class TestSubStanza(ElementBase):
|
|
|
|
name = "subfoo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
subitem = set((TestSubStanza,))
|
|
|
|
|
2010-10-18 01:38:22 +00:00
|
|
|
register_stanza_plugin(TestStanza, TestStanzaPlugin)
|
|
|
|
register_stanza_plugin(TestStanza, TestStanzaPlugin2)
|
2010-08-14 00:05:24 +00:00
|
|
|
|
|
|
|
stanza = TestStanza()
|
|
|
|
values = {'bar': 'a',
|
|
|
|
'baz': '',
|
|
|
|
'plugin_foo': {'bar': '',
|
|
|
|
'baz': 'b'},
|
|
|
|
'plugin_foo2': {'bar': 'd',
|
|
|
|
'baz': 'e'},
|
|
|
|
'substanzas': [{'__childtag__': '{foo}subfoo',
|
|
|
|
'bar': 'c',
|
|
|
|
'baz': ''}]}
|
|
|
|
stanza.setStanzaValues(values)
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-14 00:05:24 +00:00
|
|
|
<foo xmlns="foo" bar="a">
|
|
|
|
<pluginfoo baz="b" />
|
|
|
|
<pluginfoo2 bar="d" baz="e" />
|
|
|
|
<subfoo bar="c" />
|
|
|
|
</foo>
|
|
|
|
""")
|
|
|
|
|
2010-08-14 01:33:11 +00:00
|
|
|
def testGetItem(self):
|
|
|
|
"""Test accessing stanza interfaces."""
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
2010-08-19 18:21:58 +00:00
|
|
|
interfaces = set(('bar', 'baz', 'qux'))
|
2010-08-14 01:33:11 +00:00
|
|
|
sub_interfaces = set(('baz',))
|
|
|
|
|
2010-08-19 18:21:58 +00:00
|
|
|
def getQux(self):
|
|
|
|
return 'qux'
|
|
|
|
|
2010-08-14 01:33:11 +00:00
|
|
|
class TestStanzaPlugin(ElementBase):
|
|
|
|
name = "foobar"
|
|
|
|
namespace = "foo"
|
|
|
|
plugin_attrib = "foobar"
|
|
|
|
interfaces = set(('fizz',))
|
|
|
|
|
|
|
|
TestStanza.subitem = (TestStanza,)
|
2010-10-18 01:38:22 +00:00
|
|
|
register_stanza_plugin(TestStanza, TestStanzaPlugin)
|
2010-08-14 01:33:11 +00:00
|
|
|
|
|
|
|
stanza = TestStanza()
|
|
|
|
substanza = TestStanza()
|
|
|
|
stanza.append(substanza)
|
|
|
|
stanza.setStanzaValues({'bar': 'a',
|
|
|
|
'baz': 'b',
|
2010-08-19 18:21:58 +00:00
|
|
|
'qux': 42,
|
2010-08-14 01:33:11 +00:00
|
|
|
'foobar': {'fizz': 'c'}})
|
|
|
|
|
|
|
|
# Test non-plugin interfaces
|
|
|
|
expected = {'substanzas': [substanza],
|
|
|
|
'bar': 'a',
|
|
|
|
'baz': 'b',
|
2010-08-19 18:21:58 +00:00
|
|
|
'qux': 'qux',
|
2010-08-14 01:33:11 +00:00
|
|
|
'meh': ''}
|
|
|
|
for interface, value in expected.items():
|
|
|
|
result = stanza[interface]
|
|
|
|
self.failUnless(result == value,
|
|
|
|
"Incorrect stanza interface access result: %s" % result)
|
|
|
|
|
|
|
|
# Test plugin interfaces
|
|
|
|
self.failUnless(isinstance(stanza['foobar'], TestStanzaPlugin),
|
|
|
|
"Incorrect plugin object result.")
|
|
|
|
self.failUnless(stanza['foobar']['fizz'] == 'c',
|
|
|
|
"Incorrect plugin subvalue result.")
|
|
|
|
|
2010-08-19 18:21:58 +00:00
|
|
|
def testSetItem(self):
|
|
|
|
"""Test assigning to stanza interfaces."""
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz', 'qux'))
|
|
|
|
sub_interfaces = set(('baz',))
|
|
|
|
|
|
|
|
def setQux(self, value):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class TestStanzaPlugin(ElementBase):
|
|
|
|
name = "foobar"
|
|
|
|
namespace = "foo"
|
|
|
|
plugin_attrib = "foobar"
|
|
|
|
interfaces = set(('foobar',))
|
|
|
|
|
2010-10-18 01:38:22 +00:00
|
|
|
register_stanza_plugin(TestStanza, TestStanzaPlugin)
|
2010-08-19 18:21:58 +00:00
|
|
|
|
|
|
|
stanza = TestStanza()
|
|
|
|
|
|
|
|
stanza['bar'] = 'attribute!'
|
|
|
|
stanza['baz'] = 'element!'
|
|
|
|
stanza['qux'] = 'overridden'
|
|
|
|
stanza['foobar'] = 'plugin'
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-19 18:21:58 +00:00
|
|
|
<foo xmlns="foo" bar="attribute!">
|
|
|
|
<baz>element!</baz>
|
|
|
|
<foobar foobar="plugin" />
|
|
|
|
</foo>
|
|
|
|
""")
|
|
|
|
|
2010-08-19 23:11:12 +00:00
|
|
|
def testDelItem(self):
|
|
|
|
"""Test deleting stanza interface values."""
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz', 'qux'))
|
|
|
|
sub_interfaces = set(('bar',))
|
|
|
|
|
|
|
|
def delQux(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class TestStanzaPlugin(ElementBase):
|
|
|
|
name = "foobar"
|
|
|
|
namespace = "foo"
|
|
|
|
plugin_attrib = "foobar"
|
|
|
|
interfaces = set(('foobar',))
|
|
|
|
|
2010-10-18 01:38:22 +00:00
|
|
|
register_stanza_plugin(TestStanza, TestStanzaPlugin)
|
2010-08-19 23:11:12 +00:00
|
|
|
|
|
|
|
stanza = TestStanza()
|
|
|
|
stanza['bar'] = 'a'
|
|
|
|
stanza['baz'] = 'b'
|
|
|
|
stanza['qux'] = 'c'
|
|
|
|
stanza['foobar']['foobar'] = 'd'
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-19 23:11:12 +00:00
|
|
|
<foo xmlns="foo" baz="b" qux="c">
|
|
|
|
<bar>a</bar>
|
|
|
|
<foobar foobar="d" />
|
|
|
|
</foo>
|
|
|
|
""")
|
|
|
|
|
|
|
|
del stanza['bar']
|
|
|
|
del stanza['baz']
|
|
|
|
del stanza['qux']
|
|
|
|
del stanza['foobar']
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-19 23:11:12 +00:00
|
|
|
<foo xmlns="foo" qux="c" />
|
|
|
|
""")
|
2010-08-13 16:24:47 +00:00
|
|
|
|
2010-08-20 00:41:26 +00:00
|
|
|
def testModifyingAttributes(self):
|
|
|
|
"""Test modifying top level attributes of a stanza's XML object."""
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
|
|
|
|
stanza = TestStanza()
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-20 00:41:26 +00:00
|
|
|
<foo xmlns="foo" />
|
|
|
|
""")
|
|
|
|
|
2010-10-18 01:38:22 +00:00
|
|
|
self.failUnless(stanza._get_attr('bar') == '',
|
2010-08-20 00:41:26 +00:00
|
|
|
"Incorrect value returned for an unset XML attribute.")
|
|
|
|
|
2010-10-18 01:38:22 +00:00
|
|
|
stanza._set_attr('bar', 'a')
|
|
|
|
stanza._set_attr('baz', 'b')
|
2010-08-20 00:41:26 +00:00
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-20 00:41:26 +00:00
|
|
|
<foo xmlns="foo" bar="a" baz="b" />
|
|
|
|
""")
|
|
|
|
|
2010-10-18 01:38:22 +00:00
|
|
|
self.failUnless(stanza._get_attr('bar') == 'a',
|
2010-08-20 00:41:26 +00:00
|
|
|
"Retrieved XML attribute value is incorrect.")
|
|
|
|
|
2010-10-18 01:38:22 +00:00
|
|
|
stanza._set_attr('bar', None)
|
|
|
|
stanza._del_attr('baz')
|
2010-08-20 00:41:26 +00:00
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-20 00:41:26 +00:00
|
|
|
<foo xmlns="foo" />
|
|
|
|
""")
|
|
|
|
|
2010-10-18 01:38:22 +00:00
|
|
|
self.failUnless(stanza._get_attr('bar', 'c') == 'c',
|
2010-08-20 00:41:26 +00:00
|
|
|
"Incorrect default value returned for an unset XML attribute.")
|
2010-08-26 17:49:36 +00:00
|
|
|
|
2010-08-24 12:55:37 +00:00
|
|
|
def testGetSubText(self):
|
|
|
|
"""Test retrieving the contents of a sub element."""
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar',))
|
|
|
|
|
|
|
|
def setBar(self, value):
|
|
|
|
wrapper = ET.Element("{foo}wrapper")
|
|
|
|
bar = ET.Element("{foo}bar")
|
|
|
|
bar.text = value
|
|
|
|
wrapper.append(bar)
|
|
|
|
self.xml.append(wrapper)
|
|
|
|
|
|
|
|
def getBar(self):
|
2010-10-18 01:38:22 +00:00
|
|
|
return self._get_sub_text("wrapper/bar", default="not found")
|
2010-08-24 12:55:37 +00:00
|
|
|
|
|
|
|
stanza = TestStanza()
|
2010-08-26 17:49:36 +00:00
|
|
|
self.failUnless(stanza['bar'] == 'not found',
|
2010-10-18 01:38:22 +00:00
|
|
|
"Default _get_sub_text value incorrect.")
|
2010-08-24 12:55:37 +00:00
|
|
|
|
|
|
|
stanza['bar'] = 'found'
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-24 12:55:37 +00:00
|
|
|
<foo xmlns="foo">
|
|
|
|
<wrapper>
|
|
|
|
<bar>found</bar>
|
|
|
|
</wrapper>
|
|
|
|
</foo>
|
|
|
|
""")
|
2010-08-26 17:49:36 +00:00
|
|
|
self.failUnless(stanza['bar'] == 'found',
|
2010-10-18 01:38:22 +00:00
|
|
|
"_get_sub_text value incorrect: %s." % stanza['bar'])
|
2010-08-24 12:55:37 +00:00
|
|
|
|
2010-08-24 13:37:42 +00:00
|
|
|
def testSubElement(self):
|
|
|
|
"""Test setting the contents of a sub element."""
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
|
|
|
|
def setBaz(self, value):
|
2010-10-18 01:38:22 +00:00
|
|
|
self._set_sub_text("wrapper/baz", text=value)
|
2010-08-24 13:37:42 +00:00
|
|
|
|
|
|
|
def getBaz(self):
|
2010-10-18 01:38:22 +00:00
|
|
|
return self._get_sub_text("wrapper/baz")
|
2010-08-24 13:37:42 +00:00
|
|
|
|
|
|
|
def setBar(self, value):
|
2010-10-18 01:38:22 +00:00
|
|
|
self._set_sub_text("wrapper/bar", text=value)
|
2010-08-24 13:37:42 +00:00
|
|
|
|
|
|
|
def getBar(self):
|
2010-10-18 01:38:22 +00:00
|
|
|
return self._get_sub_text("wrapper/bar")
|
2010-08-24 13:37:42 +00:00
|
|
|
|
|
|
|
stanza = TestStanza()
|
|
|
|
stanza['bar'] = 'a'
|
|
|
|
stanza['baz'] = 'b'
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-24 13:37:42 +00:00
|
|
|
<foo xmlns="foo">
|
|
|
|
<wrapper>
|
|
|
|
<bar>a</bar>
|
|
|
|
<baz>b</baz>
|
|
|
|
</wrapper>
|
|
|
|
</foo>
|
|
|
|
""")
|
2010-10-18 01:38:22 +00:00
|
|
|
stanza._set_sub_text('wrapper/bar', text='', keep=True)
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-24 13:37:42 +00:00
|
|
|
<foo xmlns="foo">
|
|
|
|
<wrapper>
|
|
|
|
<bar />
|
|
|
|
<baz>b</baz>
|
|
|
|
</wrapper>
|
|
|
|
</foo>
|
|
|
|
""", use_values=False)
|
|
|
|
|
|
|
|
stanza['bar'] = 'a'
|
2010-10-18 01:38:22 +00:00
|
|
|
stanza._set_sub_text('wrapper/bar', text='')
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-24 13:37:42 +00:00
|
|
|
<foo xmlns="foo">
|
|
|
|
<wrapper>
|
|
|
|
<baz>b</baz>
|
|
|
|
</wrapper>
|
|
|
|
</foo>
|
|
|
|
""")
|
|
|
|
|
2010-08-25 14:52:07 +00:00
|
|
|
def testDelSub(self):
|
|
|
|
"""Test removing sub elements."""
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
|
|
|
|
def setBar(self, value):
|
2010-10-18 01:38:22 +00:00
|
|
|
self._set_sub_text("path/to/only/bar", value);
|
2010-08-25 14:52:07 +00:00
|
|
|
|
|
|
|
def getBar(self):
|
2010-10-18 01:38:22 +00:00
|
|
|
return self._get_sub_text("path/to/only/bar")
|
2010-08-25 14:52:07 +00:00
|
|
|
|
|
|
|
def delBar(self):
|
2010-10-18 01:38:22 +00:00
|
|
|
self._del_sub("path/to/only/bar")
|
2010-08-25 14:52:07 +00:00
|
|
|
|
|
|
|
def setBaz(self, value):
|
2010-10-18 01:38:22 +00:00
|
|
|
self._set_sub_text("path/to/just/baz", value);
|
2010-08-25 14:52:07 +00:00
|
|
|
|
|
|
|
def getBaz(self):
|
2010-10-18 01:38:22 +00:00
|
|
|
return self._get_sub_text("path/to/just/baz")
|
2010-08-25 14:52:07 +00:00
|
|
|
|
|
|
|
def delBaz(self):
|
2010-10-18 01:38:22 +00:00
|
|
|
self._del_sub("path/to/just/baz")
|
2010-08-25 14:52:07 +00:00
|
|
|
|
|
|
|
stanza = TestStanza()
|
|
|
|
stanza['bar'] = 'a'
|
|
|
|
stanza['baz'] = 'b'
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-25 14:52:07 +00:00
|
|
|
<foo xmlns="foo">
|
|
|
|
<path>
|
|
|
|
<to>
|
|
|
|
<only>
|
|
|
|
<bar>a</bar>
|
|
|
|
</only>
|
|
|
|
<just>
|
|
|
|
<baz>b</baz>
|
|
|
|
</just>
|
|
|
|
</to>
|
|
|
|
</path>
|
|
|
|
</foo>
|
|
|
|
""")
|
|
|
|
|
|
|
|
del stanza['bar']
|
|
|
|
del stanza['baz']
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-25 14:52:07 +00:00
|
|
|
<foo xmlns="foo">
|
|
|
|
<path>
|
|
|
|
<to>
|
|
|
|
<only />
|
|
|
|
<just />
|
|
|
|
</to>
|
|
|
|
</path>
|
|
|
|
</foo>
|
|
|
|
""", use_values=False)
|
|
|
|
|
|
|
|
stanza['bar'] = 'a'
|
|
|
|
stanza['baz'] = 'b'
|
|
|
|
|
2010-10-18 01:38:22 +00:00
|
|
|
stanza._del_sub('path/to/only/bar', all=True)
|
2010-08-25 14:52:07 +00:00
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-25 14:52:07 +00:00
|
|
|
<foo xmlns="foo">
|
|
|
|
<path>
|
|
|
|
<to>
|
|
|
|
<just>
|
|
|
|
<baz>b</baz>
|
|
|
|
</just>
|
|
|
|
</to>
|
|
|
|
</path>
|
|
|
|
</foo>
|
|
|
|
""")
|
|
|
|
|
2010-08-25 18:40:16 +00:00
|
|
|
def testMatch(self):
|
|
|
|
"""Test matching a stanza against an XPath expression."""
|
|
|
|
|
|
|
|
class TestSubStanza(ElementBase):
|
|
|
|
name = "sub"
|
2010-08-25 18:54:09 +00:00
|
|
|
namespace = "baz"
|
2010-08-25 18:40:16 +00:00
|
|
|
interfaces = set(('attrib',))
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
2010-08-30 21:12:10 +00:00
|
|
|
interfaces = set(('bar','baz', 'qux'))
|
|
|
|
sub_interfaces = set(('qux',))
|
2010-08-25 18:40:16 +00:00
|
|
|
subitem = (TestSubStanza,)
|
|
|
|
|
2010-08-30 21:12:10 +00:00
|
|
|
def setQux(self, value):
|
2010-10-18 01:38:22 +00:00
|
|
|
self._set_sub_text('qux', text=value)
|
2010-08-30 21:12:10 +00:00
|
|
|
|
|
|
|
def getQux(self):
|
2010-10-18 01:38:22 +00:00
|
|
|
return self._get_sub_text('qux')
|
2010-08-30 21:12:10 +00:00
|
|
|
|
2010-08-25 18:40:16 +00:00
|
|
|
class TestStanzaPlugin(ElementBase):
|
|
|
|
name = "plugin"
|
2010-08-30 18:55:30 +00:00
|
|
|
namespace = "http://test/slash/bar"
|
2010-08-25 18:40:16 +00:00
|
|
|
interfaces = set(('attrib',))
|
|
|
|
|
2010-10-18 01:38:22 +00:00
|
|
|
register_stanza_plugin(TestStanza, TestStanzaPlugin)
|
2010-08-25 18:40:16 +00:00
|
|
|
|
|
|
|
stanza = TestStanza()
|
2010-08-26 17:49:36 +00:00
|
|
|
self.failUnless(stanza.match("foo"),
|
2010-08-25 18:40:16 +00:00
|
|
|
"Stanza did not match its own tag name.")
|
|
|
|
|
2010-08-25 18:54:09 +00:00
|
|
|
self.failUnless(stanza.match("{foo}foo"),
|
|
|
|
"Stanza did not match its own namespaced name.")
|
|
|
|
|
2010-08-25 18:40:16 +00:00
|
|
|
stanza['bar'] = 'a'
|
|
|
|
self.failUnless(stanza.match("foo@bar=a"),
|
|
|
|
"Stanza did not match its own name with attribute value check.")
|
|
|
|
|
|
|
|
stanza['baz'] = 'b'
|
|
|
|
self.failUnless(stanza.match("foo@bar=a@baz=b"),
|
|
|
|
"Stanza did not match its own name with multiple attributes.")
|
|
|
|
|
2010-08-30 21:12:10 +00:00
|
|
|
stanza['qux'] = 'c'
|
|
|
|
self.failUnless(stanza.match("foo/qux"),
|
|
|
|
"Stanza did not match with subelements.")
|
|
|
|
|
|
|
|
stanza['qux'] = ''
|
|
|
|
self.failUnless(stanza.match("foo/qux") == False,
|
|
|
|
"Stanza matched missing subinterface element.")
|
|
|
|
|
|
|
|
self.failUnless(stanza.match("foo/bar") == False,
|
|
|
|
"Stanza matched nonexistent element.")
|
|
|
|
|
2010-08-25 18:40:16 +00:00
|
|
|
stanza['plugin']['attrib'] = 'c'
|
|
|
|
self.failUnless(stanza.match("foo/plugin@attrib=c"),
|
|
|
|
"Stanza did not match with plugin and attribute.")
|
|
|
|
|
2010-08-30 18:55:30 +00:00
|
|
|
self.failUnless(stanza.match("foo/{http://test/slash/bar}plugin"),
|
2010-08-25 18:54:09 +00:00
|
|
|
"Stanza did not match with namespaced plugin.")
|
|
|
|
|
2010-08-25 18:40:16 +00:00
|
|
|
substanza = TestSubStanza()
|
|
|
|
substanza['attrib'] = 'd'
|
|
|
|
stanza.append(substanza)
|
|
|
|
self.failUnless(stanza.match("foo/sub@attrib=d"),
|
|
|
|
"Stanza did not match with substanzas and attribute.")
|
2010-08-25 18:54:09 +00:00
|
|
|
|
|
|
|
self.failUnless(stanza.match("foo/{baz}sub"),
|
|
|
|
"Stanza did not match with namespaced substanza.")
|
2010-08-26 17:49:36 +00:00
|
|
|
|
|
|
|
def testComparisons(self):
|
|
|
|
"""Test comparing ElementBase objects."""
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
|
|
|
|
stanza1 = TestStanza()
|
|
|
|
stanza1['bar'] = 'a'
|
|
|
|
|
|
|
|
self.failUnless(stanza1,
|
|
|
|
"Stanza object does not evaluate to True")
|
|
|
|
|
|
|
|
stanza2 = TestStanza()
|
|
|
|
stanza2['baz'] = 'b'
|
|
|
|
|
|
|
|
self.failUnless(stanza1 != stanza2,
|
|
|
|
"Different stanza objects incorrectly compared equal.")
|
|
|
|
|
|
|
|
stanza1['baz'] = 'b'
|
|
|
|
stanza2['bar'] = 'a'
|
|
|
|
|
|
|
|
self.failUnless(stanza1 == stanza2,
|
|
|
|
"Equal stanzas incorrectly compared inequal.")
|
|
|
|
|
|
|
|
def testKeys(self):
|
|
|
|
"""Test extracting interface names from a stanza object."""
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
plugin_attrib = 'qux'
|
|
|
|
|
2010-10-18 01:38:22 +00:00
|
|
|
register_stanza_plugin(TestStanza, TestStanza)
|
2010-08-26 17:49:36 +00:00
|
|
|
|
|
|
|
stanza = TestStanza()
|
|
|
|
|
|
|
|
self.failUnless(set(stanza.keys()) == set(('bar', 'baz')),
|
|
|
|
"Returned set of interface keys does not match expected.")
|
|
|
|
|
|
|
|
stanza.enable('qux')
|
|
|
|
|
|
|
|
self.failUnless(set(stanza.keys()) == set(('bar', 'baz', 'qux')),
|
|
|
|
"Incorrect set of interface and plugin keys.")
|
|
|
|
|
|
|
|
def testGet(self):
|
|
|
|
"""Test accessing stanza interfaces using get()."""
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
|
|
|
|
stanza = TestStanza()
|
|
|
|
stanza['bar'] = 'a'
|
|
|
|
|
|
|
|
self.failUnless(stanza.get('bar') == 'a',
|
|
|
|
"Incorrect value returned by stanza.get")
|
|
|
|
|
|
|
|
self.failUnless(stanza.get('baz', 'b') == 'b',
|
|
|
|
"Incorrect default value returned by stanza.get")
|
|
|
|
|
|
|
|
def testSubStanzas(self):
|
|
|
|
"""Test manipulating substanzas of a stanza object."""
|
|
|
|
|
|
|
|
class TestSubStanza(ElementBase):
|
|
|
|
name = "foobar"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('qux',))
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
subitem = (TestSubStanza,)
|
|
|
|
|
|
|
|
stanza = TestStanza()
|
|
|
|
substanza1 = TestSubStanza()
|
|
|
|
substanza2 = TestSubStanza()
|
|
|
|
substanza1['qux'] = 'a'
|
|
|
|
substanza2['qux'] = 'b'
|
|
|
|
|
|
|
|
# Test appending substanzas
|
|
|
|
self.failUnless(len(stanza) == 0,
|
|
|
|
"Incorrect empty stanza size.")
|
|
|
|
|
|
|
|
stanza.append(substanza1)
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-26 17:49:36 +00:00
|
|
|
<foo xmlns="foo">
|
|
|
|
<foobar qux="a" />
|
|
|
|
</foo>
|
2010-10-07 23:42:28 +00:00
|
|
|
""", use_values=False)
|
2010-08-26 17:49:36 +00:00
|
|
|
self.failUnless(len(stanza) == 1,
|
|
|
|
"Incorrect stanza size with 1 substanza.")
|
|
|
|
|
|
|
|
stanza.append(substanza2)
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-26 17:49:36 +00:00
|
|
|
<foo xmlns="foo">
|
|
|
|
<foobar qux="a" />
|
|
|
|
<foobar qux="b" />
|
|
|
|
</foo>
|
2010-10-07 23:42:28 +00:00
|
|
|
""", use_values=False)
|
2010-08-26 17:49:36 +00:00
|
|
|
self.failUnless(len(stanza) == 2,
|
|
|
|
"Incorrect stanza size with 2 substanzas.")
|
|
|
|
|
|
|
|
# Test popping substanzas
|
|
|
|
stanza.pop(0)
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(stanza, """
|
2010-08-26 17:49:36 +00:00
|
|
|
<foo xmlns="foo">
|
|
|
|
<foobar qux="b" />
|
|
|
|
</foo>
|
2010-10-07 23:42:28 +00:00
|
|
|
""", use_values=False)
|
2010-08-26 17:49:36 +00:00
|
|
|
|
|
|
|
# Test iterating over substanzas
|
|
|
|
stanza.append(substanza1)
|
|
|
|
results = []
|
|
|
|
for substanza in stanza:
|
|
|
|
results.append(substanza['qux'])
|
|
|
|
self.failUnless(results == ['b', 'a'],
|
|
|
|
"Iteration over substanzas failed: %s." % str(results))
|
|
|
|
|
|
|
|
def testCopy(self):
|
|
|
|
"""Test copying stanza objects."""
|
|
|
|
|
|
|
|
class TestStanza(ElementBase):
|
|
|
|
name = "foo"
|
|
|
|
namespace = "foo"
|
|
|
|
interfaces = set(('bar', 'baz'))
|
|
|
|
|
|
|
|
stanza1 = TestStanza()
|
|
|
|
stanza1['bar'] = 'a'
|
|
|
|
|
|
|
|
stanza2 = stanza1.__copy__()
|
|
|
|
|
|
|
|
self.failUnless(stanza1 == stanza2,
|
|
|
|
"Copied stanzas are not equal to each other.")
|
|
|
|
|
|
|
|
stanza1['baz'] = 'b'
|
|
|
|
self.failUnless(stanza1 != stanza2,
|
|
|
|
"Divergent stanza copies incorrectly compared equal.")
|
2010-08-20 00:41:26 +00:00
|
|
|
|
2010-08-13 16:24:47 +00:00
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TestElementBase)
|