File: test_sos.py

package info (click to toggle)
slixmpp 1.13.2-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,516 kB
  • sloc: python: 41,715; xml: 1,211; makefile: 135
file content (29 lines) | stat: -rw-r--r-- 937 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import unittest
from slixmpp.test.integration import SlixIntegration

try:
    import aiohttp
except ImportError:
    aiohttp = None


class TestSos(SlixIntegration):
    async def asyncSetUp(self):
        await super().asyncSetUp()
        self.add_client(
            self.envjid('CI_ACCOUNT1'),
            self.envstr('CI_ACCOUNT1_PASSWORD'),
        )
        self.register_plugins(['xep_0455'])
        await self.connect_clients()

    @unittest.skipIf(aiohttp is None, "aiohttp is not installed")
    async def test_sos(self):
        """Check we can get the status addr and fetch empty data"""
        addresses = await self.clients[0]['xep_0455'].get_external_status_addresses()
        self.assertGreaterEqual(len(addresses), 1)
        fetched_status = await self.clients[0]['xep_0455'].fetch_status(addresses[0])
        self.assertEqual(fetched_status, None)


suite = unittest.TestLoader().loadTestsFromTestCase(TestSos)