summaryrefslogtreecommitdiff
path: root/tests/test_stream.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2010-07-14 15:24:37 -0400
committerLance Stout <lancestout@gmail.com>2010-07-14 15:32:14 -0400
commit35212c7991312b26e813afde3bf0bbe002058c11 (patch)
tree4bf10f48a1b8451fcf94c99cce444b991c27ac07 /tests/test_stream.py
parent48f0843ace5a8d383abe493b999e7bd4699598d7 (diff)
downloadslixmpp-35212c7991312b26e813afde3bf0bbe002058c11.tar.gz
slixmpp-35212c7991312b26e813afde3bf0bbe002058c11.tar.bz2
slixmpp-35212c7991312b26e813afde3bf0bbe002058c11.tar.xz
slixmpp-35212c7991312b26e813afde3bf0bbe002058c11.zip
Updated SleekTest to be able to simulate and test interactions with an XML stream.
Diffstat (limited to 'tests/test_stream.py')
-rw-r--r--tests/test_stream.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/test_stream.py b/tests/test_stream.py
new file mode 100644
index 00000000..eb4aaa59
--- /dev/null
+++ b/tests/test_stream.py
@@ -0,0 +1,34 @@
+from sleektest import *
+import sleekxmpp.plugins.xep_0033 as xep_0033
+
+
+class TestStreamTester(SleekTest):
+ """
+ Test that we can simulate and test a stanza stream.
+ """
+
+ def setUp(self):
+ self.streamStart()
+
+ def tearDown(self):
+ self.streamClose()
+
+ def testEcho(self):
+ def echo(msg):
+ msg.reply('Thanks for sending: %(body)s' % msg).send()
+
+ self.xmpp.add_event_handler('message', echo)
+
+ self.streamRecv("""
+ <message to="tester@localhost" from="user@localhost">
+ <body>Hi!</body>
+ </message>
+ """)
+
+ self.streamSendMessage("""
+ <message to="user@localhost" from="tester@localhost">
+ <body>Thanks for sending: Hi!</body>
+ </message>
+ """)
+
+suite = unittest.TestLoader().loadTestsFromTestCase(TestStreamTester)