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