annotate src/test/test_core_xmpp.py @ 591:65821b3fa7ab

Fix pep8 support in src/test.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 18 Jan 2013 17:55:35 +0100
parents 952322b1d490
children 84a6e83157c2
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
Goffi <goffi@goffi.org>
parents:
diff changeset
4 """
Goffi <goffi@goffi.org>
parents:
diff changeset
5 SAT: a jabber client
572
ca13633d3b6b dates update
Goffi <goffi@goffi.org>
parents: 480
diff changeset
6 Copyright (C) 2009, 2010, 2011, 2012, 2013 Jérôme Poisson (goffi@goffi.org)
335
Goffi <goffi@goffi.org>
parents:
diff changeset
7
Goffi <goffi@goffi.org>
parents:
diff changeset
8 This program is free software: you can redistribute it and/or modify
480
2a072735e459 Licence modification: the full project is now under AGPL v3+ instead of GPL v3+
Goffi <goffi@goffi.org>
parents: 459
diff changeset
9 it under the terms of the GNU Affero General Public License as published by
335
Goffi <goffi@goffi.org>
parents:
diff changeset
10 the Free Software Foundation, either version 3 of the License, or
Goffi <goffi@goffi.org>
parents:
diff changeset
11 (at your option) any later version.
Goffi <goffi@goffi.org>
parents:
diff changeset
12
Goffi <goffi@goffi.org>
parents:
diff changeset
13 This program is distributed in the hope that it will be useful,
Goffi <goffi@goffi.org>
parents:
diff changeset
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
Goffi <goffi@goffi.org>
parents:
diff changeset
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
480
2a072735e459 Licence modification: the full project is now under AGPL v3+ instead of GPL v3+
Goffi <goffi@goffi.org>
parents: 459
diff changeset
16 GNU Affero General Public License for more details.
335
Goffi <goffi@goffi.org>
parents:
diff changeset
17
480
2a072735e459 Licence modification: the full project is now under AGPL v3+ instead of GPL v3+
Goffi <goffi@goffi.org>
parents: 459
diff changeset
18 You should have received a copy of the GNU Affero General Public License
335
Goffi <goffi@goffi.org>
parents:
diff changeset
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
Goffi <goffi@goffi.org>
parents:
diff changeset
20 """
Goffi <goffi@goffi.org>
parents:
diff changeset
21
Goffi <goffi@goffi.org>
parents:
diff changeset
22 from sat.test import helpers
Goffi <goffi@goffi.org>
parents:
diff changeset
23 from twisted.trial import unittest
Goffi <goffi@goffi.org>
parents:
diff changeset
24 from sat.core.sat_main import SAT
Goffi <goffi@goffi.org>
parents:
diff changeset
25 from sat.core import xmpp
Goffi <goffi@goffi.org>
parents:
diff changeset
26 from twisted.internet import defer
Goffi <goffi@goffi.org>
parents:
diff changeset
27 from twisted.words.protocols.jabber.jid import JID
Goffi <goffi@goffi.org>
parents:
diff changeset
28 from wokkel.generic import parseXml
Goffi <goffi@goffi.org>
parents:
diff changeset
29 from wokkel.xmppim import RosterItem
Goffi <goffi@goffi.org>
parents:
diff changeset
30
Goffi <goffi@goffi.org>
parents:
diff changeset
31
Goffi <goffi@goffi.org>
parents:
diff changeset
32 class SatXMPPClientTest(unittest.TestCase):
Goffi <goffi@goffi.org>
parents:
diff changeset
33
Goffi <goffi@goffi.org>
parents:
diff changeset
34 def setUp(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
35 self.host = helpers.FakeSAT()
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
36 self.client = xmpp.SatXMPPClient(self.host, "test_profile", JID("test@example.org"), "test")
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
37
335
Goffi <goffi@goffi.org>
parents:
diff changeset
38 def test_init(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
39 """Check that init values are correctly initialised"""
Goffi <goffi@goffi.org>
parents:
diff changeset
40 self.assertEqual(self.client.profile, "test_profile")
Goffi <goffi@goffi.org>
parents:
diff changeset
41 print self.client.host
Goffi <goffi@goffi.org>
parents:
diff changeset
42 self.assertEqual(self.client.host_app, self.host)
Goffi <goffi@goffi.org>
parents:
diff changeset
43 self.assertTrue(isinstance(self.client.client_initialized, defer.Deferred))
Goffi <goffi@goffi.org>
parents:
diff changeset
44
591
65821b3fa7ab Fix pep8 support in src/test.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 587
diff changeset
45
335
Goffi <goffi@goffi.org>
parents:
diff changeset
46 class SatMessageProtocolTest(unittest.TestCase):
Goffi <goffi@goffi.org>
parents:
diff changeset
47
Goffi <goffi@goffi.org>
parents:
diff changeset
48 def setUp(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
49 self.host = helpers.FakeSAT()
Goffi <goffi@goffi.org>
parents:
diff changeset
50 self.message = xmpp.SatMessageProtocol(self.host)
Goffi <goffi@goffi.org>
parents:
diff changeset
51 self.message.parent = helpers.FakeParent()
Goffi <goffi@goffi.org>
parents:
diff changeset
52
Goffi <goffi@goffi.org>
parents:
diff changeset
53 def test_onMessage(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
54 xml = """
Goffi <goffi@goffi.org>
parents:
diff changeset
55 <message type="chat" from="sender@example.net/house" to="test@example.org/SàT" id="test_1">
Goffi <goffi@goffi.org>
parents:
diff changeset
56 <body>test</body>
Goffi <goffi@goffi.org>
parents:
diff changeset
57 </message>
Goffi <goffi@goffi.org>
parents:
diff changeset
58 """
Goffi <goffi@goffi.org>
parents:
diff changeset
59 stanza = parseXml(xml)
Goffi <goffi@goffi.org>
parents:
diff changeset
60 self.host.bridge.expectCall("newMessage", "sender@example.net/house", "test", "chat", u"test@example.org/SàT", profile="test_profile")
Goffi <goffi@goffi.org>
parents:
diff changeset
61 self.message.onMessage(stanza)
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
62
591
65821b3fa7ab Fix pep8 support in src/test.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 587
diff changeset
63
335
Goffi <goffi@goffi.org>
parents:
diff changeset
64 class SatRosterProtocolTest(unittest.TestCase):
Goffi <goffi@goffi.org>
parents:
diff changeset
65
Goffi <goffi@goffi.org>
parents:
diff changeset
66 def setUp(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
67 self.host = helpers.FakeSAT()
Goffi <goffi@goffi.org>
parents:
diff changeset
68 self.roster = xmpp.SatRosterProtocol(self.host)
Goffi <goffi@goffi.org>
parents:
diff changeset
69 self.roster.parent = helpers.FakeParent()
Goffi <goffi@goffi.org>
parents:
diff changeset
70
Goffi <goffi@goffi.org>
parents:
diff changeset
71 def test_onRosterSet(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
72 roster_item = RosterItem(helpers.TEST_JID)
Goffi <goffi@goffi.org>
parents:
diff changeset
73 roster_item.name = u"Test Man"
Goffi <goffi@goffi.org>
parents:
diff changeset
74 roster_item.subscriptionTo = True
Goffi <goffi@goffi.org>
parents:
diff changeset
75 roster_item.subscriptionFrom = True
Goffi <goffi@goffi.org>
parents:
diff changeset
76 roster_item.ask = False
Goffi <goffi@goffi.org>
parents:
diff changeset
77 roster_item.groups = set([u"Test Group 1", u"Test Group 2", u"Test Group 3"])
591
65821b3fa7ab Fix pep8 support in src/test.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 587
diff changeset
78 self.host.bridge.expectCall("newContact", helpers.TEST_JID_STR, {'to': 'True', 'from': 'True', 'ask': 'False', 'name': u'Test Man'}, set([u"Test Group 1", u"Test Group 2", u"Test Group 3"]), "test_profile")
335
Goffi <goffi@goffi.org>
parents:
diff changeset
79 self.roster.onRosterSet(roster_item)
Goffi <goffi@goffi.org>
parents:
diff changeset
80
591
65821b3fa7ab Fix pep8 support in src/test.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 587
diff changeset
81
335
Goffi <goffi@goffi.org>
parents:
diff changeset
82 class SatPresenceProtocolTest(unittest.TestCase):
Goffi <goffi@goffi.org>
parents:
diff changeset
83
Goffi <goffi@goffi.org>
parents:
diff changeset
84 def setUp(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
85 self.host = helpers.FakeSAT()
Goffi <goffi@goffi.org>
parents:
diff changeset
86 self.presence = xmpp.SatPresenceProtocol(self.host)
Goffi <goffi@goffi.org>
parents:
diff changeset
87 self.presence.parent = helpers.FakeParent()
Goffi <goffi@goffi.org>
parents:
diff changeset
88
Goffi <goffi@goffi.org>
parents:
diff changeset
89 def test_availableReceived(self):
591
65821b3fa7ab Fix pep8 support in src/test.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 587
diff changeset
90 self.host.bridge.expectCall("presenceUpdate", helpers.TEST_JID_STR, "xa", 15, {'default': "test status", 'fr': 'statut de test'}, helpers.TEST_PROFILE)
65821b3fa7ab Fix pep8 support in src/test.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 587
diff changeset
91 self.presence.availableReceived(helpers.TEST_JID, 'xa', {None: "test status", 'fr': 'statut de test'}, 15)
335
Goffi <goffi@goffi.org>
parents:
diff changeset
92
Goffi <goffi@goffi.org>
parents:
diff changeset
93 def test_availableReceived_empty_statuses(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
94 self.host.bridge.expectCall("presenceUpdate", helpers.TEST_JID_STR, "xa", 15, {}, helpers.TEST_PROFILE)
Goffi <goffi@goffi.org>
parents:
diff changeset
95 self.presence.availableReceived(helpers.TEST_JID, 'xa', None, 15)
Goffi <goffi@goffi.org>
parents:
diff changeset
96
Goffi <goffi@goffi.org>
parents:
diff changeset
97 def test_unavailableReceived(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
98 self.host.bridge.expectCall("presenceUpdate", helpers.TEST_JID_STR, "unavailable", 0, {}, helpers.TEST_PROFILE)
Goffi <goffi@goffi.org>
parents:
diff changeset
99 self.presence.unavailableReceived(helpers.TEST_JID, None)
Goffi <goffi@goffi.org>
parents:
diff changeset
100
Goffi <goffi@goffi.org>
parents:
diff changeset
101 def test_subscribedReceived(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
102 self.host.bridge.expectCall("subscribe", "subscribed", helpers.TEST_JID.userhost(), helpers.TEST_PROFILE)
Goffi <goffi@goffi.org>
parents:
diff changeset
103 self.presence.subscribedReceived(helpers.TEST_JID)
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
104
335
Goffi <goffi@goffi.org>
parents:
diff changeset
105 def test_unsubscribedReceived(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
106 self.host.bridge.expectCall("subscribe", "unsubscribed", helpers.TEST_JID.userhost(), helpers.TEST_PROFILE)
Goffi <goffi@goffi.org>
parents:
diff changeset
107 self.presence.unsubscribedReceived(helpers.TEST_JID)
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
108
335
Goffi <goffi@goffi.org>
parents:
diff changeset
109 def test_subscribeReceived(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
110 self.host.bridge.expectCall("subscribe", "subscribe", helpers.TEST_JID.userhost(), helpers.TEST_PROFILE)
Goffi <goffi@goffi.org>
parents:
diff changeset
111 self.presence.subscribeReceived(helpers.TEST_JID)
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
112
335
Goffi <goffi@goffi.org>
parents:
diff changeset
113 def test_unsubscribeReceived(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
114 self.host.bridge.expectCall("subscribe", "unsubscribe", helpers.TEST_JID.userhost(), helpers.TEST_PROFILE)
Goffi <goffi@goffi.org>
parents:
diff changeset
115 self.presence.unsubscribeReceived(helpers.TEST_JID)