##// END OF EJS Templates
New version of ipcluster and docs updates....
New version of ipcluster and docs updates. This branch has a complete rewrite of the ipcluster script. The script is now based on Twisted and has support for starting clusters using PBS, mpirun and on localhost. The developer docs have been fully updated to reflect our current dev workflow with lp and bzr. The changelog has been reformatted some to keep its style consistent. A new security document has been aded that describes the Foolscap security model in depth. Minor fixed to ipengine and ipcluster.

File last commit:

r1445:f308bb37
r1797:a2c0df6b merge
Show More
test_notification.py
171 lines | 5.0 KiB | text/x-python | PythonLexer
/ IPython / kernel / core / tests / test_notification.py
Barry Wark
I.k.c.notification blueprint, test, implementation.
r1410 # encoding: utf-8
"""This file contains unittests for the notification.py module."""
__docformat__ = "restructuredtext en"
#-----------------------------------------------------------------------------
# Copyright (C) 2008 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
Barry Wark
fixed None for type/sender
r1411 import unittest
import IPython.kernel.core.notification as notification
from nose.tools import timed
Barry Wark
I.k.c.notification blueprint, test, implementation.
r1410
#
# Supporting test classes
#
class Observer(object):
"""docstring for Observer"""
Barry Wark
fixed None for type/sender
r1411 def __init__(self, expectedType, expectedSender,
center=notification.sharedCenter, **kwargs):
Barry Wark
I.k.c.notification blueprint, test, implementation.
r1410 super(Observer, self).__init__()
self.expectedType = expectedType
self.expectedSender = expectedSender
self.expectedKwArgs = kwargs
self.recieved = False
Barry Wark
fixed None for type/sender
r1411 center.add_observer(self.callback,
self.expectedType,
self.expectedSender)
Barry Wark
I.k.c.notification blueprint, test, implementation.
r1410
def callback(self, theType, sender, args={}):
"""callback"""
Barry Wark
fixed None for type/sender
r1411 assert(theType == self.expectedType or
self.expectedType == None)
assert(sender == self.expectedSender or
self.expectedSender == None)
Barry Wark
I.k.c.notification blueprint, test, implementation.
r1410 assert(args == self.expectedKwArgs)
self.recieved = True
def verify(self):
"""verify"""
assert(self.recieved)
Barry Wark
fixed None for type/sender
r1411 def reset(self):
"""reset"""
self.recieved = False
Barry Wark
I.k.c.notification blueprint, test, implementation.
r1410
class Notifier(object):
"""docstring for Notifier"""
def __init__(self, theType, **kwargs):
super(Notifier, self).__init__()
self.theType = theType
self.kwargs = kwargs
Barry Wark
fixed None for type/sender
r1411 def post(self, center=notification.sharedCenter):
Barry Wark
I.k.c.notification blueprint, test, implementation.
r1410 """fire"""
center.post_notification(self.theType, self,
**self.kwargs)
#
# Test Cases
#
Barry Wark
fixed None for type/sender
r1411 class NotificationTests(unittest.TestCase):
"""docstring for NotificationTests"""
Barry Wark
I.k.c.notification blueprint, test, implementation.
r1410
Barry Wark
fixed None for type/sender
r1411 def tearDown(self):
notification.sharedCenter.remove_all_observers()
Barry Wark
I.k.c.notification blueprint, test, implementation.
r1410
Barry Wark
fixed None for type/sender
r1411 def test_notification_delivered(self):
"""Test that notifications are delivered"""
expectedType = 'EXPECTED_TYPE'
sender = Notifier(expectedType)
observer = Observer(expectedType, sender)
sender.post()
observer.verify()
Barry Wark
I.k.c.notification blueprint, test, implementation.
r1410
Barry Wark
fixed None for type/sender
r1411 def test_type_specificity(self):
"""Test that observers are registered by type"""
expectedType = 1
unexpectedType = "UNEXPECTED_TYPE"
sender = Notifier(expectedType)
unexpectedSender = Notifier(unexpectedType)
observer = Observer(expectedType, sender)
Barry Wark
I.k.c.notification blueprint, test, implementation.
r1410
Barry Wark
fixed None for type/sender
r1411 sender.post()
unexpectedSender.post()
Barry Wark
I.k.c.notification blueprint, test, implementation.
r1410
Barry Wark
fixed None for type/sender
r1411 observer.verify()
Barry Wark
I.k.c.notification blueprint, test, implementation.
r1410
Barry Wark
fixed None for type/sender
r1411 def test_sender_specificity(self):
"""Test that observers are registered by sender"""
expectedType = "EXPECTED_TYPE"
sender1 = Notifier(expectedType)
sender2 = Notifier(expectedType)
observer = Observer(expectedType, sender1)
sender1.post()
sender2.post()
observer.verify()
def test_remove_all_observers(self):
"""White-box test for remove_all_observers"""
for i in xrange(10):
Observer('TYPE', None, center=notification.sharedCenter)
self.assert_(len(notification.sharedCenter.observers[('TYPE',None)]) >= 10,
"observers registered")
notification.sharedCenter.remove_all_observers()
self.assert_(len(notification.sharedCenter.observers) == 0, "observers removed")
def test_any_sender(self):
"""test_any_sender"""
expectedType = "EXPECTED_TYPE"
sender1 = Notifier(expectedType)
sender2 = Notifier(expectedType)
observer = Observer(expectedType, None)
sender1.post()
observer.verify()
observer.reset()
sender2.post()
observer.verify()
@timed(.01)
def test_post_performance(self):
"""Test that post_notification, even with many registered irrelevant
observers is fast"""
for i in xrange(10):
Observer("UNRELATED_TYPE", None)
o = Observer('EXPECTED_TYPE', None)
notification.sharedCenter.post_notification('EXPECTED_TYPE', self)
o.verify()