summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-06-20 16:27:39 -0700
committerLance Stout <lancestout@gmail.com>2011-06-20 16:27:39 -0700
commit847510c6b577f889cdba5deaa0bb271475cc7c7f (patch)
tree100daed3b22acf6c7c6d338bc9c4f73fdb175467 /tests
parent393d702e77a82231a20b42a75e191b7e00b3f5c3 (diff)
parentd8d9e8df16c07bd13bbac72e4445a2930407b244 (diff)
downloadslixmpp-847510c6b577f889cdba5deaa0bb271475cc7c7f.tar.gz
slixmpp-847510c6b577f889cdba5deaa0bb271475cc7c7f.tar.bz2
slixmpp-847510c6b577f889cdba5deaa0bb271475cc7c7f.tar.xz
slixmpp-847510c6b577f889cdba5deaa0bb271475cc7c7f.zip
Merge branch 'develop' into exceptions
Diffstat (limited to 'tests')
-rw-r--r--tests/test_stream_exceptions.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/test_stream_exceptions.py b/tests/test_stream_exceptions.py
index bc01c2a7..1143ce28 100644
--- a/tests/test_stream_exceptions.py
+++ b/tests/test_stream_exceptions.py
@@ -15,6 +15,35 @@ class TestStreamExceptions(SleekTest):
sys.excepthook = sys.__excepthook__
self.stream_close()
+ def testExceptionReply(self):
+ """Test that raising an exception replies with the original stanza."""
+
+ def message(msg):
+ msg.reply()
+ msg['body'] = 'Body changed'
+ raise XMPPError(clear=False)
+
+
+ sys.excepthook = lambda *args, **kwargs: None
+ self.stream_start()
+ self.xmpp.add_event_handler('message', message)
+
+ self.recv("""
+ <message>
+ <body>This is going to cause an error.</body>
+ </message>
+ """)
+
+ self.send("""
+ <message type="error">
+ <body>This is going to cause an error.</body>
+ <error type="cancel" code="500">
+ <undefined-condition
+ xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" />
+ </error>
+ </message>
+ """)
+
def testXMPPErrorException(self):
"""Test raising an XMPPError exception."""