2011-05-27 18:01:30 +00:00
|
|
|
import time
|
2013-07-26 11:02:26 +00:00
|
|
|
import unittest
|
2014-07-17 12:19:04 +00:00
|
|
|
from slixmpp.test import SlixTest
|
2010-07-14 19:24:37 +00:00
|
|
|
|
|
|
|
|
2014-07-17 12:19:04 +00:00
|
|
|
class TestStreamTester(SlixTest):
|
2010-07-14 19:24:37 +00:00
|
|
|
"""
|
|
|
|
Test that we can simulate and test a stanza stream.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def tearDown(self):
|
2010-10-07 13:22:27 +00:00
|
|
|
self.stream_close()
|
2010-07-14 19:24:37 +00:00
|
|
|
|
2010-10-06 22:10:04 +00:00
|
|
|
def testClientEcho(self):
|
|
|
|
"""Test that we can interact with a ClientXMPP instance."""
|
2010-10-07 13:22:27 +00:00
|
|
|
self.stream_start(mode='client')
|
2010-10-06 22:10:04 +00:00
|
|
|
|
2010-07-14 19:24:37 +00:00
|
|
|
def echo(msg):
|
2015-02-12 11:23:47 +00:00
|
|
|
msg.reply('Thanks for sending: %s' % msg['body']).send()
|
2010-10-06 22:46:23 +00:00
|
|
|
|
2010-07-14 19:24:37 +00:00
|
|
|
self.xmpp.add_event_handler('message', echo)
|
2010-10-06 22:46:23 +00:00
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.recv("""
|
2010-07-14 19:24:37 +00:00
|
|
|
<message to="tester@localhost" from="user@localhost">
|
|
|
|
<body>Hi!</body>
|
|
|
|
</message>
|
|
|
|
""")
|
2010-10-06 22:46:23 +00:00
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.send("""
|
2010-07-27 01:38:23 +00:00
|
|
|
<message to="user@localhost">
|
2010-07-14 19:24:37 +00:00
|
|
|
<body>Thanks for sending: Hi!</body>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
2010-10-06 22:10:04 +00:00
|
|
|
def testComponentEcho(self):
|
|
|
|
"""Test that we can interact with a ComponentXMPP instance."""
|
2010-10-07 13:22:27 +00:00
|
|
|
self.stream_start(mode='component')
|
2010-10-06 22:10:04 +00:00
|
|
|
|
|
|
|
def echo(msg):
|
|
|
|
msg.reply('Thanks for sending: %(body)s' % msg).send()
|
|
|
|
|
|
|
|
self.xmpp.add_event_handler('message', echo)
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.recv("""
|
2010-10-06 22:10:04 +00:00
|
|
|
<message to="tester.localhost" from="user@localhost">
|
|
|
|
<body>Hi!</body>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
2010-11-05 18:45:58 +00:00
|
|
|
self.send("""
|
2010-10-06 22:10:04 +00:00
|
|
|
<message to="user@localhost" from="tester.localhost">
|
|
|
|
<body>Thanks for sending: Hi!</body>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
2010-10-06 22:46:23 +00:00
|
|
|
def testSendStreamHeader(self):
|
|
|
|
"""Test that we can check a sent stream header."""
|
2010-10-07 13:22:27 +00:00
|
|
|
self.stream_start(mode='client', skip=False)
|
2010-11-05 18:45:58 +00:00
|
|
|
self.send_header(sto='localhost')
|
2010-10-06 22:46:23 +00:00
|
|
|
|
2010-07-14 19:24:37 +00:00
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TestStreamTester)
|