diff options
author | Lance Stout <lancestout@gmail.com> | 2011-02-24 16:19:35 -0500 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-02-24 16:19:35 -0500 |
commit | c2161ca56b4c9c1ce8dabd32ed36cd4902b4eefc (patch) | |
tree | 500caa5f1ebaaf24044b4c81ed03d63ee464572c /tests/test_stream_xep_0085.py | |
parent | d5b3a5282763e4f74816ff392bd8cd47dd9f7a95 (diff) | |
parent | 45ccb313560fbfbc0354ebac9116ecb9ff963a47 (diff) | |
download | slixmpp-c2161ca56b4c9c1ce8dabd32ed36cd4902b4eefc.tar.gz slixmpp-c2161ca56b4c9c1ce8dabd32ed36cd4902b4eefc.tar.bz2 slixmpp-c2161ca56b4c9c1ce8dabd32ed36cd4902b4eefc.tar.xz slixmpp-c2161ca56b4c9c1ce8dabd32ed36cd4902b4eefc.zip |
Merge branch 'develop' into stream_features
Diffstat (limited to 'tests/test_stream_xep_0085.py')
-rw-r--r-- | tests/test_stream_xep_0085.py | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/tests/test_stream_xep_0085.py b/tests/test_stream_xep_0085.py new file mode 100644 index 00000000..2a814805 --- /dev/null +++ b/tests/test_stream_xep_0085.py @@ -0,0 +1,59 @@ +import threading +import time + +from sleekxmpp.test import * + + +class TestStreamChatStates(SleekTest): + + def tearDown(self): + self.stream_close() + + def testChatStates(self): + self.stream_start(mode='client', plugins=['xep_0030', 'xep_0085']) + + results = [] + + def handle_state(msg): + results.append(msg['chat_state']) + + self.xmpp.add_event_handler('chatstate_active', handle_state) + self.xmpp.add_event_handler('chatstate_inactive', handle_state) + self.xmpp.add_event_handler('chatstate_paused', handle_state) + self.xmpp.add_event_handler('chatstate_gone', handle_state) + self.xmpp.add_event_handler('chatstate_composing', handle_state) + + self.recv(""" + <message> + <active xmlns="http://jabber.org/protocol/chatstates" /> + </message> + """) + self.recv(""" + <message> + <inactive xmlns="http://jabber.org/protocol/chatstates" /> + </message> + """) + self.recv(""" + <message> + <paused xmlns="http://jabber.org/protocol/chatstates" /> + </message> + """) + self.recv(""" + <message> + <composing xmlns="http://jabber.org/protocol/chatstates" /> + </message> + """) + self.recv(""" + <message> + <gone xmlns="http://jabber.org/protocol/chatstates" /> + </message> + """) + + # Give event queue time to process + time.sleep(0.3) + expected = ['active', 'inactive', 'paused', 'composing', 'gone'] + self.failUnless(results == expected, + "Chat state event not handled: %s" % results) + + +suite = unittest.TestLoader().loadTestsFromTestCase(TestStreamChatStates) |