Refactor internas of ConnectionCaps
* Make it testable and write a very basic test for the presenceCallback * Use Extract Method to make the code more readable and to increase reusability * Start to decouple ConnectionCaps from the other Connection classes/handlers
This commit is contained in:
parent
79b226d3f8
commit
7708e3b87e
4 changed files with 174 additions and 87 deletions
|
@ -36,9 +36,11 @@ import helpers
|
||||||
import base64
|
import base64
|
||||||
import hashlib
|
import hashlib
|
||||||
|
|
||||||
from common.xmpp import NS_XHTML_IM, NS_RECEIPTS, NS_ESESSION, NS_CHATSTATES
|
import logging
|
||||||
from common.xmpp import NS_JINGLE_ICE_UDP, NS_JINGLE_RTP_AUDIO
|
log = logging.getLogger('gajim.c.caps')
|
||||||
from common.xmpp import NS_JINGLE_RTP_VIDEO
|
|
||||||
|
from common.xmpp import (NS_XHTML_IM, NS_RECEIPTS, NS_ESESSION, NS_CHATSTATES,
|
||||||
|
NS_JINGLE_ICE_UDP, NS_JINGLE_RTP_AUDIO, NS_JINGLE_RTP_VIDEO, NS_CAPS)
|
||||||
# Features where we cannot safely assume that the other side supports them
|
# Features where we cannot safely assume that the other side supports them
|
||||||
FEATURE_BLACKLIST = [NS_CHATSTATES, NS_XHTML_IM, NS_RECEIPTS, NS_ESESSION,
|
FEATURE_BLACKLIST = [NS_CHATSTATES, NS_XHTML_IM, NS_RECEIPTS, NS_ESESSION,
|
||||||
NS_JINGLE_ICE_UDP, NS_JINGLE_RTP_AUDIO, NS_JINGLE_RTP_VIDEO]
|
NS_JINGLE_ICE_UDP, NS_JINGLE_RTP_AUDIO, NS_JINGLE_RTP_VIDEO]
|
||||||
|
@ -149,6 +151,22 @@ def compute_caps_hash(identities, features, dataforms=[], hash_method='sha-1'):
|
||||||
### Internal classes of this module
|
### Internal classes of this module
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
|
|
||||||
|
def create_suitable_client_caps(node, caps_hash, hash_method):
|
||||||
|
"""
|
||||||
|
Create and return a suitable ClientCaps object for the given node,
|
||||||
|
caps_hash, hash_method combination.
|
||||||
|
"""
|
||||||
|
if not node or not caps_hash:
|
||||||
|
# improper caps, ignore client capabilities.
|
||||||
|
client_caps = NullClientCaps()
|
||||||
|
elif not hash_method:
|
||||||
|
client_caps = OldClientCaps(caps_hash, node)
|
||||||
|
else:
|
||||||
|
client_caps = ClientCaps(caps_hash, node, hash_method)
|
||||||
|
return client_caps
|
||||||
|
|
||||||
|
|
||||||
class AbstractClientCaps(object):
|
class AbstractClientCaps(object):
|
||||||
"""
|
"""
|
||||||
Base class representing a client and its capabilities as advertised by a
|
Base class representing a client and its capabilities as advertised by a
|
||||||
|
@ -378,62 +396,57 @@ class CapsCache(object):
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
class ConnectionCaps(object):
|
class ConnectionCaps(object):
|
||||||
"""
|
|
||||||
This class highly depends on that it is a part of Connection class
|
def __init__(self, account, dispatch_event):
|
||||||
"""
|
self._account = account
|
||||||
|
self._dispatch_event = dispatch_event
|
||||||
|
|
||||||
def _capsPresenceCB(self, con, presence):
|
def _capsPresenceCB(self, con, presence):
|
||||||
"""
|
"""
|
||||||
Handle incoming presence stanzas... This is a callback for xmpp
|
XMMPPY callback method to handle retrieved caps info
|
||||||
registered in connection_handlers.py
|
|
||||||
"""
|
"""
|
||||||
# we will put these into proper Contact object and ask
|
|
||||||
# for disco... so that disco will learn how to interpret
|
|
||||||
# these caps
|
|
||||||
pm_ctrl = None
|
|
||||||
try:
|
try:
|
||||||
jid = helpers.get_full_jid_from_iq(presence)
|
jid = helpers.get_full_jid_from_iq(presence)
|
||||||
except:
|
except:
|
||||||
# Bad jid
|
log.info("Ignoring invalid JID in caps presenceCB")
|
||||||
return
|
return
|
||||||
contact = gajim.contacts.get_contact_from_full_jid(self.name, jid)
|
|
||||||
|
client_caps = self._extract_client_caps_from_presence(presence)
|
||||||
|
capscache.query_client_of_jid_if_unknown(self, jid, client_caps)
|
||||||
|
self._update_client_caps_of_contact(jid, client_caps)
|
||||||
|
|
||||||
|
self._dispatch_event('CAPS_RECEIVED', (jid,))
|
||||||
|
|
||||||
|
def _extract_client_caps_from_presence(self, presence):
|
||||||
|
caps_tag = presence.getTag('c', namespace=NS_CAPS)
|
||||||
|
if caps_tag:
|
||||||
|
hash_method, node, caps_hash = caps_tag['hash'], caps_tag['node'], caps_tag['ver']
|
||||||
|
else:
|
||||||
|
hash_method = node = caps_hash = None
|
||||||
|
return create_suitable_client_caps(node, caps_hash, hash_method)
|
||||||
|
|
||||||
|
def _update_client_caps_of_contact(self, jid, client_caps):
|
||||||
|
contact = self._get_contact_or_gc_contact_for_jid(jid)
|
||||||
|
if contact:
|
||||||
|
contact.client_caps = client_caps
|
||||||
|
else:
|
||||||
|
log.info("Received Caps from unknown contact %s" % jid)
|
||||||
|
|
||||||
|
def _get_contact_or_gc_contact_for_jid(self, jid):
|
||||||
|
contact = gajim.contacts.get_contact_from_full_jid(self._account, jid)
|
||||||
if contact is None:
|
if contact is None:
|
||||||
room_jid, nick = gajim.get_room_and_nick_from_fjid(jid)
|
room_jid, nick = gajim.get_room_and_nick_from_fjid(jid)
|
||||||
contact = gajim.contacts.get_gc_contact(
|
contact = gajim.contacts.get_gc_contact(self._account, room_jid, nick)
|
||||||
self.name, room_jid, nick)
|
return contact
|
||||||
pm_ctrl = gajim.interface.msg_win_mgr.get_control(jid, self.name)
|
|
||||||
if contact is None:
|
|
||||||
# TODO: a way to put contact not-in-roster
|
|
||||||
# into Contacts
|
|
||||||
return
|
|
||||||
|
|
||||||
caps_tag = presence.getTag('c')
|
|
||||||
if not caps_tag:
|
|
||||||
# presence did not contain caps_tag
|
|
||||||
client_caps = NullClientCaps()
|
|
||||||
else:
|
|
||||||
hash_method, node, caps_hash = caps_tag['hash'], caps_tag['node'], caps_tag['ver']
|
|
||||||
|
|
||||||
if not node or not caps_hash:
|
|
||||||
# improper caps in stanza, ignore client capabilities.
|
|
||||||
client_caps = NullClientCaps()
|
|
||||||
elif not hash_method:
|
|
||||||
client_caps = OldClientCaps(caps_hash, node)
|
|
||||||
else:
|
|
||||||
client_caps = ClientCaps(caps_hash, node, hash_method)
|
|
||||||
|
|
||||||
capscache.query_client_of_jid_if_unknown(self, jid, client_caps)
|
|
||||||
contact.client_caps = client_caps
|
|
||||||
|
|
||||||
if pm_ctrl:
|
|
||||||
pm_ctrl.update_contact()
|
|
||||||
|
|
||||||
def _capsDiscoCB(self, jid, node, identities, features, dataforms):
|
def _capsDiscoCB(self, jid, node, identities, features, dataforms):
|
||||||
contact = gajim.contacts.get_contact_from_full_jid(self.name, jid)
|
"""
|
||||||
|
XMMPPY callback to update our caps cache with queried information after
|
||||||
|
we have retrieved an unknown caps hash and issued a disco
|
||||||
|
"""
|
||||||
|
contact = self._get_contact_or_gc_contact_for_jid(jid)
|
||||||
if not contact:
|
if not contact:
|
||||||
room_jid, nick = gajim.get_room_and_nick_from_fjid(jid)
|
log.info("Received Disco from unknown contact %s" % jid)
|
||||||
contact = gajim.contacts.get_gc_contact(self.name, room_jid, nick)
|
|
||||||
if contact is None:
|
|
||||||
return
|
return
|
||||||
|
|
||||||
lookup = contact.client_caps.get_cache_lookup_strategy()
|
lookup = contact.client_caps.get_cache_lookup_strategy()
|
||||||
|
@ -449,5 +462,9 @@ class ConnectionCaps(object):
|
||||||
cache_item.set_and_store(identities, features)
|
cache_item.set_and_store(identities, features)
|
||||||
else:
|
else:
|
||||||
contact.client_caps = NullClientCaps()
|
contact.client_caps = NullClientCaps()
|
||||||
|
log.warn("Computed and retrieved caps hash differ." +
|
||||||
|
"Ignoring caps of contact %s" % contact.get_full_jid())
|
||||||
|
|
||||||
|
self._dispatch_event('CAPS_RECEIVED', (jid,))
|
||||||
|
|
||||||
# vim: se ts=3:
|
# vim: se ts=3:
|
||||||
|
|
|
@ -1519,6 +1519,8 @@ class ConnectionHandlers(ConnectionVcard, ConnectionBytestream,
|
||||||
ConnectionPubSub.__init__(self)
|
ConnectionPubSub.__init__(self)
|
||||||
ConnectionPEP.__init__(self, account=self.name, dispatcher=self,
|
ConnectionPEP.__init__(self, account=self.name, dispatcher=self,
|
||||||
pubsub_connection=self)
|
pubsub_connection=self)
|
||||||
|
ConnectionCaps.__init__(self, account=self.name,
|
||||||
|
dispatch_event=self.dispatch)
|
||||||
ConnectionJingle.__init__(self)
|
ConnectionJingle.__init__(self)
|
||||||
ConnectionHandlersBase.__init__(self)
|
ConnectionHandlersBase.__init__(self)
|
||||||
self.gmail_url = None
|
self.gmail_url = None
|
||||||
|
|
|
@ -1998,6 +1998,14 @@ class Interface:
|
||||||
if ctrl:
|
if ctrl:
|
||||||
ctrl.update_pep(pep_type)
|
ctrl.update_pep(pep_type)
|
||||||
|
|
||||||
|
def handle_event_caps_received(self, account, data):
|
||||||
|
# ('CAPS_RECEIVED', account, (full_jid))
|
||||||
|
full_jid = data[0]
|
||||||
|
pm_ctrl = gajim.interface.msg_win_mgr.get_control(full_jid, account)
|
||||||
|
if pm_ctrl:
|
||||||
|
print "pm updated"
|
||||||
|
pm_ctrl.update_contact()
|
||||||
|
|
||||||
def register_handler(self, event, handler):
|
def register_handler(self, event, handler):
|
||||||
if event not in self.handlers:
|
if event not in self.handlers:
|
||||||
self.handlers[event] = []
|
self.handlers[event] = []
|
||||||
|
@ -2097,7 +2105,8 @@ class Interface:
|
||||||
'JINGLE_CONNECTED': [self.handle_event_jingle_connected],
|
'JINGLE_CONNECTED': [self.handle_event_jingle_connected],
|
||||||
'JINGLE_DISCONNECTED': [self.handle_event_jingle_disconnected],
|
'JINGLE_DISCONNECTED': [self.handle_event_jingle_disconnected],
|
||||||
'JINGLE_ERROR': [self.handle_event_jingle_error],
|
'JINGLE_ERROR': [self.handle_event_jingle_error],
|
||||||
'PEP_RECEIVED': [self.handle_event_pep_received]
|
'PEP_RECEIVED': [self.handle_event_pep_received],
|
||||||
|
'CAPS_RECEIVED': [self.handle_event_caps_received]
|
||||||
}
|
}
|
||||||
|
|
||||||
def dispatch(self, event, account, data):
|
def dispatch(self, event, account, data):
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
'''
|
'''
|
||||||
Tests for capabilities and the capabilities cache
|
Tests for capabilities and the capabilities cache
|
||||||
'''
|
'''
|
||||||
|
from common.caps import NullClientCaps
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
import lib
|
import lib
|
||||||
|
@ -146,6 +147,64 @@ class TestOldClientCaps(TestClientCaps):
|
||||||
connection.mockCheckCall(0, "discoverInfo", "test@gajim.org")
|
connection.mockCheckCall(0, "discoverInfo", "test@gajim.org")
|
||||||
|
|
||||||
|
|
||||||
|
from common.xmpp import simplexml
|
||||||
|
from common.xmpp import protocol
|
||||||
|
|
||||||
|
class TestableConnectionCaps(caps.ConnectionCaps):
|
||||||
|
|
||||||
|
def __init__(self, *args, **kwargs):
|
||||||
|
self._mocked_contacts = {}
|
||||||
|
caps.ConnectionCaps.__init__(self, *args, **kwargs)
|
||||||
|
|
||||||
|
def _get_contact_or_gc_contact_for_jid(self, jid):
|
||||||
|
"""
|
||||||
|
Overwrite to decouple form contact handling
|
||||||
|
"""
|
||||||
|
if jid not in self._mocked_contacts:
|
||||||
|
self._mocked_contacts[jid] = Mock(realClass=Contact)
|
||||||
|
self._mocked_contacts[jid].jid = jid
|
||||||
|
return self._mocked_contacts[jid]
|
||||||
|
|
||||||
|
def discoverInfo(self, *args, **kwargs):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def get_mocked_contact_for_jid(self, jid):
|
||||||
|
return self._mocked_contacts[jid]
|
||||||
|
|
||||||
|
|
||||||
|
class TestConnectionCaps(CommonCapsTest):
|
||||||
|
|
||||||
|
def test_capsPresenceCB(self):
|
||||||
|
jid = "user@server.com/a"
|
||||||
|
connection_caps = TestableConnectionCaps("account",
|
||||||
|
self._build_assertering_dispatcher_function("CAPS_RECEIVED", jid))
|
||||||
|
|
||||||
|
xml = """<presence from='user@server.com/a'
|
||||||
|
to='%s' id='123'>
|
||||||
|
<c node='http://gajim.org' ver='pRCD6cgQ4SDqNMCjdhRV6TECx5o='
|
||||||
|
hash='sha-1' xmlns='http://jabber.org/protocol/caps'/>
|
||||||
|
</presence>
|
||||||
|
""" % (jid)
|
||||||
|
iq = protocol.Iq(node=simplexml.XML2Node(xml))
|
||||||
|
connection_caps._capsPresenceCB(None, iq)
|
||||||
|
|
||||||
|
self.assertTrue(self._dispatcher_called, msg="Must have received caps")
|
||||||
|
|
||||||
|
client_caps = connection_caps.get_mocked_contact_for_jid(jid).client_caps
|
||||||
|
self.assertTrue(client_caps, msg="Client caps must be set")
|
||||||
|
self.assertFalse(isinstance(client_caps, NullClientCaps),
|
||||||
|
msg="On receive of proper caps, we must not use the fallback")
|
||||||
|
|
||||||
|
def _build_assertering_dispatcher_function(self, expected_event, jid):
|
||||||
|
self._dispatcher_called = False
|
||||||
|
def dispatch(event, data):
|
||||||
|
self.assertFalse(self._dispatcher_called, msg="Must only be called once")
|
||||||
|
self._dispatcher_called = True
|
||||||
|
self.assertEqual(expected_event, event)
|
||||||
|
self.assertEqual(jid, data[0])
|
||||||
|
return dispatch
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue