d0c506f930
* check_stanza does not require stanza_class parameter. Introspection! * check_message, check_iq, and check_presence removed -- use check instead. * stream_send_stanza, stream_send_message, stream_send_iq, and stream_send_presence removed -- use send instead. * Use recv instead of recv_message, recv_presence, etc. * check_jid instead of check_JID * stream_start may accept multi=True to return a new SleekTest instance for testing multiple streams at once.
84 lines
2.8 KiB
Python
84 lines
2.8 KiB
Python
from sleekxmpp.test import *
|
|
from sleekxmpp.stanza.roster import Roster
|
|
|
|
|
|
class TestRosterStanzas(SleekTest):
|
|
|
|
def testAddItems(self):
|
|
"""Test adding items to a roster stanza."""
|
|
iq = self.Iq()
|
|
iq['roster'].setItems({
|
|
'user@example.com': {
|
|
'name': 'User',
|
|
'subscription': 'both',
|
|
'groups': ['Friends', 'Coworkers']},
|
|
'otheruser@example.com': {
|
|
'name': 'Other User',
|
|
'subscription': 'both',
|
|
'groups': []}})
|
|
self.check(iq, """
|
|
<iq>
|
|
<query xmlns="jabber:iq:roster">
|
|
<item jid="user@example.com" name="User" subscription="both">
|
|
<group>Friends</group>
|
|
<group>Coworkers</group>
|
|
</item>
|
|
<item jid="otheruser@example.com" name="Other User"
|
|
subscription="both" />
|
|
</query>
|
|
</iq>
|
|
""")
|
|
|
|
def testGetItems(self):
|
|
"""Test retrieving items from a roster stanza."""
|
|
xml_string = """
|
|
<iq>
|
|
<query xmlns="jabber:iq:roster">
|
|
<item jid="user@example.com" name="User" subscription="both">
|
|
<group>Friends</group>
|
|
<group>Coworkers</group>
|
|
</item>
|
|
<item jid="otheruser@example.com" name="Other User"
|
|
subscription="both" />
|
|
</query>
|
|
</iq>
|
|
"""
|
|
iq = self.Iq(ET.fromstring(xml_string))
|
|
expected = {
|
|
'user@example.com': {
|
|
'name': 'User',
|
|
'subscription': 'both',
|
|
'groups': ['Friends', 'Coworkers']},
|
|
'otheruser@example.com': {
|
|
'name': 'Other User',
|
|
'subscription': 'both',
|
|
'groups': []}}
|
|
debug = "Roster items don't match after retrieval."
|
|
debug += "\nReturned: %s" % str(iq['roster']['items'])
|
|
debug += "\nExpected: %s" % str(expected)
|
|
self.failUnless(iq['roster']['items'] == expected, debug)
|
|
|
|
def testDelItems(self):
|
|
"""Test clearing items from a roster stanza."""
|
|
xml_string = """
|
|
<iq>
|
|
<query xmlns="jabber:iq:roster">
|
|
<item jid="user@example.com" name="User" subscription="both">
|
|
<group>Friends</group>
|
|
<group>Coworkers</group>
|
|
</item>
|
|
<item jid="otheruser@example.com" name="Other User"
|
|
subscription="both" />
|
|
</query>
|
|
</iq>
|
|
"""
|
|
iq = self.Iq(ET.fromstring(xml_string))
|
|
del iq['roster']['items']
|
|
self.check(iq, """
|
|
<iq>
|
|
<query xmlns="jabber:iq:roster" />
|
|
</iq>
|
|
""")
|
|
|
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TestRosterStanzas)
|