Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/test_roster.py')
-rw-r--r--test/integration/test_roster.py18
1 files changed, 7 insertions, 11 deletions
diff --git a/test/integration/test_roster.py b/test/integration/test_roster.py
index d093d0e64..acb91b71c 100644
--- a/test/integration/test_roster.py
+++ b/test/integration/test_roster.py
@@ -9,15 +9,16 @@ from mock import Mock, expectParams
from gajim_mocks import *
from common import gajim
+from common import contacts as contacts_module
import roster_window
gajim.get_jid_from_account = lambda acc: 'myjid@' + acc
+
class TestRosterWindow(unittest.TestCase):
def setUp(self):
gajim.interface = MockInterface()
- self.roster = roster_window.RosterWindow()
self.C_NAME = roster_window.C_NAME
self.C_TYPE = roster_window.C_TYPE
@@ -26,13 +27,13 @@ class TestRosterWindow(unittest.TestCase):
# Add after creating RosterWindow
# We want to test the filling explicitly
+ gajim.contacts = contacts_module.Contacts()
+ gajim.connections = {}
+ self.roster = roster_window.RosterWindow()
+
for acc in contacts:
gajim.connections[acc] = MockConnection(acc)
-
- def tearDown(self):
- self.roster.model.clear()
- for acc in gajim.contacts.get_accounts():
- gajim.contacts.clear_contacts(acc)
+ gajim.contacts.add_account(acc)
### Custom assertions
def assert_all_contacts_are_in_roster(self, acc):
@@ -142,11 +143,6 @@ class TestRosterWindow(unittest.TestCase):
groups = contacts[acc][jid]['groups'] or ['General',]
- # cleanup
- self.roster.model.clear()
- for acc in contacts:
- gajim.contacts.clear_contacts(acc)
-
def test_fill_roster_model(self):
for acc in contacts:
self.roster.fill_contacts_and_groups_dicts(contacts[acc], acc)