##// END OF EJS Templates
Fix style
Fix style

File last commit:

r11971:3ebde4bd
r12932:7610cfda
Show More
test_irunner_pylab_magic.py
121 lines | 3.9 KiB | text/x-python | PythonLexer
/ IPython / lib / tests / test_irunner_pylab_magic.py
Jens Hedegaard Nielsen
Add irunner test for pylab_import_all.
r4790 """Test suite for pylab_import_all magic
Bernardo B. Marques
remove all trailling spaces
r4872 Modified from the irunner module but using regex.
Jens Hedegaard Nielsen
Add irunner test for pylab_import_all.
r4790 """
Matthias BUSSONNIER
use print function in module with `print >>`
r7817 from __future__ import print_function
Jens Hedegaard Nielsen
Add irunner test for pylab_import_all.
r4790
# Global to make tests extra verbose and help debugging
VERBOSE = True
# stdlib imports
MinRK
always use StringIO, never cStringIO...
r4794 import StringIO
Jens Hedegaard Nielsen
Add irunner test for pylab_import_all.
r4790 import sys
import unittest
import re
# IPython imports
from IPython.lib import irunner
from IPython.testing import decorators
Thomas Spura
Skip tests that require X, when importing pylab results in RuntimeError....
r5844 def pylab_not_importable():
Bradley M. Froehle
pylab_not_importable: Catch all exceptions, not just RuntimeErrors....
r8845 """Test if importing pylab fails. (For example, when having no display)"""
Thomas Spura
Skip tests that require X, when importing pylab results in RuntimeError....
r5844 try:
import pylab
return False
Bradley M. Froehle
pylab_not_importable: Catch all exceptions, not just RuntimeErrors....
r8845 except:
Thomas Spura
Skip tests that require X, when importing pylab results in RuntimeError....
r5844 return True
Jens Hedegaard Nielsen
Add irunner test for pylab_import_all.
r4790 # Testing code begins
class RunnerTestCase(unittest.TestCase):
def setUp(self):
self.out = StringIO.StringIO()
#self.out = sys.stdout
def _test_runner(self,runner,source,output):
"""Test that a given runner's input/output match."""
Bernardo B. Marques
remove all trailling spaces
r4872
Jens Hedegaard Nielsen
Add irunner test for pylab_import_all.
r4790 runner.run_source(source)
out = self.out.getvalue()
#out = ''
# this output contains nasty \r\n lineends, and the initial ipython
# banner. clean it up for comparison, removing lines of whitespace
output_l = [l for l in output.splitlines() if l and not l.isspace()]
out_l = [l for l in out.splitlines() if l and not l.isspace()]
mismatch = 0
if len(output_l) != len(out_l):
message = ("Mismatch in number of lines\n\n"
"Expected:\n"
"~~~~~~~~~\n"
"%s\n\n"
"Got:\n"
"~~~~~~~~~\n"
"%s"
) % ("\n".join(output_l), "\n".join(out_l))
self.fail(message)
for n in range(len(output_l)):
# Do a line-by-line comparison
ol1 = output_l[n].strip()
ol2 = out_l[n].strip()
if not re.match(ol1,ol2):
mismatch += 1
if VERBOSE:
Matthias BUSSONNIER
use print function in module with `print >>`
r7817 print('<<< line %s does not match:' % n)
print(repr(ol1))
print(repr(ol2))
print('>>>')
Bradley M. Froehle
s/assert_/assertTrue/
r7876 self.assertTrue(mismatch==0,'Number of mismatched lines: %s' %
mismatch)
Jens Hedegaard Nielsen
Add irunner test for pylab_import_all.
r4790
Paul Ivanov
fix failing tests without X in IPython.lib...
r11971 @decorators.skip_if_no_x11
Jens Hedegaard Nielsen
Add irunner test for pylab_import_all.
r4790 @decorators.skipif_not_matplotlib
Thomas Kluyver
Fix for skipping tests when matplotlib not available.
r5915 @decorators.skipif(pylab_not_importable, "Likely a run without X.")
Jens Hedegaard Nielsen
Add irunner test for pylab_import_all.
r4790 def test_pylab_import_all_enabled(self):
"Verify that plot is available when pylab_import_all = True"
source = """
from IPython.config.application import Application
app = Application.instance()
app.pylab_import_all = True
pylab
ip=get_ipython()
'plot' in ip.user_ns
"""
output = """
In \[1\]: from IPython\.config\.application import Application
In \[2\]: app = Application\.instance\(\)
In \[3\]: app\.pylab_import_all = True
In \[4\]: pylab
Paul Ivanov
fix two failing test in IPython.lib
r11623 ^Using matplotlib backend:
Populating the interactive namespace from numpy and matplotlib
Jens Hedegaard Nielsen
Add irunner test for pylab_import_all.
r4790 In \[5\]: ip=get_ipython\(\)
In \[6\]: \'plot\' in ip\.user_ns
Out\[6\]: True
"""
runner = irunner.IPythonRunner(out=self.out)
self._test_runner(runner,source,output)
Paul Ivanov
fix failing tests without X in IPython.lib...
r11971 @decorators.skip_if_no_x11
Jens Hedegaard Nielsen
Add irunner test for pylab_import_all.
r4790 @decorators.skipif_not_matplotlib
Thomas Kluyver
Fix for skipping tests when matplotlib not available.
r5915 @decorators.skipif(pylab_not_importable, "Likely a run without X.")
Jens Hedegaard Nielsen
Add irunner test for pylab_import_all.
r4790 def test_pylab_import_all_disabled(self):
"Verify that plot is not available when pylab_import_all = False"
source = """
from IPython.config.application import Application
app = Application.instance()
app.pylab_import_all = False
pylab
ip=get_ipython()
'plot' in ip.user_ns
"""
output = """
In \[1\]: from IPython\.config\.application import Application
In \[2\]: app = Application\.instance\(\)
In \[3\]: app\.pylab_import_all = False
In \[4\]: pylab
Paul Ivanov
fix two failing test in IPython.lib
r11623 ^Using matplotlib backend:
Populating the interactive namespace from numpy and matplotlib
Jens Hedegaard Nielsen
Add irunner test for pylab_import_all.
r4790 In \[5\]: ip=get_ipython\(\)
In \[6\]: \'plot\' in ip\.user_ns
Out\[6\]: False
"""
runner = irunner.IPythonRunner(out=self.out)
self._test_runner(runner,source,output)