annotate src/test/test_core_xmpp.py @ 335:99206631503e

Tests - first unit tests, finally \o/ - some helping methods/classes - first tests for core.xmpp module - update .hgignore to ignore test dir - updated setup.py with new modules
author Goffi <goffi@goffi.org>
date Tue, 24 May 2011 00:56:35 +0200
parents
children cf005701624b
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
Goffi <goffi@goffi.org>
parents:
diff changeset
6 Copyright (C) 2009, 2010, 2011 Jérôme Poisson (goffi@goffi.org)
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
Goffi <goffi@goffi.org>
parents:
diff changeset
9 it under the terms of the GNU General Public License as published by
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
Goffi <goffi@goffi.org>
parents:
diff changeset
16 GNU General Public License for more details.
Goffi <goffi@goffi.org>
parents:
diff changeset
17
Goffi <goffi@goffi.org>
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
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
Goffi <goffi@goffi.org>
parents:
diff changeset
33 class SatXMPPClientTest(unittest.TestCase):
Goffi <goffi@goffi.org>
parents:
diff changeset
34
Goffi <goffi@goffi.org>
parents:
diff changeset
35 def setUp(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
36 self.host = helpers.FakeSAT()
Goffi <goffi@goffi.org>
parents:
diff changeset
37 self.client = xmpp.SatXMPPClient(self.host, "test_profile", JID("test@example.org"), "test")
Goffi <goffi@goffi.org>
parents:
diff changeset
38
Goffi <goffi@goffi.org>
parents:
diff changeset
39 def test_init(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
40 """Check that init values are correctly initialised"""
Goffi <goffi@goffi.org>
parents:
diff changeset
41 self.assertEqual(self.client.profile, "test_profile")
Goffi <goffi@goffi.org>
parents:
diff changeset
42 print self.client.host
Goffi <goffi@goffi.org>
parents:
diff changeset
43 self.assertEqual(self.client.host_app, self.host)
Goffi <goffi@goffi.org>
parents:
diff changeset
44 self.assertTrue(isinstance(self.client.client_initialized, defer.Deferred))
Goffi <goffi@goffi.org>
parents:
diff changeset
45
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)
Goffi <goffi@goffi.org>
parents:
diff changeset
62
Goffi <goffi@goffi.org>
parents:
diff changeset
63 class SatRosterProtocolTest(unittest.TestCase):
Goffi <goffi@goffi.org>
parents:
diff changeset
64
Goffi <goffi@goffi.org>
parents:
diff changeset
65 def setUp(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
66 self.host = helpers.FakeSAT()
Goffi <goffi@goffi.org>
parents:
diff changeset
67 self.roster = xmpp.SatRosterProtocol(self.host)
Goffi <goffi@goffi.org>
parents:
diff changeset
68 self.roster.parent = helpers.FakeParent()
Goffi <goffi@goffi.org>
parents:
diff changeset
69
Goffi <goffi@goffi.org>
parents:
diff changeset
70 def test_onRosterSet(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
71 roster_item = RosterItem(helpers.TEST_JID)
Goffi <goffi@goffi.org>
parents:
diff changeset
72 roster_item.name = u"Test Man"
Goffi <goffi@goffi.org>
parents:
diff changeset
73 roster_item.subscriptionTo = True
Goffi <goffi@goffi.org>
parents:
diff changeset
74 roster_item.subscriptionFrom = True
Goffi <goffi@goffi.org>
parents:
diff changeset
75 roster_item.ask = False
Goffi <goffi@goffi.org>
parents:
diff changeset
76 roster_item.groups = set([u"Test Group 1", u"Test Group 2", u"Test Group 3"])
Goffi <goffi@goffi.org>
parents:
diff changeset
77 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")
Goffi <goffi@goffi.org>
parents:
diff changeset
78 self.roster.onRosterSet(roster_item)
Goffi <goffi@goffi.org>
parents:
diff changeset
79
Goffi <goffi@goffi.org>
parents:
diff changeset
80 class SatPresenceProtocolTest(unittest.TestCase):
Goffi <goffi@goffi.org>
parents:
diff changeset
81
Goffi <goffi@goffi.org>
parents:
diff changeset
82 def setUp(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
83 self.host = helpers.FakeSAT()
Goffi <goffi@goffi.org>
parents:
diff changeset
84 self.presence = xmpp.SatPresenceProtocol(self.host)
Goffi <goffi@goffi.org>
parents:
diff changeset
85 self.presence.parent = helpers.FakeParent()
Goffi <goffi@goffi.org>
parents:
diff changeset
86
Goffi <goffi@goffi.org>
parents:
diff changeset
87 def test_availableReceived(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
88 self.host.bridge.expectCall("presenceUpdate", helpers.TEST_JID_STR, "xa", 15, {'default': "test status", 'fr':'statut de test'}, helpers.TEST_PROFILE)
Goffi <goffi@goffi.org>
parents:
diff changeset
89 self.presence.availableReceived(helpers.TEST_JID, 'xa', {None: "test status", 'fr':'statut de test'}, 15)
Goffi <goffi@goffi.org>
parents:
diff changeset
90
Goffi <goffi@goffi.org>
parents:
diff changeset
91 def test_availableReceived_empty_statuses(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
92 self.host.bridge.expectCall("presenceUpdate", helpers.TEST_JID_STR, "xa", 15, {}, helpers.TEST_PROFILE)
Goffi <goffi@goffi.org>
parents:
diff changeset
93 self.presence.availableReceived(helpers.TEST_JID, 'xa', None, 15)
Goffi <goffi@goffi.org>
parents:
diff changeset
94
Goffi <goffi@goffi.org>
parents:
diff changeset
95 def test_unavailableReceived(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
96 self.host.bridge.expectCall("presenceUpdate", helpers.TEST_JID_STR, "unavailable", 0, {}, helpers.TEST_PROFILE)
Goffi <goffi@goffi.org>
parents:
diff changeset
97 self.presence.unavailableReceived(helpers.TEST_JID, None)
Goffi <goffi@goffi.org>
parents:
diff changeset
98
Goffi <goffi@goffi.org>
parents:
diff changeset
99 def test_subscribedReceived(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
100 self.host.bridge.expectCall("subscribe", "subscribed", helpers.TEST_JID.userhost(), helpers.TEST_PROFILE)
Goffi <goffi@goffi.org>
parents:
diff changeset
101 self.presence.subscribedReceived(helpers.TEST_JID)
Goffi <goffi@goffi.org>
parents:
diff changeset
102
Goffi <goffi@goffi.org>
parents:
diff changeset
103 def test_unsubscribedReceived(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
104 self.host.bridge.expectCall("subscribe", "unsubscribed", helpers.TEST_JID.userhost(), helpers.TEST_PROFILE)
Goffi <goffi@goffi.org>
parents:
diff changeset
105 self.presence.unsubscribedReceived(helpers.TEST_JID)
Goffi <goffi@goffi.org>
parents:
diff changeset
106
Goffi <goffi@goffi.org>
parents:
diff changeset
107 def test_subscribeReceived(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
108 self.host.bridge.expectCall("subscribe", "subscribe", helpers.TEST_JID.userhost(), helpers.TEST_PROFILE)
Goffi <goffi@goffi.org>
parents:
diff changeset
109 self.presence.subscribeReceived(helpers.TEST_JID)
Goffi <goffi@goffi.org>
parents:
diff changeset
110
Goffi <goffi@goffi.org>
parents:
diff changeset
111 def test_unsubscribeReceived(self):
Goffi <goffi@goffi.org>
parents:
diff changeset
112 self.host.bridge.expectCall("subscribe", "unsubscribe", helpers.TEST_JID.userhost(), helpers.TEST_PROFILE)
Goffi <goffi@goffi.org>
parents:
diff changeset
113 self.presence.unsubscribeReceived(helpers.TEST_JID)
Goffi <goffi@goffi.org>
parents:
diff changeset
114