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_version.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_version.py')
-rw-r--r-- | itests/test_version.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/itests/test_version.py b/itests/test_version.py new file mode 100644 index 00000000..5b8e42fd --- /dev/null +++ b/itests/test_version.py @@ -0,0 +1,37 @@ +import unittest +from slixmpp.test.integration import SlixIntegration + + +class TestVersion(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_0092'], + configs=[{ + 'software_name': 'Slix Test', + 'version': '1.2.3.4', + 'os': 'I use arch btw', + }] + ) + await self.connect_clients() + + async def test_version(self): + """Check we can set and query software version info""" + iq = await self.clients[1]['xep_0092'].get_version( + self.clients[0].boundjid.full + ) + version = iq['software_version'] + self.assertEqual(version['name'], 'Slix Test') + self.assertEqual(version['version'], '1.2.3.4') + self.assertEqual(version['os'], 'I use arch btw') + + +suite = unittest.TestLoader().loadTestsFromTestCase(TestVersion) |