summaryrefslogtreecommitdiff
path: root/itests/test_vcard.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-02-05 20:14:41 +0100
committermathieui <mathieui@mathieui.net>2021-02-05 20:14:41 +0100
commitcff4588499d74e392cab646a46217f069cb1ef01 (patch)
treee349f9d4b1f13b57d4df820b8f649c8deee2a726 /itests/test_vcard.py
parentc82e1a4039dbf5d24990d28d665ba973fc9c9de7 (diff)
parent89601289fea2c6f2b47002926eb2609bd72d2a17 (diff)
downloadslixmpp-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_vcard.py')
-rw-r--r--itests/test_vcard.py49
1 files changed, 49 insertions, 0 deletions
diff --git a/itests/test_vcard.py b/itests/test_vcard.py
new file mode 100644
index 00000000..800d5a5b
--- /dev/null
+++ b/itests/test_vcard.py
@@ -0,0 +1,49 @@
+import unittest
+from slixmpp.test.integration import SlixIntegration
+
+
+class TestVcardTemp(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_0054'])
+ await self.connect_clients()
+
+ async def _clear_vcard(self):
+ # cleanup
+ await self.clients[0]['xep_0054'].publish_vcard(
+ self.clients[0]['xep_0054'].make_vcard()
+ )
+
+ async def test_vcard(self):
+ """Check we can set and get a vcard"""
+ await self._clear_vcard()
+
+ # Check that vcard is empty
+ recv = await self.clients[1]['xep_0054'].get_vcard(
+ self.clients[0].boundjid.bare
+ )
+ self.assertEqual(recv['vcard_temp']['TITLE'], None)
+
+ vcard = self.clients[0]['xep_0054'].make_vcard()
+ vcard['TITLE'] = 'Coucou coucou'
+ await self.clients[0]['xep_0054'].publish_vcard(
+ vcard,
+ )
+ #
+ recv = await self.clients[1]['xep_0054'].get_vcard(
+ self.clients[0].boundjid.bare
+ )
+ self.assertEqual(recv['vcard_temp']['TITLE'], 'Coucou coucou')
+
+ await self._clear_vcard()
+
+
+suite = unittest.TestLoader().loadTestsFromTestCase(TestVcardTemp)