diff options
author | mathieui <mathieui@mathieui.net> | 2021-02-05 20:14:41 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-02-05 20:14:41 +0100 |
commit | cff4588499d74e392cab646a46217f069cb1ef01 (patch) | |
tree | e349f9d4b1f13b57d4df820b8f649c8deee2a726 /itests/test_blocking.py | |
parent | c82e1a4039dbf5d24990d28d665ba973fc9c9de7 (diff) | |
parent | 89601289fea2c6f2b47002926eb2609bd72d2a17 (diff) | |
download | slixmpp-cff4588499d74e392cab646a46217f069cb1ef01.tar.gz slixmpp-cff4588499d74e392cab646a46217f069cb1ef01.tar.bz2 slixmpp-cff4588499d74e392cab646a46217f069cb1ef01.tar.xz slixmpp-cff4588499d74e392cab646a46217f069cb1ef01.zip |
Merge branch 'updat-typing-and-generic-args' into 'master'
Update typing and generic args for plugins (step 1)
See merge request poezio/slixmpp!120
Diffstat (limited to 'itests/test_blocking.py')
-rw-r--r-- | itests/test_blocking.py | 32 |
1 files changed, 32 insertions, 0 deletions
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) |