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_last_activity.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 itests/test_last_activity.py (limited to 'itests/test_last_activity.py') diff --git a/itests/test_last_activity.py b/itests/test_last_activity.py new file mode 100644 index 00000000..3d36b4b8 --- /dev/null +++ b/itests/test_last_activity.py @@ -0,0 +1,33 @@ +import unittest +from slixmpp.test.integration import SlixIntegration + + +class TestLastActivity(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_0012']) + await self.connect_clients() + + async def test_activity(self): + """Check we can set and get last activity""" + self.clients[0]['xep_0012'].set_last_activity( + status='coucou', + seconds=4242, + ) + act = await self.clients[1]['xep_0012'].get_last_activity( + self.clients[0].boundjid.full + ) + self.assertEqual(act['last_activity']['status'], 'coucou') + self.assertGreater(act['last_activity']['seconds'], 4241) + self.assertGreater(4250, act['last_activity']['seconds']) + + +suite = unittest.TestLoader().loadTestsFromTestCase(TestLastActivity) -- cgit v1.2.3