##// END OF EJS Templates
clear out the contents of but keep length of In[]
clear out the contents of but keep length of In[]

File last commit:

r5957:cbc53d6f
r5957:cbc53d6f
Show More
test_magic.py
389 lines | 10.0 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
#-----------------------------------------------------------------------------
Fernando Perez
Update decorators and test scripts.
r1848 import os
import nose.tools as nt
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
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 from IPython.utils import py3compat
Fernando Perez
Ensure that we don't damage the __builtins__ object after %run....
r1955
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
Move tests for magics that are terminal-specific to their own file.
r5436
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)
Thomas Kluyver
Replacing some .items() calls with .iteritems() for cleaner conversion with 2to3.
r3114 for key, val in _ip.alias_manager.alias_table.iteritems():
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
Fernando Perez
Fix argument parsing bug in win32, clean up temp files in %hist doctest.
r2450 def test_magic_parse_options():
"""Test that we don't mangle paths when parsing magic options."""
ip = get_ipython()
path = 'c:\\x'
opts = ip.parse_options('-f %s' % path,'f:')[0]
# argv splitting is os-dependent
if os.name == 'posix':
expected = 'c:x'
else:
expected = path
nt.assert_equals(opts['f'], expected)
MinRK
Allow IPython to run without sqlite3...
r5147
@dec.skip_without('sqlite3')
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-')
Thomas Kluyver
Passing IPython.core tests.
r3396 In [11]: %hist -nl -f $tfile 3
Fernando Perez
Fix argument parsing bug in win32, clean up temp files in %hist doctest.
r2450
In [13]: import os; os.unlink(tfile)
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762 """
MinRK
Allow IPython to run without sqlite3...
r5147 @dec.skip_without('sqlite3')
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762 def doctest_hist_r():
"""Test %hist -r
Fernando Perez
Changed %hist to default to NOT printing numbers, added -p and -o options....
r2441 XXX - This test is not recording the output correctly. For some reason, in
testing mode the raw history isn't getting populated. No idea why.
Disabling the output checking for now, though at least we do run it.
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762
Fernando Perez
Changed %hist to default to NOT printing numbers, added -p and -o options....
r2441 In [1]: 'hist' in _ip.lsmagic()
Out[1]: True
Fernando Perez
Fix some tests using magics....
r2092
Fernando Perez
Changed %hist to default to NOT printing numbers, added -p and -o options....
r2441 In [2]: x=1
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762
Thomas Kluyver
Passing IPython.core tests.
r3396 In [3]: %hist -rl 2
Fernando Perez
Changed %hist to default to NOT printing numbers, added -p and -o options....
r2441 x=1 # random
%hist -r 2
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762 """
MinRK
Allow IPython to run without sqlite3...
r5147
@dec.skip_without('sqlite3')
Fernando Perez
Changed %hist to default to NOT printing numbers, added -p and -o options....
r2441 def doctest_hist_op():
"""Test %hist -op
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 In [1]: class b(float):
...: pass
Fernando Perez
Changed %hist to default to NOT printing numbers, added -p and -o options....
r2441 ...:
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 In [2]: class s(object):
...: def __str__(self):
...: return 's'
Fernando Perez
Changed %hist to default to NOT printing numbers, added -p and -o options....
r2441 ...:
In [3]:
In [4]: class r(b):
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 ...: def __repr__(self):
...: return 'r'
Fernando Perez
Changed %hist to default to NOT printing numbers, added -p and -o options....
r2441 ...:
In [5]: class sr(s,r): pass
...:
In [6]:
In [7]: bb=b()
In [8]: ss=s()
In [9]: rr=r()
In [10]: ssrr=sr()
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 In [11]: 4.5
Out[11]: 4.5
Fernando Perez
Changed %hist to default to NOT printing numbers, added -p and -o options....
r2441
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 In [12]: str(ss)
Out[12]: 's'
Fernando Perez
Changed %hist to default to NOT printing numbers, added -p and -o options....
r2441
In [13]:
In [14]: %hist -op
>>> class b:
... pass
...
>>> class s(b):
... def __str__(self):
... return 's'
...
>>>
>>> class r(b):
... def __repr__(self):
... return 'r'
...
>>> class sr(s,r): pass
>>>
>>> bb=b()
>>> ss=s()
>>> rr=r()
>>> ssrr=sr()
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 >>> 4.5
4.5
>>> str(ss)
's'
Fernando Perez
Changed %hist to default to NOT printing numbers, added -p and -o options....
r2441 >>>
"""
MinRK
Allow IPython to run without sqlite3...
r5147
@dec.skip_without('sqlite3')
Thomas Kluyver
Add test for magic macro command.
r3385 def test_macro():
ip = get_ipython()
ip.history_manager.reset() # Clear any existing history.
cmds = ["a=1", "def b():\n return a**2", "print(a,b())"]
Thomas Kluyver
Passing IPython.core tests.
r3396 for i, cmd in enumerate(cmds, start=1):
ip.history_manager.store_inputs(i, cmd)
Thomas Kluyver
Add test for magic macro command.
r3385 ip.magic("macro test 1-3")
nt.assert_equal(ip.user_ns["test"].value, "\n".join(cmds)+"\n")
Thomas Kluyver
Improve macro test, modernise magic_macro code.
r3386 # List macros.
assert "test" in ip.magic("macro")
Fernando Perez
Progress towards getting the test suite in shape again....
r2392
MinRK
Allow IPython to run without sqlite3...
r5147
@dec.skip_without('sqlite3')
Thomas Kluyver
Refactor execution logic, so that a multi-line macro is correctly expanded and executed (+ unit test). History is now stored after all input transformations have been done.
r3414 def test_macro_run():
"""Test that we can run a multi-line macro successfully."""
ip = get_ipython()
ip.history_manager.reset()
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 cmds = ["a=10", "a+=1", py3compat.doctest_refactor_print("print a"),
"%macro test 2-3"]
Thomas Kluyver
Refactor execution logic, so that a multi-line macro is correctly expanded and executed (+ unit test). History is now stored after all input transformations have been done.
r3414 for cmd in cmds:
Thomas Kluyver
Change run_cell to not store history by default.
r4995 ip.run_cell(cmd, store_history=True)
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 nt.assert_equal(ip.user_ns["test"].value,
py3compat.doctest_refactor_print("a+=1\nprint a\n"))
Thomas Kluyver
Use AssertPrints in test_magic.
r4903 with tt.AssertPrints("12"):
Thomas Kluyver
Refactor execution logic, so that a multi-line macro is correctly expanded and executed (+ unit test). History is now stored after all input transformations have been done.
r3414 ip.run_cell("test")
Thomas Kluyver
Use AssertPrints in test_magic.
r4903 with tt.AssertPrints("13"):
Thomas Kluyver
Refactor execution logic, so that a multi-line macro is correctly expanded and executed (+ unit test). History is now stored after all input transformations have been done.
r3414 ip.run_cell("test")
Paul Ivanov
tests for %clear extension
r5939
@dec.skipif_not_numpy
Fernando Perez
Update decorators and test scripts.
r1848 def test_numpy_clear_array_undec():
Paul Ivanov
tests for %clear extension
r5939 "Test '%clear array' functionality"
Paul Ivanov
new way of loading extensions, thanks @takluyver
r5956 _ip.magic("load_ext clearcmd")
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)
Paul Ivanov
tests for %clear extension
r5939
def test_clear():
"Test '%clear' magic provided by IPython.extensions.clearcmd"
_ip = get_ipython()
Paul Ivanov
new way of loading extensions, thanks @takluyver
r5956 _ip.magic("load_ext clearcmd")
Paul Ivanov
tests for %clear extension
r5939 _ip.run_cell("parrot = 'dead'", store_history=True)
# test '%clear out', make an Out prompt
_ip.run_cell("parrot", store_history=True)
nt.assert_true('dead' in [_ip.user_ns[x] for x in '_','__','___'])
_ip.magic('clear out')
nt.assert_false('dead' in [_ip.user_ns[x] for x in '_','__','___'])
Paul Ivanov
%clear magic now fully restored...
r5940 nt.assert_true(len(_ip.user_ns['Out']) == 0)
Paul Ivanov
tests for %clear extension
r5939
# test '%clear in'
_ip.run_cell("parrot", store_history=True)
nt.assert_true('parrot' in [_ip.user_ns[x] for x in '_i','_ii','_iii'])
_ip.magic('%clear in')
nt.assert_false('parrot' in [_ip.user_ns[x] for x in '_i','_ii','_iii'])
Paul Ivanov
clear out the contents of but keep length of In[]
r5957 nt.assert_true(len(set(_ip.user_ns['In'])) == 1)
Paul Ivanov
tests for %clear extension
r5939
# test '%clear dhist'
_ip.run_cell("tmp = [d for d in _dh]") # copy before clearing
_ip.magic('cd')
_ip.magic('cd -')
nt.assert_true(len(_ip.user_ns['_dh']) > 0)
_ip.magic('clear dhist')
nt.assert_true(len(_ip.user_ns['_dh']) == 0)
_ip.run_cell("_dh = [d for d in tmp]") #restore
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762
Paul Ivanov
clear out the contents of but keep length of In[]
r5957 # test that In length is preserved for %macro
_ip.run_cell("print 'foo'")
_ip.run_cell("clear in")
nt.assert_true(len(_ip.user_ns['In']) == _ip.displayhook.prompt_count+1)
Fernando Perez
Fix broken %time magic....
r2411 def test_time():
_ip.magic('time None')
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 @py3compat.doctest_refactor_print
Fernando Perez
Fix broken %time magic....
r2411 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
Thomas Kluyver
Add %time within function to doctest.
r3478
In [11]: def f(kmjy):
....: %time print 2*kmjy
In [12]: f(3)
6
CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
Wall time: 0.00 s
Fernando Perez
Fix broken %time magic....
r2411 """
Fernando Perez
Add transformers to understand code pasted with >>> or IPython prompts....
r2426
Fernando Perez
Work around a bug in Python's shlex module with unicode input....
r2650
Fernando Perez
Add transformers to understand code pasted with >>> or IPython prompts....
r2426 def test_doctest_mode():
"Toggle doctest_mode twice, it should be a no-op and run without error"
_ip.magic('doctest_mode')
_ip.magic('doctest_mode')
Fernando Perez
Work around a bug in Python's shlex module with unicode input....
r2650
def test_parse_options():
"""Tests for basic options parsing in magics."""
# These are only the most minimal of tests, more should be added later. At
# the very least we check that basic text/unicode calls work OK.
nt.assert_equal(_ip.parse_options('foo', '')[1], 'foo')
nt.assert_equal(_ip.parse_options(u'foo', '')[1], u'foo')
Fernando Perez
Add transformers to understand code pasted with >>> or IPython prompts....
r2426
Fernando Perez
Work around a bug in Python's shlex module with unicode input....
r2650 def test_dirops():
"""Test various directory handling operations."""
Min RK
fix various tests on Windows...
r4105 # curpath = lambda :os.path.splitdrive(os.getcwdu())[1].replace('\\','/')
curpath = os.getcwdu
Thomas Kluyver
IPython behaves properly when started in a directory with non-ascii characters in the name. + Unit test....
r3451 startdir = os.getcwdu()
Gabriel
Fix tests to work when ~/.config/ipython contains a symlink.
r5663 ipdir = os.path.realpath(_ip.ipython_dir)
Fernando Perez
Work around a bug in Python's shlex module with unicode input....
r2650 try:
_ip.magic('cd "%s"' % ipdir)
nt.assert_equal(curpath(), ipdir)
_ip.magic('cd -')
nt.assert_equal(curpath(), startdir)
_ip.magic('pushd "%s"' % ipdir)
nt.assert_equal(curpath(), ipdir)
_ip.magic('popd')
nt.assert_equal(curpath(), startdir)
finally:
os.chdir(startdir)
Fernando Perez
Fixed unused %cpaste test and moved into proper test suite.
r2655
Fernando Perez
Fix small bug where %xmode without arguments failed to run....
r3146 def test_xmode():
# Calling xmode three times should be a no-op
xmode = _ip.InteractiveTB.mode
for i in range(3):
_ip.magic("xmode")
nt.assert_equal(_ip.InteractiveTB.mode, xmode)
Thomas Kluyver
Add test for hard reset.
r3522
def test_reset_hard():
monitor = []
class A(object):
def __del__(self):
monitor.append(1)
def __repr__(self):
return "<A instance>"
_ip.user_ns["a"] = A()
_ip.run_cell("a")
nt.assert_equal(monitor, [])
Thomas Kluyver
Make hard reset the default with %reset.
r3523 _ip.magic_reset("-f")
Thomas Kluyver
Add test for hard reset.
r3522 nt.assert_equal(monitor, [1])
Thomas Kluyver
Create test for %xdel magic. Not passing yet, although the equivalent works in interactive use.
r3824
class TestXdel(tt.TempFileMixin):
def test_xdel(self):
"""Test that references from %run are cleared by xdel."""
src = ("class A(object):\n"
" monitor = []\n"
" def __del__(self):\n"
" self.monitor.append(1)\n"
"a = A()\n")
self.mktmp(src)
Thomas Kluyver
Remove remaining references held by test suite, so that xdel test passes.
r3832 # %run creates some hidden references...
Thomas Kluyver
Create test for %xdel magic. Not passing yet, although the equivalent works in interactive use.
r3824 _ip.magic("run %s" % self.fname)
Thomas Kluyver
Remove remaining references held by test suite, so that xdel test passes.
r3832 # ... as does the displayhook.
Thomas Kluyver
Create test for %xdel magic. Not passing yet, although the equivalent works in interactive use.
r3824 _ip.run_cell("a")
Thomas Kluyver
Remove object references kept by the test suite in a better way.
r3844
Thomas Kluyver
Create test for %xdel magic. Not passing yet, although the equivalent works in interactive use.
r3824 monitor = _ip.user_ns["A"].monitor
nt.assert_equal(monitor, [])
Thomas Kluyver
Remove remaining references held by test suite, so that xdel test passes.
r3832
Thomas Kluyver
Remove object references kept by the test suite in a better way.
r3844 _ip.magic("xdel a")
Thomas Kluyver
Remove remaining references held by test suite, so that xdel test passes.
r3832
# Check that a's __del__ method has been called.
Thomas Kluyver
Create test for %xdel magic. Not passing yet, although the equivalent works in interactive use.
r3824 nt.assert_equal(monitor, [1])
MinRK
fix+test %who_ls type checking, skip %who doctests...
r3332
def doctest_who():
"""doctest for %who
In [1]: %reset -f
In [2]: alpha = 123
In [3]: beta = 'beta'
In [4]: %who int
alpha
In [5]: %who str
beta
In [6]: %whos
Variable Type Data/Info
----------------------------
alpha int 123
beta str beta
In [7]: %who_ls
Out[7]: ['alpha', 'beta']
MinRK
add `float_precision` trait to PlainTextFormatter...
r3350 """
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 @py3compat.u_format
MinRK
add `float_precision` trait to PlainTextFormatter...
r3350 def doctest_precision():
"""doctest for %precision
In [1]: f = get_ipython().shell.display_formatter.formatters['text/plain']
In [2]: %precision 5
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 Out[2]: {u}'%.5f'
MinRK
add `float_precision` trait to PlainTextFormatter...
r3350
In [3]: f.float_format
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 Out[3]: {u}'%.5f'
MinRK
add `float_precision` trait to PlainTextFormatter...
r3350
In [4]: %precision %e
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 Out[4]: {u}'%e'
MinRK
add `float_precision` trait to PlainTextFormatter...
r3350
In [5]: f(3.1415927)
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 Out[5]: {u}'3.141593e+00'
MinRK
add `float_precision` trait to PlainTextFormatter...
r3350 """
Thomas Kluyver
Add test for wildcard search syntax.
r5549 def test_psearch():
with tt.AssertPrints("dict.fromkeys"):
_ip.run_cell("dict.fr*?")
MinRK
add strict flag to arg_split, to optionally ignore shlex parse errors...
r5672 def test_timeit_shlex():
"""test shlex issues with timeit (#1109)"""
_ip.ex("def f(*a,**kw): pass")
_ip.magic('timeit -n1 "this is a bug".count(" ")')
_ip.magic('timeit -r1 -n1 f(" ", 1)')
_ip.magic('timeit -r1 -n1 f(" ", 1, " ", 2, " ")')
_ip.magic('timeit -r1 -n1 ("a " + "b")')
_ip.magic('timeit -r1 -n1 f("a " + "b")')
_ip.magic('timeit -r1 -n1 f("a " + "b ")')
Paul Ivanov
test for GH #1269
r5901
def test_timeit_arguments():
"Test valid timeit arguments, should not cause SyntaxError (GH #1269)"
_ip.magic("timeit ('#')")