2010-10-07 14:58:13 +00:00
|
|
|
from sleekxmpp.test import *
|
2010-07-14 19:24:37 +00: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 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):
|
|
|
|
msg.reply('Thanks for sending: %(body)s' % msg).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-10-07 13:22:27 +00:00
|
|
|
self.stream_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-10-07 13:22:27 +00:00
|
|
|
self.stream_send_message("""
|
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-10-07 13:22:27 +00:00
|
|
|
self.stream_recv("""
|
2010-10-06 22:10:04 +00:00
|
|
|
<message to="tester.localhost" from="user@localhost">
|
|
|
|
<body>Hi!</body>
|
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
2010-10-07 13:22:27 +00:00
|
|
|
self.stream_send_message("""
|
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-10-07 14:58:13 +00:00
|
|
|
self.stream_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)
|