itests: add 0012, 0054, 0084, 0092, 0153, 0191 tests
This commit is contained in:
32
itests/test_blocking.py
Normal file
32
itests/test_blocking.py
Normal file
@@ -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)
|
||||
Reference in New Issue
Block a user