File: test_version.py

package info (click to toggle)
slixmpp 1.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,520 kB
  • sloc: python: 41,715; xml: 1,197; makefile: 120
file content (37 lines) | stat: -rw-r--r-- 1,175 bytes parent folder | download | duplicates (5)
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
30
31
32
33
34
35
36
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)