summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2010-06-22 23:09:50 -0400
committerLance Stout <lancestout@gmail.com>2010-06-22 23:22:50 -0400
commit646a609c0b4e19203b4e2190df9b58fbe40c43fb (patch)
tree461c08742314f1d017a7e38d1f40e3f671f65770 /tests
parent8bb0f5e34c443a9efc05dadb2a77a95ac94c2c98 (diff)
downloadslixmpp-646a609c0b4e19203b4e2190df9b58fbe40c43fb.tar.gz
slixmpp-646a609c0b4e19203b4e2190df9b58fbe40c43fb.tar.bz2
slixmpp-646a609c0b4e19203b4e2190df9b58fbe40c43fb.tar.xz
slixmpp-646a609c0b4e19203b4e2190df9b58fbe40c43fb.zip
Added plugin and tests for XEP-0033, Extended Stanza Addresses.
XEP-0033 can be useful for interacting with XMPP<->Email gateways.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_addresses.py83
1 files changed, 83 insertions, 0 deletions
diff --git a/tests/test_addresses.py b/tests/test_addresses.py
new file mode 100644
index 00000000..eb57537a
--- /dev/null
+++ b/tests/test_addresses.py
@@ -0,0 +1,83 @@
+import unittest
+from xml.etree import cElementTree as ET
+from sleekxmpp.xmlstream.matcher.stanzapath import StanzaPath
+from . import xmlcompare
+
+import sleekxmpp.plugins.xep_0033 as addr
+
+
+def stanzaPlugin(stanza, plugin):
+ stanza.plugin_attrib_map[plugin.plugin_attrib] = plugin
+ stanza.plugin_tag_map["{%s}%s" % (plugin.namespace, plugin.name)] = plugin
+
+
+class testaddresses(unittest.TestCase):
+ def setUp(self):
+ self.addr = addr
+ stanzaPlugin(self.addr.Message, self.addr.Addresses)
+
+ def try2Methods(self, xmlstring, msg):
+ msg2 = self.addr.Message(None, self.addr.ET.fromstring(xmlstring))
+ self.failUnless(xmlstring == str(msg) == str(msg2),
+ """Three methods for creating stanza don't match:\n%s\n%s\n%s""" % (xmlstring, str(msg), str(msg2)))
+
+ def testAddAddress(self):
+ """Testing adding extended stanza address."""
+ xmlstring = """<message><addresses xmlns="http://jabber.org/protocol/address"><address jid="to@header1.org" type="to" /></addresses></message>"""
+
+ msg = self.addr.Message()
+ msg['addresses'].addAddress(atype='to', jid='to@header1.org')
+ self.try2Methods(xmlstring, msg)
+
+ xmlstring = """<message><addresses xmlns="http://jabber.org/protocol/address"><address jid="replyto@header1.org" type="replyto" desc="Reply address" /></addresses></message>"""
+
+ msg = self.addr.Message()
+ msg['addresses'].addAddress(atype='replyto', jid='replyto@header1.org', desc='Reply address')
+ self.try2Methods(xmlstring, msg)
+
+ def testAddAddresses(self):
+ """Testing adding multiple extended stanza addresses."""
+
+ xmlstring = """<message><addresses xmlns="http://jabber.org/protocol/address"><address jid="replyto@header1.org" type="replyto" desc="Reply address" /><address jid="cc@header2.org" type="cc" /><address jid="bcc@header2.org" type="bcc" /></addresses></message>"""
+
+ msg = self.addr.Message()
+ msg['addresses'].setAddresses([{'type':'replyto', 'jid':'replyto@header1.org', 'desc':'Reply address'},
+ {'type':'cc', 'jid':'cc@header2.org'},
+ {'type':'bcc', 'jid':'bcc@header2.org'}])
+ self.try2Methods(xmlstring, msg)
+
+ msg = self.addr.Message()
+ msg['addresses']['replyto'] = [{'jid':'replyto@header1.org', 'desc':'Reply address'}]
+ msg['addresses']['cc'] = [{'jid':'cc@header2.org'}]
+ msg['addresses']['bcc'] = [{'jid':'bcc@header2.org'}]
+ self.try2Methods(xmlstring, msg)
+
+ def testAddURI(self):
+ """Testing adding URI attribute to extended stanza address."""
+
+ xmlstring = """<message><addresses xmlns="http://jabber.org/protocol/address"><address node="foo" jid="to@header1.org" type="to" /></addresses></message>"""
+ msg = self.addr.Message()
+ addr = msg['addresses'].addAddress(atype='to', jid='to@header1.org', node='foo')
+ self.try2Methods(xmlstring, msg)
+
+ xmlstring = """<message><addresses xmlns="http://jabber.org/protocol/address"><address type="to" uri="mailto:to@header2.org" /></addresses></message>"""
+ addr['uri'] = 'mailto:to@header2.org'
+ self.try2Methods(xmlstring, msg)
+
+ def testDelivered(self):
+ """Testing delivered attribute of extended stanza addresses."""
+
+ xmlstring = """<message><addresses xmlns="http://jabber.org/protocol/address"><address %sjid="to@header1.org" type="to" /></addresses></message>"""
+
+ msg = self.addr.Message()
+ addr = msg['addresses'].addAddress(jid='to@header1.org', atype='to')
+ self.try2Methods(xmlstring % '', msg)
+
+ addr['delivered'] = True
+ self.try2Methods(xmlstring % 'delivered="true" ', msg)
+
+ addr['delivered'] = False
+ self.try2Methods(xmlstring % '', msg)
+
+
+suite = unittest.TestLoader().loadTestsFromTestCase(testaddresses)