summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoe Hildebrand <joe-github@cursive.net>2012-10-29 10:03:32 -0600
committerLance Stout <lancestout@gmail.com>2012-10-31 13:27:06 -0700
commit67235c42145ef40d841e9cb7ffa4bbcac490568a (patch)
treed8161d46af6e13075770725e678d71953518e3c1 /tests
parent12e8bb6ddcd686ec9835ba478a112984e65120a1 (diff)
downloadslixmpp-67235c42145ef40d841e9cb7ffa4bbcac490568a.tar.gz
slixmpp-67235c42145ef40d841e9cb7ffa4bbcac490568a.tar.bz2
slixmpp-67235c42145ef40d841e9cb7ffa4bbcac490568a.tar.xz
slixmpp-67235c42145ef40d841e9cb7ffa4bbcac490568a.zip
Allow IQ timeouts to be asynchronous, by passing a timeout_callback parameter to send(). An example modification of disco is included. If this approach is approved, I'll go through and update the other plugins.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_stream_handlers.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/test_stream_handlers.py b/tests/test_stream_handlers.py
index 7fd4e648..cdd128bb 100644
--- a/tests/test_stream_handlers.py
+++ b/tests/test_stream_handlers.py
@@ -153,6 +153,35 @@ class TestHandlers(SleekTest):
self.failUnless(events == ['foo'],
"Iq callback was not executed: %s" % events)
+ def testIqTimeoutCallback(self):
+ """Test that iq.send(tcallback=handle_foo, timeout_callback=handle_timeout) works."""
+ events = []
+
+ def handle_foo(iq):
+ events.append('foo')
+
+ def handle_timeout(iq):
+ events.append('timeout')
+
+ iq = self.Iq()
+ iq['type'] = 'get'
+ iq['id'] = 'test-foo'
+ iq['to'] = 'user@localhost'
+ iq['query'] = 'foo'
+ iq.send(callback=handle_foo, timeout_callback=handle_timeout, timeout=0.05)
+
+ self.send("""
+ <iq type="get" id="test-foo" to="user@localhost">
+ <query xmlns="foo" />
+ </iq>
+ """)
+
+ # Give event queue time to process
+ time.sleep(0.1)
+
+ self.failUnless(events == ['timeout'],
+ "Iq timeout was not executed: %s" % events)
+
def testMultipleHandlersForStanza(self):
"""
Test that multiple handlers for a single stanza work