Update the test suite.
- monkey-patch our own monkey-patched idle_call to run events immediatly rather than adding them to the event queue, and add a fake transport with a fake socket. - remove the test file related to xep_0059 as it relies on blocking behavior, and comment out one xep_0030 test uses xep_0059 - remove many instances of threading and sleep()s because they do nothing except waste time and introduce race conditions. - keep exactly two sleep() in IoT xeps because they rely on timeouts
This commit is contained in:
@@ -15,13 +15,8 @@ class TestOOB(SlixTest):
|
||||
|
||||
url = 'http://github.com/fritzy/Slixmpp/blob/master/README'
|
||||
|
||||
t = threading.Thread(
|
||||
name='send_oob',
|
||||
target=self.xmpp['xep_0066'].send_oob,
|
||||
args=('user@example.com', url),
|
||||
kwargs={'desc': 'Slixmpp README'})
|
||||
|
||||
t.start()
|
||||
self.xmpp['xep_0066'].send_oob('user@example.com', url,
|
||||
desc='Slixmpp README')
|
||||
|
||||
self.send("""
|
||||
<iq to="user@example.com" type="set" id="1">
|
||||
@@ -38,7 +33,5 @@ class TestOOB(SlixTest):
|
||||
from="user@example.com" />
|
||||
""")
|
||||
|
||||
t.join()
|
||||
|
||||
|
||||
suite = unittest.TestLoader().loadTestsFromTestCase(TestOOB)
|
||||
|
||||
Reference in New Issue
Block a user