diff options
author | mathieui <mathieui@mathieui.net> | 2015-02-12 12:23:47 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2015-02-12 12:23:47 +0100 |
commit | 1e2665df19a866d5676abec566b9d8f190ecdc80 (patch) | |
tree | 9fe2f0c501d376291f3d9efc3e9550b34afbf6c7 /tests/test_stream_presence.py | |
parent | 4d063e287e1bb2010d115325a3c8c6ca7c542bfc (diff) | |
download | slixmpp-1e2665df19a866d5676abec566b9d8f190ecdc80.tar.gz slixmpp-1e2665df19a866d5676abec566b9d8f190ecdc80.tar.bz2 slixmpp-1e2665df19a866d5676abec566b9d8f190ecdc80.tar.xz slixmpp-1e2665df19a866d5676abec566b9d8f190ecdc80.zip |
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
Diffstat (limited to 'tests/test_stream_presence.py')
-rw-r--r-- | tests/test_stream_presence.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/test_stream_presence.py b/tests/test_stream_presence.py index d7394b4b..ea2337a2 100644 --- a/tests/test_stream_presence.py +++ b/tests/test_stream_presence.py @@ -38,9 +38,6 @@ class TestStreamPresence(SlixTest): to="tester@localhost"/> """) - # Give event queue time to process. - time.sleep(0.1) - self.assertEqual(events, set(('unavailable',)), "Got offline incorrectly triggered: %s." % events) @@ -83,9 +80,6 @@ class TestStreamPresence(SlixTest): type="unavailable" /> """) - # Give event queue time to process. - time.sleep(0.1) - self.assertEqual(events, ['got_offline'], "Got offline incorrectly triggered: %s" % events) @@ -108,9 +102,6 @@ class TestStreamPresence(SlixTest): to="tester@localhost" /> """) - # Give event queue time to process. - time.sleep(0.1) - expected = set(('presence_available', 'got_online')) self.assertEqual(events, expected, "Incorrect events triggered: %s" % events) @@ -242,8 +233,6 @@ class TestStreamPresence(SlixTest): <presence type="unsubscribed" /> """) - time.sleep(.5) - self.assertEqual(events, ptypes, "Not all events raised: %s" % events) @@ -364,8 +353,6 @@ class TestStreamPresence(SlixTest): </presence> """) - time.sleep(0.3) - self.assertEqual(events, ['available', 'away', 'dnd', 'chat', 'xa', 'unavailable', 'available', 'available', 'dnd'], |