diff options
author | Lance Stout <lancestout@gmail.com> | 2011-03-18 15:51:44 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-03-18 15:51:44 -0400 |
commit | f2c99798a6cf0dafe10fd547b036ecbb7a32569b (patch) | |
tree | 8a5d8192e3e0ed06cdb124a15daad5039a62e479 /tests/test_stream_xep_0085.py | |
parent | d5b3a5282763e4f74816ff392bd8cd47dd9f7a95 (diff) | |
parent | 996ca52471931ccb3ac5a0f661e52fdc400db64b (diff) | |
download | slixmpp-f2c99798a6cf0dafe10fd547b036ecbb7a32569b.tar.gz slixmpp-f2c99798a6cf0dafe10fd547b036ecbb7a32569b.tar.bz2 slixmpp-f2c99798a6cf0dafe10fd547b036ecbb7a32569b.tar.xz slixmpp-f2c99798a6cf0dafe10fd547b036ecbb7a32569b.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) |