##// END OF EJS Templates
Refactored iptest to include the iptestall capabilities....
Refactored iptest to include the iptestall capabilities. We not have a test suite that can be run with `iptest all`. Give it a shot!

File last commit:

r1916:7b7637de
r1972:f82dc425
Show More
test_magic.py
151 lines | 3.3 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
Fix a number of bugs with %history, add proper tests....
r1762
Fernando Perez
Update decorators and test scripts.
r1848 # Standard library imports
import os
import sys
# Third-party imports
import nose.tools as nt
# From our own code
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762 from IPython.testing import decorators as dec
Fernando Perez
Update decorators and test scripts.
r1848 #-----------------------------------------------------------------------------
# Test functions begin
Ville M. Vainio
add test_magic, with single test (for rehashx)
r1735 def test_rehashx():
# clear up everything
_ip.IP.alias_table.clear()
del _ip.db['syscmdlist']
_ip.magic('rehashx')
# Practically ALL ipython development systems will have more than 10 aliases
assert len(_ip.IP.alias_table) > 10
for key, val in _ip.IP.alias_table.items():
# we must strip dots from alias names
assert '.' not in key
# rehashx must fill up syscmdlist
scoms = _ip.db['syscmdlist']
assert len(scoms) > 10
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762
def doctest_run_ns():
"""Classes declared %run scripts must be instantiable afterwards.
Fernando Perez
- Make ipdoctest a little cleaner by giving it separate option names....
r1910 In [11]: run tclass foo
Fernando Perez
Fix bug: https://bugs.launchpad.net/ipython/+bug/269966...
r1856
In [12]: isinstance(f(),foo)
Out[12]: True
"""
def doctest_run_ns2():
"""Classes declared %run scripts must be instantiable afterwards.
Fernando Perez
- Make ipdoctest a little cleaner by giving it separate option names....
r1910 In [4]: run tclass C-first_pass
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762
Fernando Perez
- Make ipdoctest a little cleaner by giving it separate option names....
r1910 In [5]: run tclass C-second_pass
tclass.py: deleting object: C-first_pass
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-')
In [11]: %history -n -f $tfile 3
"""
def doctest_hist_r():
"""Test %hist -r
XXX - This test is not recording the output correctly. Not sure why...
In [6]: x=1
In [7]: hist -n -r 2
x=1 # random
hist -n -r 2 # random
"""
Fernando Perez
Fix https://bugs.launchpad.net/ipython/+bug/239054...
r1859 def test_obj_del():
"""Test that object's __del__ methods are called on exit."""
test_dir = os.path.dirname(__file__)
del_file = os.path.join(test_dir,'obj_del.py')
out = _ip.IP.getoutput('ipython %s' % del_file)
Fernando Perez
- Make ipdoctest a little cleaner by giving it separate option names....
r1910 nt.assert_equals(out,'obj_del.py: object A deleted')
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
from IPython.Extensions import pickleshare
from IPython.history import ShadowHist
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
Update decorators and test scripts.
r1848 @dec.skipif_not_numpy
def test_numpy_clear_array_undec():
_ip.ex('import numpy as np')
_ip.ex('a = np.empty(2)')
yield nt.assert_true,'a' in _ip.user_ns
_ip.magic('clear array')
yield nt.assert_false,'a' in _ip.user_ns
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762
Fernando Perez
Update decorators and test scripts.
r1848 @dec.skip()
def test_fail_dec(*a,**k):
yield nt.assert_true, False
@dec.skip('This one shouldn not run')
def test_fail_dec2(*a,**k):
yield nt.assert_true, False
@dec.skipknownfailure
def test_fail_dec3(*a,**k):
yield nt.assert_true, False
Fernando Perez
Fix a number of bugs with %history, add proper tests....
r1762
Fernando Perez
Add test that fails for reference counting problem
r1915
def doctest_refbug():
"""Very nasty problem with references held by multiple runs of a script.
See: https://bugs.launchpad.net/ipython/+bug/269966
Fernando Perez
Work again on bug 269966....
r1916 In [1]: _ip.IP.clear_main_mod_cache()
Fernando Perez
Add test that fails for reference counting problem
r1915 In [2]: run refbug
In [3]: call_f()
lowercased: hello
In [4]: run refbug
In [5]: call_f()
lowercased: hello
lowercased: hello
"""