##// END OF EJS Templates
Improve setuptools support....
Improve setuptools support. Many thanks to Gael for the code/idea for the solution, see bug page for details. Fixes: https://bugs.launchpad.net/ipython/+bug/504968

File last commit:

r2414:7fce7ae8
r2422:702b2cb7
Show More
test_magic.py
191 lines | 5.1 KiB | text/x-python | PythonLexer
Fernando Perez
Update decorators and test scripts.
r1848 """Tests for various magic functions.
Ville M. Vainio
add test_magic, with single test (for rehashx)
r1735
Fernando Perez
Update decorators and test scripts.
r1848 Needs to be run by nose (to make ipython session available).
Ville M. Vainio
add test_magic, with single test (for rehashx)
r1735 """
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 from __future__ import absolute_import
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 #-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
# stdlib
Fernando Perez
Update decorators and test scripts.
r1848 import os
import sys
Fernando Perez
Ensure that we don't damage the __builtins__ object after %run....
r1955 import tempfile
import types
Fernando Perez
Improvements and bugfixes to %paste....
r2188 from cStringIO import StringIO
Fernando Perez
Update decorators and test scripts.
r1848
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 # third-party
Fernando Perez
Update decorators and test scripts.
r1848 import nose.tools as nt
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 # our own
from IPython.utils import genutils
Brian Granger
All platutils modules to utils, moved tests and updated imports.
r2039 from IPython.utils.platutils import find_cmd, get_long_path_name
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762 from IPython.testing import decorators as dec
Fernando Perez
Ensure that we don't damage the __builtins__ object after %run....
r1955 from IPython.testing import tools as tt
Fernando Perez
Update decorators and test scripts.
r1848 #-----------------------------------------------------------------------------
# Test functions begin
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 #-----------------------------------------------------------------------------
Fernando Perez
Update decorators and test scripts.
r1848
Ville M. Vainio
add test_magic, with single test (for rehashx)
r1735 def test_rehashx():
# clear up everything
Brian Granger
Massive refactoring of of the core....
r2245 _ip = get_ipython()
_ip.alias_manager.alias_table.clear()
Ville M. Vainio
add test_magic, with single test (for rehashx)
r1735 del _ip.db['syscmdlist']
_ip.magic('rehashx')
# Practically ALL ipython development systems will have more than 10 aliases
Brian Granger
Massive refactoring of of the core....
r2245 yield (nt.assert_true, len(_ip.alias_manager.alias_table) > 10)
for key, val in _ip.alias_manager.alias_table.items():
Ville M. Vainio
add test_magic, with single test (for rehashx)
r1735 # we must strip dots from alias names
Fernando Perez
Fix some tests using magics....
r2092 nt.assert_true('.' not in key)
Ville M. Vainio
add test_magic, with single test (for rehashx)
r1735
# rehashx must fill up syscmdlist
scoms = _ip.db['syscmdlist']
Fernando Perez
Fix some tests using magics....
r2092 yield (nt.assert_true, len(scoms) > 10)
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762
def doctest_hist_f():
"""Test %hist -f with temporary filename.
In [9]: import tempfile
In [10]: tfile = tempfile.mktemp('.py','tmp-ipython-')
Fernando Perez
Fix some tests using magics....
r2092 In [11]: %hist -n -f $tfile 3
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762 """
def doctest_hist_r():
"""Test %hist -r
XXX - This test is not recording the output correctly. Not sure why...
Brian Granger
Continuing a massive refactor of everything.
r2205 In [20]: 'hist' in _ip.lsmagic()
Fernando Perez
Fix some tests using magics....
r2092 Out[20]: True
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762 In [6]: x=1
Fernando Perez
Fix some tests using magics....
r2092 In [7]: %hist -n -r 2
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762 x=1 # random
hist -n -r 2 # random
"""
Fernando Perez
Fix https://bugs.launchpad.net/ipython/+bug/239054...
r1859
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762 def test_shist():
Fernando Perez
Update decorators and test scripts.
r1848 # Simple tests of ShadowHist class - test generator.
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762 import os, shutil, tempfile
Brian Granger
Moving extensions to either quarantine or deathrow....
r2267 from IPython.utils import pickleshare
Brian Granger
Moving tests/test_magic.py and support files to core/tests.
r2053 from IPython.core.history import ShadowHist
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762
tfile = tempfile.mktemp('','tmp-ipython-')
db = pickleshare.PickleShareDB(tfile)
s = ShadowHist(db)
s.add('hello')
s.add('world')
s.add('hello')
s.add('hello')
s.add('karhu')
yield nt.assert_equals,s.all(),[(1, 'hello'), (2, 'world'), (3, 'karhu')]
yield nt.assert_equal,s.get(2),'world'
shutil.rmtree(tfile)
Fernando Perez
Progress towards getting the test suite in shape again....
r2392
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762
Fernando Perez
Progress towards getting the test suite in shape again....
r2392 # XXX failing for now, until we get clearcmd out of quarantine. But we should
# fix this and revert the skip to happen only if numpy is not around.
#@dec.skipif_not_numpy
@dec.skipknownfailure
Fernando Perez
Update decorators and test scripts.
r1848 def test_numpy_clear_array_undec():
Brian Granger
Merging -r 1177 from lp:ipython with fixes and resolutions....
r2124 from IPython.extensions import clearcmd
Fernando Perez
Fix some tests using magics....
r2092
Fernando Perez
Update decorators and test scripts.
r1848 _ip.ex('import numpy as np')
_ip.ex('a = np.empty(2)')
Fernando Perez
Fix some tests using magics....
r2092 yield (nt.assert_true, 'a' in _ip.user_ns)
Fernando Perez
Update decorators and test scripts.
r1848 _ip.magic('clear array')
Fernando Perez
Fix some tests using magics....
r2092 yield (nt.assert_false, 'a' in _ip.user_ns)
Fernando Perez
Update decorators and test scripts.
r1848
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762
Fernando Perez
Add %paste to automatically paste clipboard contents....
r2106 # Multiple tests for clipboard pasting
Fernando Perez
Fix broken %time magic....
r2411 @dec.parametric
Fernando Perez
Add %paste to automatically paste clipboard contents....
r2106 def test_paste():
Brian Granger
Massive refactoring of of the core....
r2245 _ip = get_ipython()
Fernando Perez
Make %paste echo by default, introduce -q for quiet mode.
r2189 def paste(txt, flags='-q'):
"""Paste input text, by default in quiet mode"""
Fernando Perez
Add %paste to automatically paste clipboard contents....
r2106 hooks.clipboard_get = lambda : txt
Fernando Perez
Improvements and bugfixes to %paste....
r2188 _ip.magic('paste '+flags)
Fernando Perez
Add %paste to automatically paste clipboard contents....
r2106
# Inject fake clipboard hook but save original so we can restore it later
Brian Granger
Continuing a massive refactor of everything.
r2205 hooks = _ip.hooks
Fernando Perez
Add %paste to automatically paste clipboard contents....
r2106 user_ns = _ip.user_ns
original_clip = hooks.clipboard_get
try:
Fernando Perez
Fix invalid syntax for Python 2.4 in a test,...
r2143 # This try/except with an emtpy except clause is here only because
# try/yield/finally is invalid syntax in Python 2.4. This will be
# removed when we drop 2.4-compatibility, and the emtpy except below
# will be changed to a finally.
Fernando Perez
Add %paste to automatically paste clipboard contents....
r2106 # Run tests with fake clipboard function
user_ns.pop('x', None)
paste('x=1')
Fernando Perez
Fix broken %time magic....
r2411 yield nt.assert_equal(user_ns['x'], 1)
Fernando Perez
Add %paste to automatically paste clipboard contents....
r2106
user_ns.pop('x', None)
paste('>>> x=2')
Fernando Perez
Fix broken %time magic....
r2411 yield nt.assert_equal(user_ns['x'], 2)
Fernando Perez
Add %paste to automatically paste clipboard contents....
r2106
paste("""
>>> x = [1,2,3]
>>> y = []
>>> for i in x:
... y.append(i**2)
...
""")
Fernando Perez
Fix broken %time magic....
r2411 yield nt.assert_equal(user_ns['x'], [1,2,3])
yield nt.assert_equal(user_ns['y'], [1,4,9])
Fernando Perez
Add %paste to automatically paste clipboard contents....
r2106
Fernando Perez
Improvements and bugfixes to %paste....
r2188 # Now, test that paste -r works
user_ns.pop('x', None)
Fernando Perez
Fix broken %time magic....
r2411 yield nt.assert_false('x' in user_ns)
Fernando Perez
Improvements and bugfixes to %paste....
r2188 _ip.magic('paste -r')
Fernando Perez
Fix broken %time magic....
r2411 yield nt.assert_equal(user_ns['x'], [1,2,3])
Fernando Perez
Improvements and bugfixes to %paste....
r2188
Fernando Perez
Make %paste echo by default, introduce -q for quiet mode.
r2189 # Also test paste echoing, by temporarily faking the writer
Fernando Perez
Improvements and bugfixes to %paste....
r2188 w = StringIO()
Brian Granger
Continuing a massive refactor of everything.
r2205 writer = _ip.write
_ip.write = w.write
Fernando Perez
Improvements and bugfixes to %paste....
r2188 code = """
a = 100
b = 200"""
try:
Fernando Perez
Make %paste echo by default, introduce -q for quiet mode.
r2189 paste(code,'')
Fernando Perez
Improvements and bugfixes to %paste....
r2188 out = w.getvalue()
finally:
Brian Granger
Continuing a massive refactor of everything.
r2205 _ip.write = writer
Fernando Perez
Fix broken %time magic....
r2411 yield nt.assert_equal(user_ns['a'], 100)
yield nt.assert_equal(user_ns['b'], 200)
yield nt.assert_equal(out, code+"\n## -- End pasted text --\n")
Fernando Perez
Improvements and bugfixes to %paste....
r2188
finally:
# This should be in a finally clause, instead of the bare except above.
# Restore original hook
hooks.clipboard_get = original_clip
Fernando Perez
Fix broken %time magic....
r2411
def test_time():
_ip.magic('time None')
def doctest_time():
"""
In [10]: %time None
CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
Wall time: 0.00 s
"""