File: test_bob.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 (35 lines) | stat: -rw-r--r-- 996 bytes parent folder | download | duplicates (8)
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
import asyncio
import unittest
from slixmpp.test.integration import SlixIntegration


class TestBOB(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_0231'])
        self.data = b'to' * 257
        await self.connect_clients()

    async def test_bob(self):
        """Check we can send and receive a BOB."""
        cid = await self.clients[0]['xep_0231'].set_bob(
            self.data,
            'image/jpeg',
        )
        recv = await self.clients[1]['xep_0231'].get_bob(
            jid=self.clients[0].boundjid,
            cid=cid,
        )

        self.assertEqual(self.data, recv['bob']['data'])


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