blob: dbd7a59235b14549da169ada1cb19e0ef9369e2e (
plain)
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 import JID, Message
from slixmpp.test import SlixTest
import slixmpp.plugins.xep_0421 as xep_0421
from slixmpp.xmlstream import register_stanza_plugin
class TestOccupantId(SlixTest):
def setUp(self):
register_stanza_plugin(Message, xep_0421.stanza.OccupantId)
def testReadOccupantId(self):
result = """
<message type='groupchat' from='foo@muc/nick1'>
<body>Some message</body>
<occupant-id xmlns='urn:xmpp:occupant-id:0' id='unique-id1'/>
</message>
"""
msg = self.Message()
msg['type'] = 'groupchat'
msg['from'] = JID('foo@muc/nick1')
msg['body'] = 'Some message'
msg['occupant-id']['id'] = 'unique-id1'
self.check(msg, result)
suite = unittest.TestLoader().loadTestsFromTestCase(TestOccupantId)
|