2010-10-07 10:58:13 -04:00
|
|
|
from sleekxmpp.test import *
|
2010-07-14 15:24:37 -04:00
|
|
|
import sleekxmpp.plugins.xep_0033 as xep_0033
|
|
|
|
|
|
|
|
|
|
|
|
class TestStreamTester(SleekTest):
|
|
|
|
"""
|
|
|
|
Test that we can simulate and test a stanza stream.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def tearDown(self):
|
2010-10-07 09:22:27 -04:00
|
|
|
self.stream_close()
|
2010-07-14 15:24:37 -04:00
|
|
|
|
2010-10-06 18:10:04 -04:00
|
|
|
def testClientEcho(self):
|
|
|
|
"""Test that we can interact with a ClientXMPP instance."""
|
2010-10-07 09:22:27 -04:00
|
|
|
self.stream_start(mode='client')
|
2010-10-06 18:10:04 -04:00
|
|
|
|
2010-07-14 15:24:37 -04:00
|
|
|
def echo(msg):
|
|
|
|
msg.reply('Thanks for sending: %(body)s' % msg).send()
|
2010-10-06 18:46:23 -04:00
|
|
|
|
2010-07-14 15:24:37 -04:00
|
|
|
self.xmpp.add_event_handler('message', echo)
|
2010-10-06 18:46:23 -04:00
|
|
|
|
2010-11-05 14:45:58 -04:00
|
|
|
self.recv("""
|
2010-07-14 15:24:37 -04:00
|
|
|
<message to="tester@localhost" from="user@localhost">
|
|
|
|
<body>Hi!</body>
|
|
|
|
</message>
|
|
|
|
""")
|
2010-10-06 18:46:23 -04:00
|
|
|
|
2010-11-05 14:45:58 -04:00
|
|
|
self.send("""
|
2010-07-26 21:38:23 -04:00
|
|
|
<message to="user@localhost">
|
2010-07-14 15:24:37 -04:00
|
|
|
<body>Thanks for sending: Hi!</body>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
2010-10-06 18:10:04 -04:00
|
|
|
def testComponentEcho(self):
|
|
|
|
"""Test that we can interact with a ComponentXMPP instance."""
|
2010-10-07 09:22:27 -04:00
|
|
|
self.stream_start(mode='component')
|
2010-10-06 18:10:04 -04:00
|
|
|
|
|
|
|
def echo(msg):
|
|
|
|
msg.reply('Thanks for sending: %(body)s' % msg).send()
|
|
|
|
|
|
|
|
self.xmpp.add_event_handler('message', echo)
|
|
|
|
|
2010-11-05 14:45:58 -04:00
|
|
|
self.recv("""
|
2010-10-06 18:10:04 -04:00
|
|
|
<message to="tester.localhost" from="user@localhost">
|
|
|
|
<body>Hi!</body>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
2010-11-05 14:45:58 -04:00
|
|
|
self.send("""
|
2010-10-06 18:10:04 -04:00
|
|
|
<message to="user@localhost" from="tester.localhost">
|
|
|
|
<body>Thanks for sending: Hi!</body>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
2010-10-06 18:46:23 -04:00
|
|
|
def testSendStreamHeader(self):
|
|
|
|
"""Test that we can check a sent stream header."""
|
2010-10-07 09:22:27 -04:00
|
|
|
self.stream_start(mode='client', skip=False)
|
2010-11-05 14:45:58 -04:00
|
|
|
self.send_header(sto='localhost')
|
2010-10-06 18:46:23 -04:00
|
|
|
|
2010-07-14 15:24:37 -04:00
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TestStreamTester)
|