From 89601289fea2c6f2b47002926eb2609bd72d2a17 Mon Sep 17 00:00:00 2001 From: mathieui Date: Fri, 5 Feb 2021 19:01:23 +0100 Subject: itests: add 0012, 0054, 0084, 0092, 0153, 0191 tests --- itests/test_blocking.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 itests/test_blocking.py (limited to 'itests/test_blocking.py') diff --git a/itests/test_blocking.py b/itests/test_blocking.py new file mode 100644 index 00000000..7954c1dc --- /dev/null +++ b/itests/test_blocking.py @@ -0,0 +1,32 @@ +import unittest +from slixmpp import JID +from slixmpp.test.integration import SlixIntegration + + +class TestBlocking(SlixIntegration): + async def asyncSetUp(self): + await super().asyncSetUp() + self.add_client( + self.envjid('CI_ACCOUNT1'), + self.envstr('CI_ACCOUNT1_PASSWORD'), + ) + self.register_plugins(['xep_0191']) + await self.connect_clients() + + async def test_blocking(self): + """Check we can block, unblock, and list blocked""" + await self.clients[0]['xep_0191'].block( + [JID('toto@example.com'), JID('titi@example.com')] + ) + blocked = {JID('toto@example.com'), JID('titi@example.com')} + iq = await self.clients[0]['xep_0191'].get_blocked() + self.assertEqual(iq['blocklist']['items'], blocked) + + info = await self.clients[0]['xep_0191'].unblock( + blocked, + ) + iq = await self.clients[0]['xep_0191'].get_blocked() + self.assertEqual(len(iq['blocklist']['items']), 0) + + +suite = unittest.TestLoader().loadTestsFromTestCase(TestBlocking) -- cgit v1.2.3