2008-05-29 04:49:03 +02:00
|
|
|
import unittest
|
|
|
|
|
2008-06-04 01:54:22 +02:00
|
|
|
import time
|
|
|
|
|
2008-08-09 02:24:08 +02:00
|
|
|
import lib
|
|
|
|
lib.setup_env()
|
2008-06-12 05:56:30 +02:00
|
|
|
|
2008-05-29 04:49:03 +02:00
|
|
|
from common import gajim
|
|
|
|
from common import xmpp
|
|
|
|
|
2008-06-04 01:54:22 +02:00
|
|
|
from mock import Mock, expectParams
|
|
|
|
from mocks import *
|
|
|
|
|
2008-05-29 04:49:03 +02:00
|
|
|
from common.stanza_session import StanzaSession
|
|
|
|
|
|
|
|
# name to use for the test account
|
|
|
|
account_name = 'test'
|
|
|
|
|
|
|
|
class TestStanzaSession(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.jid = 'test@example.org/Gajim'
|
2008-06-04 01:54:22 +02:00
|
|
|
self.conn = MockConnection(account_name, {'send_stanza': None})
|
2008-05-29 04:49:03 +02:00
|
|
|
self.sess = StanzaSession(self.conn, self.jid, None, 'chat')
|
|
|
|
|
|
|
|
def test_generate_thread_id(self):
|
|
|
|
# thread_id is a string
|
|
|
|
self.assert_(isinstance(self.sess.thread_id, str))
|
|
|
|
|
|
|
|
# it should be somewhat long, to avoid clashes
|
|
|
|
self.assert_(len(self.sess.thread_id) >= 32)
|
|
|
|
|
|
|
|
def test_is_loggable(self):
|
|
|
|
# by default a session should be loggable
|
|
|
|
# (unless the no_log_for setting says otherwise)
|
|
|
|
self.assert_(self.sess.is_loggable())
|
|
|
|
|
|
|
|
def test_terminate(self):
|
|
|
|
# termination is sent by default
|
|
|
|
self.sess.last_send = time.time()
|
|
|
|
self.sess.terminate()
|
|
|
|
|
|
|
|
self.assertEqual(None, self.sess.status)
|
|
|
|
|
|
|
|
calls = self.conn.mockGetNamedCalls('send_stanza')
|
|
|
|
msg = calls[0].getParam(0)
|
|
|
|
|
|
|
|
self.assertEqual(msg.getThread(), self.sess.thread_id)
|
|
|
|
|
2008-06-04 01:54:22 +02:00
|
|
|
def test_terminate_without_sending(self):
|
2008-05-29 04:49:03 +02:00
|
|
|
# no termination is sent if no messages have been sent in the session
|
|
|
|
self.sess.terminate()
|
|
|
|
|
|
|
|
self.assertEqual(None, self.sess.status)
|
|
|
|
|
|
|
|
calls = self.conn.mockGetNamedCalls('send_stanza')
|
|
|
|
self.assertEqual(0, len(calls))
|
|
|
|
|
|
|
|
def test_terminate_no_remote_xep_201(self):
|
|
|
|
# no termination is sent if only messages without thread ids have been
|
|
|
|
# received
|
|
|
|
self.sess.last_send = time.time()
|
|
|
|
self.sess.last_receive = time.time()
|
|
|
|
self.sess.terminate()
|
|
|
|
|
|
|
|
self.assertEqual(None, self.sess.status)
|
|
|
|
|
|
|
|
calls = self.conn.mockGetNamedCalls('send_stanza')
|
|
|
|
self.assertEqual(0, len(calls))
|
|
|
|
|
|
|
|
from session import ChatControlSession
|
|
|
|
|
2008-08-06 22:17:00 +02:00
|
|
|
gajim.interface = MockInterface()
|
2008-05-29 04:49:03 +02:00
|
|
|
|
|
|
|
import notify
|
|
|
|
|
|
|
|
class TestChatControlSession(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.jid = 'test@example.org/Gajim'
|
2008-06-04 01:54:22 +02:00
|
|
|
self.conn = MockConnection(account_name, {'send_stanza': None})
|
2008-05-29 04:49:03 +02:00
|
|
|
self.sess = ChatControlSession(self.conn, self.jid, None)
|
|
|
|
gajim.logger = MockLogger()
|
|
|
|
|
|
|
|
# initially there are no events
|
|
|
|
self.assertEqual(0, len(gajim.events.get_events(account_name)))
|
|
|
|
|
|
|
|
# no notifications have been sent
|
|
|
|
self.assertEqual(0, len(notify.notifications))
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
# remove all events and notifications that were added
|
|
|
|
gajim.events._events = {}
|
|
|
|
notify.notifications = []
|
|
|
|
|
|
|
|
def receive_chat_msg(self, jid, msgtxt):
|
|
|
|
'''simulate receiving a chat message from jid'''
|
|
|
|
msg = xmpp.Message()
|
|
|
|
msg.setBody(msgtxt)
|
|
|
|
msg.setType('chat')
|
|
|
|
|
|
|
|
tim = time.localtime()
|
|
|
|
encrypted = False
|
|
|
|
self.sess.received(jid, msgtxt, tim, encrypted, msg)
|
|
|
|
|
|
|
|
# ----- custom assertions -----
|
|
|
|
def assert_new_message_notification(self):
|
|
|
|
'''a new_message notification has been sent'''
|
|
|
|
self.assertEqual(1, len(notify.notifications))
|
|
|
|
notif = notify.notifications[0]
|
|
|
|
self.assertEqual('new_message', notif[0])
|
|
|
|
|
|
|
|
def assert_first_message_notification(self):
|
|
|
|
'''this message was treated as a first message'''
|
|
|
|
self.assert_new_message_notification()
|
|
|
|
notif = notify.notifications[0]
|
|
|
|
params = notif[3]
|
|
|
|
first = params[1]
|
|
|
|
self.assert_(first, 'message should have been treated as a first message')
|
|
|
|
|
|
|
|
def assert_not_first_message_notification(self):
|
|
|
|
'''this message was not treated as a first message'''
|
|
|
|
self.assert_new_message_notification()
|
|
|
|
notif = notify.notifications[0]
|
|
|
|
params = notif[3]
|
|
|
|
first = params[1]
|
2008-08-27 09:49:41 +02:00
|
|
|
self.assert_(not first,
|
|
|
|
'message was unexpectedly treated as a first message')
|
2008-05-29 04:49:03 +02:00
|
|
|
|
|
|
|
# ----- tests -----
|
|
|
|
def test_receive_nocontrol(self):
|
|
|
|
'''test receiving a message in a blank state'''
|
|
|
|
jid = 'bct@necronomicorp.com/Gajim'
|
|
|
|
msgtxt = 'testing one two three'
|
|
|
|
|
|
|
|
self.receive_chat_msg(jid, msgtxt)
|
|
|
|
|
|
|
|
# message was logged
|
|
|
|
calls = gajim.logger.mockGetNamedCalls('write')
|
|
|
|
self.assertEqual(1, len(calls))
|
|
|
|
|
|
|
|
# no ChatControl was open and autopopup was off
|
|
|
|
# so the message goes into the event queue
|
|
|
|
self.assertEqual(1, len(gajim.events.get_events(account_name)))
|
|
|
|
|
|
|
|
self.assert_first_message_notification()
|
|
|
|
|
|
|
|
# no control is attached to the session
|
|
|
|
self.assertEqual(None, self.sess.control)
|
|
|
|
|
|
|
|
def test_receive_already_has_control(self):
|
2008-08-27 09:49:41 +02:00
|
|
|
'''test receiving a message with a session already attached to a
|
|
|
|
control'''
|
2008-06-04 01:54:22 +02:00
|
|
|
|
2008-05-29 04:49:03 +02:00
|
|
|
jid = 'bct@necronomicorp.com/Gajim'
|
|
|
|
msgtxt = 'testing one two three'
|
|
|
|
|
2008-08-09 08:10:04 +02:00
|
|
|
self.sess.control = MockChatControl(jid, account_name)
|
2008-05-29 04:49:03 +02:00
|
|
|
|
|
|
|
self.receive_chat_msg(jid, msgtxt)
|
|
|
|
|
|
|
|
# message was logged
|
|
|
|
calls = gajim.logger.mockGetNamedCalls('write')
|
|
|
|
self.assertEqual(1, len(calls))
|
|
|
|
|
|
|
|
# the message does not go into the event queue
|
|
|
|
self.assertEqual(0, len(gajim.events.get_events(account_name)))
|
|
|
|
|
|
|
|
self.assert_not_first_message_notification()
|
|
|
|
|
|
|
|
# message was printed to the control
|
|
|
|
calls = self.sess.control.mockGetNamedCalls('print_conversation')
|
|
|
|
self.assertEqual(1, len(calls))
|
|
|
|
|
|
|
|
def test_received_orphaned_control(self):
|
2008-08-27 09:49:41 +02:00
|
|
|
'''test receiving a message when a control that doesn't have a session
|
|
|
|
attached exists'''
|
2008-05-29 04:49:03 +02:00
|
|
|
|
2008-06-04 01:54:22 +02:00
|
|
|
jid = 'bct@necronomicorp.com'
|
|
|
|
fjid = jid + '/Gajim'
|
2008-05-29 04:49:03 +02:00
|
|
|
msgtxt = 'testing one two three'
|
|
|
|
|
2008-08-09 08:10:04 +02:00
|
|
|
ctrl = MockChatControl(jid, account_name)
|
2008-06-27 01:36:58 +02:00
|
|
|
gajim.interface.msg_win_mgr = Mock({'get_control': ctrl})
|
|
|
|
gajim.interface.msg_win_mgr.mockSetExpectation('get_control',
|
|
|
|
expectParams(jid, account_name))
|
2008-05-29 04:49:03 +02:00
|
|
|
|
2008-06-04 01:54:22 +02:00
|
|
|
self.receive_chat_msg(fjid, msgtxt)
|
2008-05-29 04:49:03 +02:00
|
|
|
|
|
|
|
# message was logged
|
|
|
|
calls = gajim.logger.mockGetNamedCalls('write')
|
|
|
|
self.assertEqual(1, len(calls))
|
|
|
|
|
|
|
|
# the message does not go into the event queue
|
|
|
|
self.assertEqual(0, len(gajim.events.get_events(account_name)))
|
|
|
|
|
|
|
|
self.assert_not_first_message_notification()
|
|
|
|
|
|
|
|
# this session is now attached to that control
|
|
|
|
self.assertEqual(self.sess, ctrl.session)
|
|
|
|
self.assertEqual(ctrl, self.sess.control, 'foo')
|
|
|
|
|
|
|
|
# message was printed to the control
|
|
|
|
calls = ctrl.mockGetNamedCalls('print_conversation')
|
|
|
|
self.assertEqual(1, len(calls))
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|
2008-07-29 21:49:31 +02:00
|
|
|
|
2008-08-06 22:17:00 +02:00
|
|
|
# vim: se ts=3:
|