diff --git a/test/lib/data.py b/test/lib/data.py index 074a7def8..e74e9c01b 100755 --- a/test/lib/data.py +++ b/test/lib/data.py @@ -6,13 +6,13 @@ account3 = u'dingdong.org' contacts = {} contacts[account1] = { u'myjid@'+account1: { - 'ask': None, 'groups': [], 'name': None, 'resources': {}, + 'ask': None, 'groups': [], 'name': None, 'resources': {}, 'subscription': u'both'}, u'default1@gajim.org': { - 'ask': None, 'groups': [], 'name': None, 'resources': {}, + 'ask': None, 'groups': [], 'name': None, 'resources': {}, 'subscription': u'both'}, u'default2@gajim.org': { - 'ask': None, 'groups': [u'GroupA',], 'name': None, 'resources': {}, + 'ask': None, 'groups': [u'GroupA',], 'name': None, 'resources': {}, 'subscription': u'both'}, u'Cool"chârßéµö@gajim.org': { 'ask': None, 'groups': [u' len(args) and not varargs: - raise MockInterfaceError("Original %s() takes at most %s arguments (%s given)" % + raise MockInterfaceError("Original %s() takes at most %s arguments (%s given)" % (name, len(args), numPosCallParams)) # Get the number of positional arguments that appear in the call, @@ -220,7 +220,7 @@ class MockCall: def getName(self): return self.name - + #pretty-print the method call def __str__(self): s = self.name + "(" @@ -310,13 +310,13 @@ class ReturnValuesBase: class ReturnValues(ReturnValuesBase): def __init__(self, *values): self.iter = iter(values) - + class ReturnIterator(ReturnValuesBase): def __init__(self, iterator): self.iter = iter(iterator) - + def expectParams(*params, **keywords): '''check that the callObj is called with specified params and keywords ''' @@ -332,7 +332,7 @@ def expectAfter(*methods): calledMethods = [method.getName() for method in mockObj.mockGetAllCalls()] #skip last entry, since that is the current call calledMethods = calledMethods[:-1] - for method in methods: + for method in methods: if method not in calledMethods: return False return True @@ -430,17 +430,17 @@ def IS(instance): def ISINSTANCE(class_): def testFn(param): - return isinstance(param, class_) + return isinstance(param, class_) return testFn def ISSUBCLASS(class_): def testFn(param): - return issubclass(param, class_) + return issubclass(param, class_) return testFn def CONTAINS(val): def testFn(param): - return val in param + return val in param return testFn def IN(container): diff --git a/test/test_roster.py b/test/test_roster.py index fa495ad41..421148c83 100644 --- a/test/test_roster.py +++ b/test/test_roster.py @@ -46,9 +46,9 @@ class TestRosterWindow(unittest.TestCase): contacts = gajim.contacts.get_contacts(account, jid) # check for all resources for contact in contacts: - iters = self.roster._get_contact_iter(jid, account, + iters = self.roster._get_contact_iter(jid, account, model=self.roster.model) - + if jid != gajim.get_jid_from_account(account): # We don't care for groups of SelfContact self.assertTrue(len(iters) == len(contact.get_shown_groups()), @@ -61,7 +61,7 @@ class TestRosterWindow(unittest.TestCase): if family: nearby_family, bb_jid, bb_account = \ self.roster._get_nearby_family_and_big_brother(family, account) - + is_in_nearby_family = (jid, account) in ( (data['jid'], data['account']) for data in nearby_family) self.assertTrue(is_in_nearby_family,