2014-07-17 12:19:04 +00:00
|
|
|
from slixmpp.xmlstream.matcher import MatchXPath
|
|
|
|
from slixmpp.xmlstream.handler import Callback
|
|
|
|
from slixmpp.exceptions import XMPPError
|
2013-07-26 11:02:26 +00:00
|
|
|
import unittest
|
2014-07-17 12:19:04 +00:00
|
|
|
from slixmpp.test import SlixTest
|
2010-10-25 19:09:56 +00:00
|
|
|
|
|
|
|
|
2014-07-17 12:19:04 +00:00
|
|
|
class TestStreamExceptions(SlixTest):
|
2010-10-25 19:09:56 +00:00
|
|
|
"""
|
|
|
|
Test handling roster updates.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
self.stream_close()
|
|
|
|
|
2011-06-20 23:25:56 +00:00
|
|
|
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)
|
|
|
|
|
2011-07-01 22:15:13 +00:00
|
|
|
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 testExceptionContinueWorking(self):
|
2014-07-17 12:19:04 +00:00
|
|
|
"""Test that Slixmpp continues to respond after an XMPPError is raised."""
|
2011-07-01 22:15:13 +00:00
|
|
|
|
|
|
|
def message(msg):
|
|
|
|
msg.reply()
|
|
|
|
msg['body'] = 'Body changed'
|
|
|
|
raise XMPPError(clear=False)
|
2011-06-20 23:25:56 +00:00
|
|
|
|
|
|
|
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>
|
|
|
|
""")
|
|
|
|
|
2011-07-01 22:15:13 +00:00
|
|
|
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>
|
|
|
|
""")
|
|
|
|
|
2010-10-25 19:09:56 +00:00
|
|
|
def testXMPPErrorException(self):
|
|
|
|
"""Test raising an XMPPError exception."""
|
|
|
|
|
|
|
|
def message(msg):
|
|
|
|
raise XMPPError(condition='feature-not-implemented',
|
|
|
|
text="We don't do things that way here.",
|
|
|
|
etype='cancel',
|
|
|
|
extension='foo',
|
|
|
|
extension_ns='foo:error',
|
|
|
|
extension_args={'test': 'true'})
|
|
|
|
|
|
|
|
self.stream_start()
|
|
|
|
self.xmpp.add_event_handler('message', message)
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.recv("""
|
2010-10-25 19:09:56 +00:00
|
|
|
<message>
|
|
|
|
<body>This is going to cause an error.</body>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.send("""
|
2010-10-25 19:09:56 +00:00
|
|
|
<message type="error">
|
2011-03-24 17:14:26 +00:00
|
|
|
<error type="cancel" code="501">
|
2010-10-25 19:09:56 +00:00
|
|
|
<feature-not-implemented
|
|
|
|
xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" />
|
|
|
|
<text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas">
|
|
|
|
We don't do things that way here.
|
|
|
|
</text>
|
|
|
|
<foo xmlns="foo:error" test="true" />
|
|
|
|
</error>
|
|
|
|
</message>
|
|
|
|
""", use_values=False)
|
|
|
|
|
2011-02-11 20:20:26 +00:00
|
|
|
def testIqErrorException(self):
|
|
|
|
"""Test using error exceptions with Iq stanzas."""
|
|
|
|
|
|
|
|
def handle_iq(iq):
|
|
|
|
raise XMPPError(condition='feature-not-implemented',
|
|
|
|
text="We don't do things that way here.",
|
|
|
|
etype='cancel',
|
|
|
|
clear=False)
|
|
|
|
|
|
|
|
self.stream_start()
|
|
|
|
self.xmpp.register_handler(
|
|
|
|
Callback(
|
|
|
|
'Test Iq',
|
|
|
|
MatchXPath('{%s}iq/{test}query' % self.xmpp.default_ns),
|
|
|
|
handle_iq))
|
|
|
|
|
|
|
|
self.recv("""
|
|
|
|
<iq type="get" id="0">
|
|
|
|
<query xmlns="test" />
|
|
|
|
</iq>
|
|
|
|
""")
|
|
|
|
|
|
|
|
self.send("""
|
|
|
|
<iq type="error" id="0">
|
|
|
|
<query xmlns="test" />
|
2011-03-24 17:14:26 +00:00
|
|
|
<error type="cancel" code="501">
|
2011-02-11 20:20:26 +00:00
|
|
|
<feature-not-implemented
|
|
|
|
xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" />
|
|
|
|
<text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas">
|
|
|
|
We don't do things that way here.
|
|
|
|
</text>
|
|
|
|
</error>
|
|
|
|
</iq>
|
|
|
|
""", use_values=False)
|
|
|
|
|
2010-10-25 19:09:56 +00:00
|
|
|
def testThreadedXMPPErrorException(self):
|
|
|
|
"""Test raising an XMPPError exception in a threaded handler."""
|
|
|
|
|
|
|
|
def message(msg):
|
|
|
|
raise XMPPError(condition='feature-not-implemented',
|
|
|
|
text="We don't do things that way here.",
|
|
|
|
etype='cancel')
|
|
|
|
|
|
|
|
self.stream_start()
|
|
|
|
self.xmpp.add_event_handler('message', message,
|
|
|
|
threaded=True)
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.recv("""
|
2010-10-25 19:09:56 +00:00
|
|
|
<message>
|
|
|
|
<body>This is going to cause an error.</body>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.send("""
|
2010-10-25 19:09:56 +00:00
|
|
|
<message type="error">
|
2011-03-24 17:14:26 +00:00
|
|
|
<error type="cancel" code="501">
|
2010-10-25 19:09:56 +00:00
|
|
|
<feature-not-implemented
|
|
|
|
xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" />
|
|
|
|
<text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas">
|
|
|
|
We don't do things that way here.
|
|
|
|
</text>
|
|
|
|
</error>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
|
|
|
def testUnknownException(self):
|
|
|
|
"""Test raising an generic exception in a threaded handler."""
|
|
|
|
|
2010-12-17 18:11:03 +00:00
|
|
|
raised_errors = []
|
|
|
|
|
2010-10-25 19:09:56 +00:00
|
|
|
def message(msg):
|
|
|
|
raise ValueError("Did something wrong")
|
|
|
|
|
2010-12-17 18:11:03 +00:00
|
|
|
def catch_error(*args, **kwargs):
|
|
|
|
raised_errors.append(True)
|
|
|
|
|
2010-10-25 19:09:56 +00:00
|
|
|
self.stream_start()
|
2011-07-01 22:15:13 +00:00
|
|
|
self.xmpp.exception = catch_error
|
2010-10-25 19:09:56 +00:00
|
|
|
self.xmpp.add_event_handler('message', message)
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.recv("""
|
2010-10-25 19:09:56 +00:00
|
|
|
<message>
|
|
|
|
<body>This is going to cause an error.</body>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
2010-12-17 18:11:03 +00:00
|
|
|
self.send("""
|
|
|
|
<message type="error">
|
2011-03-24 17:14:26 +00:00
|
|
|
<error type="cancel" code="500">
|
2010-12-17 18:11:03 +00:00
|
|
|
<undefined-condition
|
|
|
|
xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" />
|
|
|
|
<text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas">
|
2014-07-17 12:19:04 +00:00
|
|
|
Slixmpp got into trouble.
|
2010-12-17 18:11:03 +00:00
|
|
|
</text>
|
|
|
|
</error>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
|
|
|
self.assertEqual(raised_errors, [True], "Exception was not raised: %s" % raised_errors)
|
|
|
|
|
2011-07-01 22:15:13 +00:00
|
|
|
def testUnknownException(self):
|
2014-07-17 12:19:04 +00:00
|
|
|
"""Test Slixmpp continues to respond after an unknown exception."""
|
2011-07-01 22:15:13 +00:00
|
|
|
|
|
|
|
raised_errors = []
|
|
|
|
|
|
|
|
def message(msg):
|
|
|
|
raise ValueError("Did something wrong")
|
|
|
|
|
|
|
|
def catch_error(*args, **kwargs):
|
|
|
|
raised_errors.append(True)
|
|
|
|
|
|
|
|
self.stream_start()
|
|
|
|
self.xmpp.exception = catch_error
|
|
|
|
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">
|
|
|
|
<error type="cancel" code="500">
|
|
|
|
<undefined-condition
|
|
|
|
xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" />
|
|
|
|
<text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas">
|
2014-07-17 12:19:04 +00:00
|
|
|
Slixmpp got into trouble.
|
2011-07-01 22:15:13 +00:00
|
|
|
</text>
|
|
|
|
</error>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
|
|
|
self.recv("""
|
|
|
|
<message>
|
|
|
|
<body>This is going to cause an error.</body>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
|
|
|
self.send("""
|
|
|
|
<message type="error">
|
|
|
|
<error type="cancel" code="500">
|
|
|
|
<undefined-condition
|
|
|
|
xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" />
|
|
|
|
<text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas">
|
2014-07-17 12:19:04 +00:00
|
|
|
Slixmpp got into trouble.
|
2011-07-01 22:15:13 +00:00
|
|
|
</text>
|
|
|
|
</error>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
|
|
|
self.assertEqual(raised_errors, [True, True], "Exceptions were not raised: %s" % raised_errors)
|
2010-10-25 19:09:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TestStreamExceptions)
|