Show More
@@ -0,0 +1,132 b'' | |||||
|
1 | # encoding: utf-8 | |||
|
2 | """ | |||
|
3 | Testing related decorators for use with twisted.trial. | |||
|
4 | ||||
|
5 | The decorators in this files are designed to follow the same API as those | |||
|
6 | in the decorators module (in this same directory). But they can be used | |||
|
7 | with twisted.trial | |||
|
8 | """ | |||
|
9 | ||||
|
10 | #----------------------------------------------------------------------------- | |||
|
11 | # Copyright (C) 2008-2009 The IPython Development Team | |||
|
12 | # | |||
|
13 | # Distributed under the terms of the BSD License. The full license is in | |||
|
14 | # the file COPYING, distributed as part of this software. | |||
|
15 | #----------------------------------------------------------------------------- | |||
|
16 | ||||
|
17 | #----------------------------------------------------------------------------- | |||
|
18 | # Imports | |||
|
19 | #----------------------------------------------------------------------------- | |||
|
20 | ||||
|
21 | import os | |||
|
22 | import sys | |||
|
23 | ||||
|
24 | from IPython.testing.decorators import make_label_dec | |||
|
25 | ||||
|
26 | #----------------------------------------------------------------------------- | |||
|
27 | # Testing decorators | |||
|
28 | #----------------------------------------------------------------------------- | |||
|
29 | ||||
|
30 | ||||
|
31 | def skipif(skip_condition, msg=None): | |||
|
32 | """Create a decorator that marks a test function for skipping. | |||
|
33 | ||||
|
34 | The is a decorator factory that returns a decorator that will | |||
|
35 | conditionally skip a test based on the value of skip_condition. The | |||
|
36 | skip_condition argument can either be a boolean or a callable that returns | |||
|
37 | a boolean. | |||
|
38 | ||||
|
39 | Parameters | |||
|
40 | ---------- | |||
|
41 | skip_condition : boolean or callable | |||
|
42 | If this evaluates to True, the test is skipped. | |||
|
43 | msg : str | |||
|
44 | The message to print if the test is skipped. | |||
|
45 | ||||
|
46 | Returns | |||
|
47 | ------- | |||
|
48 | decorator : function | |||
|
49 | The decorator function that can be applied to the test function. | |||
|
50 | """ | |||
|
51 | ||||
|
52 | def skip_decorator(f): | |||
|
53 | ||||
|
54 | # Allow for both boolean or callable skip conditions. | |||
|
55 | if callable(skip_condition): | |||
|
56 | skip_val = lambda : skip_condition() | |||
|
57 | else: | |||
|
58 | skip_val = lambda : skip_condition | |||
|
59 | ||||
|
60 | if msg is None: | |||
|
61 | out = 'Test skipped due to test condition.' | |||
|
62 | else: | |||
|
63 | out = msg | |||
|
64 | final_msg = "Skipping test: %s. %s" % (f.__name__,out) | |||
|
65 | ||||
|
66 | if skip_val(): | |||
|
67 | f.skip = final_msg | |||
|
68 | ||||
|
69 | return f | |||
|
70 | return skip_decorator | |||
|
71 | ||||
|
72 | ||||
|
73 | def skip(msg=None): | |||
|
74 | """Create a decorator that marks a test function for skipping. | |||
|
75 | ||||
|
76 | This is a decorator factory that returns a decorator that will cause | |||
|
77 | tests to be skipped. | |||
|
78 | ||||
|
79 | Parameters | |||
|
80 | ---------- | |||
|
81 | msg : str | |||
|
82 | Optional message to be added. | |||
|
83 | ||||
|
84 | Returns | |||
|
85 | ------- | |||
|
86 | decorator : function | |||
|
87 | Decorator, which, when applied to a function, sets the skip | |||
|
88 | attribute of the function causing `twisted.trial` to skip it. | |||
|
89 | """ | |||
|
90 | ||||
|
91 | return skipif(True,msg) | |||
|
92 | ||||
|
93 | ||||
|
94 | def numpy_not_available(): | |||
|
95 | """Can numpy be imported? Returns true if numpy does NOT import. | |||
|
96 | ||||
|
97 | This is used to make a decorator to skip tests that require numpy to be | |||
|
98 | available, but delay the 'import numpy' to test execution time. | |||
|
99 | """ | |||
|
100 | try: | |||
|
101 | import numpy | |||
|
102 | np_not_avail = False | |||
|
103 | except ImportError: | |||
|
104 | np_not_avail = True | |||
|
105 | ||||
|
106 | return np_not_avail | |||
|
107 | ||||
|
108 | #----------------------------------------------------------------------------- | |||
|
109 | # Decorators for public use | |||
|
110 | #----------------------------------------------------------------------------- | |||
|
111 | ||||
|
112 | # Decorators to skip certain tests on specific platforms. | |||
|
113 | skip_win32 = skipif(sys.platform == 'win32', | |||
|
114 | "This test does not run under Windows") | |||
|
115 | skip_linux = skipif(sys.platform == 'linux2', | |||
|
116 | "This test does not run under Linux") | |||
|
117 | skip_osx = skipif(sys.platform == 'darwin',"This test does not run under OS X") | |||
|
118 | ||||
|
119 | # Decorators to skip tests if not on specific platforms. | |||
|
120 | skip_if_not_win32 = skipif(sys.platform != 'win32', | |||
|
121 | "This test only runs under Windows") | |||
|
122 | skip_if_not_linux = skipif(sys.platform != 'linux2', | |||
|
123 | "This test only runs under Linux") | |||
|
124 | skip_if_not_osx = skipif(sys.platform != 'darwin', | |||
|
125 | "This test only runs under OSX") | |||
|
126 | ||||
|
127 | # Other skip decorators | |||
|
128 | skipif_not_numpy = skipif(numpy_not_available,"This test requires numpy") | |||
|
129 | ||||
|
130 | skipknownfailure = skip('This test is known to fail') | |||
|
131 | ||||
|
132 |
@@ -0,0 +1,52 b'' | |||||
|
1 | # encoding: utf-8 | |||
|
2 | """ | |||
|
3 | Tests for decorators_trial.py | |||
|
4 | """ | |||
|
5 | ||||
|
6 | #----------------------------------------------------------------------------- | |||
|
7 | # Copyright (C) 2008-2009 The IPython Development Team | |||
|
8 | # | |||
|
9 | # Distributed under the terms of the BSD License. The full license is in | |||
|
10 | # the file COPYING, distributed as part of this software. | |||
|
11 | #----------------------------------------------------------------------------- | |||
|
12 | ||||
|
13 | #----------------------------------------------------------------------------- | |||
|
14 | # Imports | |||
|
15 | #----------------------------------------------------------------------------- | |||
|
16 | ||||
|
17 | # Tell nose to skip this module | |||
|
18 | __test__ = {} | |||
|
19 | ||||
|
20 | import os | |||
|
21 | import sys | |||
|
22 | ||||
|
23 | from twisted.trial import unittest | |||
|
24 | import IPython.testing.decorators_trial as dec | |||
|
25 | ||||
|
26 | #----------------------------------------------------------------------------- | |||
|
27 | # Tests | |||
|
28 | #----------------------------------------------------------------------------- | |||
|
29 | ||||
|
30 | class TestDecoratorsTrial(unittest.TestCase): | |||
|
31 | ||||
|
32 | @dec.skip() | |||
|
33 | def test_deliberately_broken(self): | |||
|
34 | """A deliberately broken test - we want to skip this one.""" | |||
|
35 | 1/0 | |||
|
36 | ||||
|
37 | @dec.skip('Testing the skip decorator') | |||
|
38 | def test_deliberately_broken2(self): | |||
|
39 | """Another deliberately broken test - we want to skip this one.""" | |||
|
40 | 1/0 | |||
|
41 | ||||
|
42 | @dec.skip_linux | |||
|
43 | def test_linux(self): | |||
|
44 | self.assertNotEquals(sys.platform,'linux2',"This test can't run under linux") | |||
|
45 | ||||
|
46 | @dec.skip_win32 | |||
|
47 | def test_win32(self): | |||
|
48 | self.assertNotEquals(sys.platform,'win32',"This test can't run under windows") | |||
|
49 | ||||
|
50 | @dec.skip_osx | |||
|
51 | def test_osx(self): | |||
|
52 | self.assertNotEquals(sys.platform,'darwin',"This test can't run under osx") No newline at end of file |
@@ -2,29 +2,27 b'' | |||||
2 |
|
2 | |||
3 | """This file contains unittests for the interpreter.py module.""" |
|
3 | """This file contains unittests for the interpreter.py module.""" | |
4 |
|
4 | |||
5 | __docformat__ = "restructuredtext en" |
|
|||
6 |
|
||||
7 | #----------------------------------------------------------------------------- |
|
5 | #----------------------------------------------------------------------------- | |
8 |
# Copyright (C) 2008-2009 The IPython Development Team |
|
6 | # Copyright (C) 2008-2009 The IPython Development Team | |
9 | # |
|
7 | # | |
10 |
# Distributed under the terms of the BSD License. The full license is |
|
8 | # Distributed under the terms of the BSD License. The full license is | |
11 |
# the file COPYING, distributed as part of this software. |
|
9 | # in the file COPYING, distributed as part of this software. | |
12 | #----------------------------------------------------------------------------- |
|
10 | #----------------------------------------------------------------------------- | |
13 |
|
11 | |||
14 | #----------------------------------------------------------------------------- |
|
12 | #----------------------------------------------------------------------------- | |
15 | # Imports |
|
13 | # Imports | |
16 | #----------------------------------------------------------------------------- |
|
14 | #----------------------------------------------------------------------------- | |
17 |
|
15 | |||
18 | import unittest |
|
16 | # Tell nose to skip this module | |
|
17 | __test__ = {} | |||
|
18 | ||||
|
19 | from twisted.trial import unittest | |||
19 | from IPython.kernel.core.interpreter import Interpreter |
|
20 | from IPython.kernel.core.interpreter import Interpreter | |
20 |
|
21 | |||
21 | #----------------------------------------------------------------------------- |
|
22 | #----------------------------------------------------------------------------- | |
22 |
# Tests |
|
23 | # Tests | |
23 | #----------------------------------------------------------------------------- |
|
24 | #----------------------------------------------------------------------------- | |
24 |
|
25 | |||
25 | # Tell nose to skip this module |
|
|||
26 | __test__ = {} |
|
|||
27 |
|
||||
28 | class TestInterpreter(unittest.TestCase): |
|
26 | class TestInterpreter(unittest.TestCase): | |
29 |
|
27 | |||
30 | def test_unicode(self): |
|
28 | def test_unicode(self): |
@@ -2,13 +2,11 b'' | |||||
2 |
|
2 | |||
3 | """This file contains unittests for the notification.py module.""" |
|
3 | """This file contains unittests for the notification.py module.""" | |
4 |
|
4 | |||
5 | __docformat__ = "restructuredtext en" |
|
|||
6 |
|
||||
7 | #----------------------------------------------------------------------------- |
|
5 | #----------------------------------------------------------------------------- | |
8 |
# Copyright (C) 2008 The IPython Development Team |
|
6 | # Copyright (C) 2008-2009 The IPython Development Team | |
9 | # |
|
7 | # | |
10 |
# Distributed under the terms of the BSD License. The full license is |
|
8 | # Distributed under the terms of the BSD License. The full license is | |
11 |
# the file COPYING, distributed as part of this software. |
|
9 | # in the file COPYING, distributed as part of this software. | |
12 | #----------------------------------------------------------------------------- |
|
10 | #----------------------------------------------------------------------------- | |
13 |
|
11 | |||
14 | #----------------------------------------------------------------------------- |
|
12 | #----------------------------------------------------------------------------- | |
@@ -18,13 +16,12 b' __docformat__ = "restructuredtext en"' | |||||
18 | # Tell nose to skip this module |
|
16 | # Tell nose to skip this module | |
19 | __test__ = {} |
|
17 | __test__ = {} | |
20 |
|
18 | |||
21 | import unittest |
|
19 | from twisted.trial import unittest | |
22 | import IPython.kernel.core.notification as notification |
|
20 | import IPython.kernel.core.notification as notification | |
23 | from nose.tools import timed |
|
|||
24 |
|
21 | |||
25 | # |
|
22 | #----------------------------------------------------------------------------- | |
26 |
# Support |
|
23 | # Support Classes | |
27 | # |
|
24 | #----------------------------------------------------------------------------- | |
28 |
|
25 | |||
29 | class Observer(object): |
|
26 | class Observer(object): | |
30 | """docstring for Observer""" |
|
27 | """docstring for Observer""" | |
@@ -39,7 +36,6 b' class Observer(object):' | |||||
39 | self.expectedType, |
|
36 | self.expectedType, | |
40 | self.expectedSender) |
|
37 | self.expectedSender) | |
41 |
|
38 | |||
42 |
|
||||
43 | def callback(self, theType, sender, args={}): |
|
39 | def callback(self, theType, sender, args={}): | |
44 | """callback""" |
|
40 | """callback""" | |
45 |
|
41 | |||
@@ -50,7 +46,6 b' class Observer(object):' | |||||
50 | assert(args == self.expectedKwArgs) |
|
46 | assert(args == self.expectedKwArgs) | |
51 | self.recieved = True |
|
47 | self.recieved = True | |
52 |
|
48 | |||
53 |
|
||||
54 | def verify(self): |
|
49 | def verify(self): | |
55 | """verify""" |
|
50 | """verify""" | |
56 |
|
51 | |||
@@ -62,7 +57,6 b' class Observer(object):' | |||||
62 | self.recieved = False |
|
57 | self.recieved = False | |
63 |
|
58 | |||
64 |
|
59 | |||
65 |
|
||||
66 | class Notifier(object): |
|
60 | class Notifier(object): | |
67 | """docstring for Notifier""" |
|
61 | """docstring for Notifier""" | |
68 | def __init__(self, theType, **kwargs): |
|
62 | def __init__(self, theType, **kwargs): | |
@@ -76,10 +70,9 b' class Notifier(object):' | |||||
76 | center.post_notification(self.theType, self, |
|
70 | center.post_notification(self.theType, self, | |
77 | **self.kwargs) |
|
71 | **self.kwargs) | |
78 |
|
72 | |||
79 |
|
73 | #----------------------------------------------------------------------------- | ||
80 | # |
|
74 | # Tests | |
81 | # Test Cases |
|
75 | #----------------------------------------------------------------------------- | |
82 | # |
|
|||
83 |
|
76 | |||
84 | class NotificationTests(unittest.TestCase): |
|
77 | class NotificationTests(unittest.TestCase): | |
85 | """docstring for NotificationTests""" |
|
78 | """docstring for NotificationTests""" | |
@@ -97,7 +90,6 b' class NotificationTests(unittest.TestCase):' | |||||
97 |
|
90 | |||
98 | observer.verify() |
|
91 | observer.verify() | |
99 |
|
92 | |||
100 |
|
||||
101 | def test_type_specificity(self): |
|
93 | def test_type_specificity(self): | |
102 | """Test that observers are registered by type""" |
|
94 | """Test that observers are registered by type""" | |
103 |
|
95 | |||
@@ -112,7 +104,6 b' class NotificationTests(unittest.TestCase):' | |||||
112 |
|
104 | |||
113 | observer.verify() |
|
105 | observer.verify() | |
114 |
|
106 | |||
115 |
|
||||
116 | def test_sender_specificity(self): |
|
107 | def test_sender_specificity(self): | |
117 | """Test that observers are registered by sender""" |
|
108 | """Test that observers are registered by sender""" | |
118 |
|
109 | |||
@@ -126,7 +117,6 b' class NotificationTests(unittest.TestCase):' | |||||
126 |
|
117 | |||
127 | observer.verify() |
|
118 | observer.verify() | |
128 |
|
119 | |||
129 |
|
||||
130 | def test_remove_all_observers(self): |
|
120 | def test_remove_all_observers(self): | |
131 | """White-box test for remove_all_observers""" |
|
121 | """White-box test for remove_all_observers""" | |
132 |
|
122 | |||
@@ -140,7 +130,6 b' class NotificationTests(unittest.TestCase):' | |||||
140 |
|
130 | |||
141 | self.assert_(len(notification.sharedCenter.observers) == 0, "observers removed") |
|
131 | self.assert_(len(notification.sharedCenter.observers) == 0, "observers removed") | |
142 |
|
132 | |||
143 |
|
||||
144 | def test_any_sender(self): |
|
133 | def test_any_sender(self): | |
145 | """test_any_sender""" |
|
134 | """test_any_sender""" | |
146 |
|
135 | |||
@@ -157,8 +146,6 b' class NotificationTests(unittest.TestCase):' | |||||
157 | sender2.post() |
|
146 | sender2.post() | |
158 | observer.verify() |
|
147 | observer.verify() | |
159 |
|
148 | |||
160 |
|
||||
161 | @timed(.01) |
|
|||
162 | def test_post_performance(self): |
|
149 | def test_post_performance(self): | |
163 | """Test that post_notification, even with many registered irrelevant |
|
150 | """Test that post_notification, even with many registered irrelevant | |
164 | observers is fast""" |
|
151 | observers is fast""" |
@@ -2,29 +2,36 b'' | |||||
2 | """ |
|
2 | """ | |
3 | Test the output capture at the OS level, using file descriptors. |
|
3 | Test the output capture at the OS level, using file descriptors. | |
4 | """ |
|
4 | """ | |
5 |
|
5 | #----------------------------------------------------------------------------- | ||
6 | __docformat__ = "restructuredtext en" |
|
6 | # Copyright (C) 2008-2009 The IPython Development Team | |
7 |
|
||||
8 | #------------------------------------------------------------------------------- |
|
|||
9 | # Copyright (C) 2008 The IPython Development Team |
|
|||
10 | # |
|
7 | # | |
11 | # Distributed under the terms of the BSD License. The full license is |
|
8 | # Distributed under the terms of the BSD License. The full license is | |
12 | # in the file COPYING, distributed as part of this software. |
|
9 | # in the file COPYING, distributed as part of this software. | |
13 |
#----------------------------------------------------------------------------- |
|
10 | #----------------------------------------------------------------------------- | |
|
11 | ||||
|
12 | #----------------------------------------------------------------------------- | |||
|
13 | # Imports | |||
|
14 | #----------------------------------------------------------------------------- | |||
14 |
|
15 | |||
15 | # Tell nose to skip this module |
|
16 | # Tell nose to skip this module | |
16 | __test__ = {} |
|
17 | __test__ = {} | |
17 |
|
18 | |||
18 | import os |
|
|||
19 | from cStringIO import StringIO |
|
19 | from cStringIO import StringIO | |
|
20 | import os | |||
|
21 | ||||
|
22 | from twisted.trial import unittest | |||
20 |
|
23 | |||
21 | from IPython.testing import decorators as dec |
|
24 | from IPython.testing import decorators_trial as dec | |
22 |
|
25 | |||
23 | #----------------------------------------------------------------------------- |
|
26 | #----------------------------------------------------------------------------- | |
24 |
# Test |
|
27 | # Tests | |
|
28 | #----------------------------------------------------------------------------- | |||
|
29 | ||||
|
30 | ||||
|
31 | class TestRedirector(unittest.TestCase): | |||
25 |
|
32 | |||
26 | @dec.skip_win32 |
|
33 | @dec.skip_win32 | |
27 | def test_redirector(): |
|
34 | def test_redirector(self): | |
28 |
""" |
|
35 | """Checks that the redirector can be used to do synchronous capture. | |
29 | """ |
|
36 | """ | |
30 | from IPython.kernel.core.fd_redirector import FDRedirector |
|
37 | from IPython.kernel.core.fd_redirector import FDRedirector | |
@@ -42,12 +49,13 b' def test_redirector():' | |||||
42 | r.stop() |
|
49 | r.stop() | |
43 | result1 = out.getvalue() |
|
50 | result1 = out.getvalue() | |
44 | result2 = "".join("%ic\n%i\n" %(i, i) for i in range(10)) |
|
51 | result2 = "".join("%ic\n%i\n" %(i, i) for i in range(10)) | |
45 |
assert |
|
52 | self.assertEquals(result1, result2) | |
46 |
|
||||
47 |
|
53 | |||
48 | @dec.skip_win32 |
|
54 | @dec.skip_win32 | |
49 | def test_redirector_output_trap(): |
|
55 | def test_redirector_output_trap(self): | |
50 | """ This test check not only that the redirector_output_trap does |
|
56 | """Check the greedy trapping behavior of the traps. | |
|
57 | ||||
|
58 | This test check not only that the redirector_output_trap does | |||
51 | trap the output, but also that it does it in a gready way, that |
|
59 | trap the output, but also that it does it in a gready way, that | |
52 | is by calling the callback ASAP. |
|
60 | is by calling the callback ASAP. | |
53 | """ |
|
61 | """ | |
@@ -66,5 +74,5 b' def test_redirector_output_trap():' | |||||
66 | trap.unset() |
|
74 | trap.unset() | |
67 | result1 = out.getvalue() |
|
75 | result1 = out.getvalue() | |
68 | result2 = "".join("%ic\n%ip\n%i\n" %(i, i, i) for i in range(10)) |
|
76 | result2 = "".join("%ic\n%ip\n%i\n" %(i, i, i) for i in range(10)) | |
69 |
assert |
|
77 | self.assertEquals(result1, result2) | |
70 |
|
78 |
@@ -46,7 +46,7 b' def test_deliberately_broken():' | |||||
46 | """A deliberately broken test - we want to skip this one.""" |
|
46 | """A deliberately broken test - we want to skip this one.""" | |
47 | 1/0 |
|
47 | 1/0 | |
48 |
|
48 | |||
49 | @dec.skip('foo') |
|
49 | @dec.skip('Testing the skip decorator') | |
50 | def test_deliberately_broken2(): |
|
50 | def test_deliberately_broken2(): | |
51 | """Another deliberately broken test - we want to skip this one.""" |
|
51 | """Another deliberately broken test - we want to skip this one.""" | |
52 | 1/0 |
|
52 | 1/0 |
General Comments 0
You need to be logged in to leave comments.
Login now