summaryrefslogtreecommitdiff
path: root/itests
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-02-13 17:41:09 +0100
committermathieui <mathieui@mathieui.net>2021-02-13 20:23:20 +0100
commita7d690813c4a42e624d6681ee02f0e3e9e1ef1c9 (patch)
treef050c6b6fb1b74d6ce34861ef7d9835891009b93 /itests
parent02262679e9ae6d4553b9c8bca3f7a59a99232c50 (diff)
downloadslixmpp-a7d690813c4a42e624d6681ee02f0e3e9e1ef1c9.tar.gz
slixmpp-a7d690813c4a42e624d6681ee02f0e3e9e1ef1c9.tar.bz2
slixmpp-a7d690813c4a42e624d6681ee02f0e3e9e1ef1c9.tar.xz
slixmpp-a7d690813c4a42e624d6681ee02f0e3e9e1ef1c9.zip
itets: Add a BOB test
Diffstat (limited to 'itests')
-rw-r--r--itests/test_bob.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/itests/test_bob.py b/itests/test_bob.py
new file mode 100644
index 00000000..d0827df0
--- /dev/null
+++ b/itests/test_bob.py
@@ -0,0 +1,35 @@
+import asyncio
+import unittest
+from slixmpp.test.integration import SlixIntegration
+
+
+class TestBOB(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'),
+ )
+ self.register_plugins(['xep_0231'])
+ self.data = b'to' * 257
+ await self.connect_clients()
+
+ async def test_bob(self):
+ """Check we can send and receive a BOB."""
+ cid = self.clients[0]['xep_0231'].set_bob(
+ self.data,
+ 'image/jpeg',
+ )
+ recv = await self.clients[1]['xep_0231'].get_bob(
+ jid=self.clients[0].boundjid,
+ cid=cid,
+ )
+
+ self.assertEqual(self.data, recv['bob']['data'])
+
+
+suite = unittest.TestLoader().loadTestsFromTestCase(TestBOB)