summaryrefslogtreecommitdiff
path: root/itests
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-02-13 16:44:08 +0100
committermathieui <mathieui@mathieui.net>2021-02-13 20:23:20 +0100
commit654178b9604833f2799b512c9244cbb27f9f3e15 (patch)
treef31ba00bb91ae76d2598c549c8ec514b4007bbd0 /itests
parent02e0afbf0f5e56b15eec481bb4750422715b9562 (diff)
downloadslixmpp-654178b9604833f2799b512c9244cbb27f9f3e15.tar.gz
slixmpp-654178b9604833f2799b512c9244cbb27f9f3e15.tar.bz2
slixmpp-654178b9604833f2799b512c9244cbb27f9f3e15.tar.xz
slixmpp-654178b9604833f2799b512c9244cbb27f9f3e15.zip
itests: add IBB test
Diffstat (limited to 'itests')
-rw-r--r--itests/test_ibb.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/itests/test_ibb.py b/itests/test_ibb.py
new file mode 100644
index 00000000..7cda8e22
--- /dev/null
+++ b/itests/test_ibb.py
@@ -0,0 +1,40 @@
+import asyncio
+import unittest
+from slixmpp.test.integration import SlixIntegration
+
+
+class TestIBB(SlixIntegration):
+ async def asyncSetUp(self):
+ await super().asyncSetUp()
+ self.add_client(
+ self.envjid('CI_ACCOUNT1'),
+ self.envstr('CI_ACCOUNT1_PASSWORD'),
+ )
+ self.add_client(
+ self.envjid('CI_ACCOUNT2'),
+ self.envstr('CI_ACCOUNT2_PASSWORD'),
+ )
+ config = {'block_size': 256, 'auto_accept': True}
+ self.register_plugins(['xep_0047'], [config])
+ self.data = b'to' * 257
+ await self.connect_clients()
+
+ async def test_ibb(self):
+ """Check we can send and receive data through ibb"""
+ coro_in = self.clients[1].wait_until('ibb_stream_start')
+ coro_out = self.clients[0]['xep_0047'].open_stream(
+ self.clients[1].boundjid,
+ sid='toto'
+ )
+ instream, outstream = await asyncio.gather(coro_in, coro_out)
+
+ async def send_and_close():
+ await outstream.sendall(self.data)
+ await outstream.close()
+
+ in_data, _ = await asyncio.gather(instream.gather(), send_and_close())
+
+ self.assertEqual(self.data, in_data)
+
+
+suite = unittest.TestLoader().loadTestsFromTestCase(TestIBB)