summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2010-08-30 17:12:10 -0400
committerLance Stout <lancestout@gmail.com>2010-08-30 17:12:10 -0400
commit3749c1b88c4774b85fcee1e26e8bce8dbeef23c7 (patch)
tree8a5e889ce11102ca9466bf2375c69a04914f6b9f /tests
parent998741b87e7babc6e0af9bcf79f10f4422ba96f1 (diff)
downloadslixmpp-3749c1b88c4774b85fcee1e26e8bce8dbeef23c7.tar.gz
slixmpp-3749c1b88c4774b85fcee1e26e8bce8dbeef23c7.tar.bz2
slixmpp-3749c1b88c4774b85fcee1e26e8bce8dbeef23c7.tar.xz
slixmpp-3749c1b88c4774b85fcee1e26e8bce8dbeef23c7.zip
Fixed ElementBase.match to match using sub_interface elements.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_elementbase.py20
1 files changed, 19 insertions, 1 deletions
diff --git a/tests/test_elementbase.py b/tests/test_elementbase.py
index 8898b3fc..dfd37b53 100644
--- a/tests/test_elementbase.py
+++ b/tests/test_elementbase.py
@@ -454,9 +454,16 @@ class TestElementBase(SleekTest):
class TestStanza(ElementBase):
name = "foo"
namespace = "foo"
- interfaces = set(('bar','baz'))
+ interfaces = set(('bar','baz', 'qux'))
+ sub_interfaces = set(('qux',))
subitem = (TestSubStanza,)
+ def setQux(self, value):
+ self._setSubText('qux', text=value)
+
+ def getQux(self):
+ return self._getSubText('qux')
+
class TestStanzaPlugin(ElementBase):
name = "plugin"
namespace = "http://test/slash/bar"
@@ -479,6 +486,17 @@ class TestElementBase(SleekTest):
self.failUnless(stanza.match("foo@bar=a@baz=b"),
"Stanza did not match its own name with multiple attributes.")
+ 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.")
+
stanza['plugin']['attrib'] = 'c'
self.failUnless(stanza.match("foo/plugin@attrib=c"),
"Stanza did not match with plugin and attribute.")