annotate src/test/helpers.py @ 647:63b6e684bbfa

tests: Use of FailTest for DifferentArgsException instead of Exception, so the test fail instead of raising en error.
author Goffi <goffi@goffi.org>
date Thu, 26 Sep 2013 17:32:24 +0200
parents 84a6e83157c2
children e20c823f23e2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
335
Goffi <goffi@goffi.org>
parents:
diff changeset
1 #!/usr/bin/python
Goffi <goffi@goffi.org>
parents:
diff changeset
2 # -*- coding: utf-8 -*-
Goffi <goffi@goffi.org>
parents:
diff changeset
3
609
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 591
diff changeset
4 # SAT: a jabber client
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 591
diff changeset
5 # Copyright (C) 2009, 2010, 2011, 2012, 2013 Jérôme Poisson (goffi@goffi.org)
335
Goffi <goffi@goffi.org>
parents:
diff changeset
6
609
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 591
diff changeset
7 # This program is free software: you can redistribute it and/or modify
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 591
diff changeset
8 # it under the terms of the GNU Affero General Public License as published by
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 591
diff changeset
9 # the Free Software Foundation, either version 3 of the License, or
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 591
diff changeset
10 # (at your option) any later version.
335
Goffi <goffi@goffi.org>
parents:
diff changeset
11
609
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 591
diff changeset
12 # This program is distributed in the hope that it will be useful,
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 591
diff changeset
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 591
diff changeset
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 591
diff changeset
15 # GNU Affero General Public License for more details.
335
Goffi <goffi@goffi.org>
parents:
diff changeset
16
609
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 591
diff changeset
17 # You should have received a copy of the GNU Affero General Public License
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 591
diff changeset
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
335
Goffi <goffi@goffi.org>
parents:
diff changeset
19
Goffi <goffi@goffi.org>
parents:
diff changeset
20 import __builtin__
Goffi <goffi@goffi.org>
parents:
diff changeset
21 from twisted.words.protocols.jabber.jid import JID
647
63b6e684bbfa tests: Use of FailTest for DifferentArgsException instead of Exception, so the test fail instead of raising en error.
Goffi <goffi@goffi.org>
parents: 609
diff changeset
22 from twisted.trial.unittest import FailTest
335
Goffi <goffi@goffi.org>
parents:
diff changeset
23
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
24 TEST_JID_STR = u"test@example.org/SàT"
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
25 TEST_JID = JID(u"test@example.org/SàT")
335
Goffi <goffi@goffi.org>
parents:
diff changeset
26 TEST_PROFILE = 'test_profile'
Goffi <goffi@goffi.org>
parents:
diff changeset
27
591
65821b3fa7ab Fix pep8 support in src/test.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 587
diff changeset
28
647
63b6e684bbfa tests: Use of FailTest for DifferentArgsException instead of Exception, so the test fail instead of raising en error.
Goffi <goffi@goffi.org>
parents: 609
diff changeset
29 class DifferentArgsException(FailTest):
335
Goffi <goffi@goffi.org>
parents:
diff changeset
30 pass
Goffi <goffi@goffi.org>
parents:
diff changeset
31
591
65821b3fa7ab Fix pep8 support in src/test.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 587
diff changeset
32
335
Goffi <goffi@goffi.org>
parents:
diff changeset
33 class FakeSAT(object):
Goffi <goffi@goffi.org>
parents:
diff changeset
34 """Class to simulate a SAT instance"""
Goffi <goffi@goffi.org>
parents:
diff changeset
35
Goffi <goffi@goffi.org>
parents:
diff changeset
36 def __init__(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
37 self.bridge = FakeBridge()
Goffi <goffi@goffi.org>
parents:
diff changeset
38 self.memory = FakeMemory()
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
39 self.trigger = FakeTriggerManager()
335
Goffi <goffi@goffi.org>
parents:
diff changeset
40
Goffi <goffi@goffi.org>
parents:
diff changeset
41
Goffi <goffi@goffi.org>
parents:
diff changeset
42 class FakeBridge(object):
Goffi <goffi@goffi.org>
parents:
diff changeset
43 """Class to simulate and test bridge calls"""
Goffi <goffi@goffi.org>
parents:
diff changeset
44
Goffi <goffi@goffi.org>
parents:
diff changeset
45 def expectCall(self, name, *check_args, **check_kwargs):
Goffi <goffi@goffi.org>
parents:
diff changeset
46 def checkCall(*args, **kwargs):
Goffi <goffi@goffi.org>
parents:
diff changeset
47 if args != check_args or kwargs != check_kwargs:
Goffi <goffi@goffi.org>
parents:
diff changeset
48 print "\n\n--------------------"
Goffi <goffi@goffi.org>
parents:
diff changeset
49 print "Args are not equals:"
Goffi <goffi@goffi.org>
parents:
diff changeset
50 print "args\n----\n%s (sent)\n%s (wanted)" % (args, check_args)
Goffi <goffi@goffi.org>
parents:
diff changeset
51 print "kwargs\n------\n%s (sent)\n%s (wanted)" % (kwargs, check_kwargs)
Goffi <goffi@goffi.org>
parents:
diff changeset
52 print "--------------------\n\n"
Goffi <goffi@goffi.org>
parents:
diff changeset
53 raise DifferentArgsException
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
54
335
Goffi <goffi@goffi.org>
parents:
diff changeset
55 setattr(self, name, checkCall)
Goffi <goffi@goffi.org>
parents:
diff changeset
56
Goffi <goffi@goffi.org>
parents:
diff changeset
57
Goffi <goffi@goffi.org>
parents:
diff changeset
58 class FakeMemory(object):
Goffi <goffi@goffi.org>
parents:
diff changeset
59 """Class to simulate and test memory object"""
Goffi <goffi@goffi.org>
parents:
diff changeset
60
Goffi <goffi@goffi.org>
parents:
diff changeset
61 def getProfileName(self, profile_key):
Goffi <goffi@goffi.org>
parents:
diff changeset
62 return profile_key
Goffi <goffi@goffi.org>
parents:
diff changeset
63
512
862c0d6ab974 core, bridge, quick_frontend: MUC private messages history management:
Goffi <goffi@goffi.org>
parents: 484
diff changeset
64 def addToHistory(self, from_jid, to_jid, message, _type='chat', timestamp=None, profile=None):
335
Goffi <goffi@goffi.org>
parents:
diff changeset
65 pass
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
66
335
Goffi <goffi@goffi.org>
parents:
diff changeset
67 def addContact(self, contact_jid, attributes, groups, profile_key='@DEFAULT@'):
Goffi <goffi@goffi.org>
parents:
diff changeset
68 pass
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
69
484
23cbdf0a0777 core: presence status + last resource refactored and kept in entitiesCache in memory.py, profile cache is purged on disconnection
Goffi <goffi@goffi.org>
parents: 480
diff changeset
70 def setPresenceStatus(self, contact_jid, show, priority, statuses, profile_key='@DEFAULT@'):
335
Goffi <goffi@goffi.org>
parents:
diff changeset
71 pass
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
72
335
Goffi <goffi@goffi.org>
parents:
diff changeset
73 def addWaitingSub(self, type, contact_jid, profile_key):
Goffi <goffi@goffi.org>
parents:
diff changeset
74 pass
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
75
335
Goffi <goffi@goffi.org>
parents:
diff changeset
76 def delWaitingSub(self, contact_jid, profile_key):
Goffi <goffi@goffi.org>
parents:
diff changeset
77 pass
Goffi <goffi@goffi.org>
parents:
diff changeset
78
591
65821b3fa7ab Fix pep8 support in src/test.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 587
diff changeset
79
335
Goffi <goffi@goffi.org>
parents:
diff changeset
80 class FakeTriggerManager(object):
Goffi <goffi@goffi.org>
parents:
diff changeset
81
Goffi <goffi@goffi.org>
parents:
diff changeset
82 def add(self, point_name, callback):
Goffi <goffi@goffi.org>
parents:
diff changeset
83 pass
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
84
335
Goffi <goffi@goffi.org>
parents:
diff changeset
85 def point(self, point_name, *args, **kwargs):
Goffi <goffi@goffi.org>
parents:
diff changeset
86 """We always return true to continue the action"""
Goffi <goffi@goffi.org>
parents:
diff changeset
87 return True
Goffi <goffi@goffi.org>
parents:
diff changeset
88
591
65821b3fa7ab Fix pep8 support in src/test.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 587
diff changeset
89
335
Goffi <goffi@goffi.org>
parents:
diff changeset
90 class FakeParent(object):
Goffi <goffi@goffi.org>
parents:
diff changeset
91 def __init__(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
92 self.profile = 'test_profile'
Goffi <goffi@goffi.org>
parents:
diff changeset
93 self.jid = TEST_JID
Goffi <goffi@goffi.org>
parents:
diff changeset
94
591
65821b3fa7ab Fix pep8 support in src/test.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 587
diff changeset
95
335
Goffi <goffi@goffi.org>
parents:
diff changeset
96 def _(text):
Goffi <goffi@goffi.org>
parents:
diff changeset
97 return text
Goffi <goffi@goffi.org>
parents:
diff changeset
98
Goffi <goffi@goffi.org>
parents:
diff changeset
99 __builtin__.__dict__['_'] = _