test_magic.py
331 lines
| 8.9 KiB
| text/x-python
|
PythonLexer
Fernando Perez
|
r1848 | """Tests for various magic functions. | ||
Ville M. Vainio
|
r1735 | |||
Fernando Perez
|
r1848 | Needs to be run by nose (to make ipython session available). | ||
Ville M. Vainio
|
r1735 | """ | ||
Fernando Perez
|
r1762 | |||
Fernando Perez
|
r1848 | import os | ||
import sys | ||||
Fernando Perez
|
r1955 | import tempfile | ||
import types | ||||
Fernando Perez
|
r2188 | from cStringIO import StringIO | ||
Fernando Perez
|
r1848 | |||
import nose.tools as nt | ||||
Brian Granger
|
r2039 | from IPython.utils.platutils import find_cmd, get_long_path_name | ||
Fernando Perez
|
r1762 | from IPython.testing import decorators as dec | ||
Fernando Perez
|
r1955 | from IPython.testing import tools as tt | ||
Fernando Perez
|
r1848 | #----------------------------------------------------------------------------- | ||
# Test functions begin | ||||
Ville M. Vainio
|
r1735 | def test_rehashx(): | ||
# clear up everything | ||||
Brian Granger
|
r2245 | _ip = get_ipython() | ||
_ip.alias_manager.alias_table.clear() | ||||
Ville M. Vainio
|
r1735 | del _ip.db['syscmdlist'] | ||
_ip.magic('rehashx') | ||||
# Practically ALL ipython development systems will have more than 10 aliases | ||||
Brian Granger
|
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
|
r1735 | # we must strip dots from alias names | ||
Fernando Perez
|
r2092 | nt.assert_true('.' not in key) | ||
Ville M. Vainio
|
r1735 | |||
# rehashx must fill up syscmdlist | ||||
scoms = _ip.db['syscmdlist'] | ||||
Fernando Perez
|
r2092 | yield (nt.assert_true, len(scoms) > 10) | ||
Fernando Perez
|
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
|
r2092 | In [11]: %hist -n -f $tfile 3 | ||
Fernando Perez
|
r1762 | """ | ||
def doctest_hist_r(): | ||||
"""Test %hist -r | ||||
XXX - This test is not recording the output correctly. Not sure why... | ||||
Brian Granger
|
r2205 | In [20]: 'hist' in _ip.lsmagic() | ||
Fernando Perez
|
r2092 | Out[20]: True | ||
Fernando Perez
|
r1762 | In [6]: x=1 | ||
Fernando Perez
|
r2092 | In [7]: %hist -n -r 2 | ||
Fernando Perez
|
r1762 | x=1 # random | ||
hist -n -r 2 # random | ||||
""" | ||||
Administrator
|
r1988 | # This test is known to fail on win32. | ||
# See ticket https://bugs.launchpad.net/bugs/366334 | ||||
Fernando Perez
|
r1859 | def test_obj_del(): | ||
Brian Granger
|
r2245 | _ip = get_ipython() | ||
Fernando Perez
|
r1859 | """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') | ||||
Brian Granger
|
r1978 | ipython_cmd = find_cmd('ipython') | ||
Brian Granger
|
r2205 | out = _ip.getoutput('%s %s' % (ipython_cmd, del_file)) | ||
Fernando Perez
|
r1910 | nt.assert_equals(out,'obj_del.py: object A deleted') | ||
Fernando Perez
|
r1859 | |||
Fernando Perez
|
r1762 | def test_shist(): | ||
Fernando Perez
|
r1848 | # Simple tests of ShadowHist class - test generator. | ||
Fernando Perez
|
r1762 | import os, shutil, tempfile | ||
Brian Granger
|
r2064 | from IPython.extensions import pickleshare | ||
Brian Granger
|
r2053 | from IPython.core.history import ShadowHist | ||
Fernando Perez
|
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
|
r1848 | @dec.skipif_not_numpy | ||
def test_numpy_clear_array_undec(): | ||||
Brian Granger
|
r2124 | from IPython.extensions import clearcmd | ||
Fernando Perez
|
r2092 | |||
Fernando Perez
|
r1848 | _ip.ex('import numpy as np') | ||
_ip.ex('a = np.empty(2)') | ||||
Fernando Perez
|
r2092 | yield (nt.assert_true, 'a' in _ip.user_ns) | ||
Fernando Perez
|
r1848 | _ip.magic('clear array') | ||
Fernando Perez
|
r2092 | yield (nt.assert_false, 'a' in _ip.user_ns) | ||
Fernando Perez
|
r1848 | |||
Fernando Perez
|
r1762 | |||
Fernando Perez
|
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
|
r1762 | |||
Fernando Perez
|
r1915 | |||
def doctest_refbug(): | ||||
"""Very nasty problem with references held by multiple runs of a script. | ||||
See: https://bugs.launchpad.net/ipython/+bug/269966 | ||||
Brian Granger
|
r2205 | In [1]: _ip.clear_main_mod_cache() | ||
Fernando Perez
|
r1916 | |||
Fernando Perez
|
r1915 | In [2]: run refbug | ||
In [3]: call_f() | ||||
lowercased: hello | ||||
In [4]: run refbug | ||||
In [5]: call_f() | ||||
lowercased: hello | ||||
lowercased: hello | ||||
""" | ||||
Fernando Perez
|
r1955 | |||
#----------------------------------------------------------------------------- | ||||
# Tests for %run | ||||
#----------------------------------------------------------------------------- | ||||
# %run is critical enough that it's a good idea to have a solid collection of | ||||
# tests for it, some as doctests and some as normal tests. | ||||
def doctest_run_ns(): | ||||
"""Classes declared %run scripts must be instantiable afterwards. | ||||
In [11]: run tclass foo | ||||
In [12]: isinstance(f(),foo) | ||||
Out[12]: True | ||||
""" | ||||
def doctest_run_ns2(): | ||||
"""Classes declared %run scripts must be instantiable afterwards. | ||||
In [4]: run tclass C-first_pass | ||||
In [5]: run tclass C-second_pass | ||||
tclass.py: deleting object: C-first_pass | ||||
""" | ||||
def doctest_run_builtins(): | ||||
"""Check that %run doesn't damage __builtins__ via a doctest. | ||||
This is similar to the test_run_builtins, but I want *both* forms of the | ||||
test to catch any possible glitches in our testing machinery, since that | ||||
modifies %run somewhat. So for this, we have both a normal test (below) | ||||
and a doctest (this one). | ||||
In [1]: import tempfile | ||||
In [2]: bid1 = id(__builtins__) | ||||
Fernando Perez
|
r2112 | In [3]: fname = tempfile.mkstemp()[1] | ||
In [3]: f = open(fname,'w') | ||||
Fernando Perez
|
r1955 | |||
In [4]: f.write('pass\\n') | ||||
In [5]: f.flush() | ||||
Fernando Perez
|
r2112 | In [6]: print type(__builtins__) | ||
<type 'module'> | ||||
In [7]: %run "$fname" | ||||
Fernando Perez
|
r1955 | |||
Fernando Perez
|
r2112 | In [7]: f.close() | ||
Fernando Perez
|
r1955 | |||
In [8]: bid2 = id(__builtins__) | ||||
Fernando Perez
|
r2112 | In [9]: print type(__builtins__) | ||
<type 'module'> | ||||
Fernando Perez
|
r1955 | |||
In [10]: bid1 == bid2 | ||||
Out[10]: True | ||||
Fernando Perez
|
r2112 | |||
In [12]: try: | ||||
....: os.unlink(fname) | ||||
....: except: | ||||
....: pass | ||||
....: | ||||
Fernando Perez
|
r1955 | """ | ||
# For some tests, it will be handy to organize them in a class with a common | ||||
# setup that makes a temp file | ||||
class TestMagicRun(object): | ||||
def setup(self): | ||||
"""Make a valid python temp file.""" | ||||
Fernando Perez
|
r2112 | fname = tempfile.mkstemp()[1] | ||
f = open(fname,'w') | ||||
Fernando Perez
|
r1955 | f.write('pass\n') | ||
f.flush() | ||||
self.tmpfile = f | ||||
Fernando Perez
|
r2112 | self.fname = fname | ||
Fernando Perez
|
r1955 | |||
def run_tmpfile(self): | ||||
Brian Granger
|
r2245 | _ip = get_ipython() | ||
Administrator
|
r1986 | # This fails on Windows if self.tmpfile.name has spaces or "~" in it. | ||
# See below and ticket https://bugs.launchpad.net/bugs/366353 | ||||
Fernando Perez
|
r2112 | _ip.magic('run "%s"' % self.fname) | ||
Administrator
|
r1977 | |||
Fernando Perez
|
r1955 | def test_builtins_id(self): | ||
"""Check that %run doesn't damage __builtins__ """ | ||||
Brian Granger
|
r2245 | _ip = get_ipython() | ||
Fernando Perez
|
r1955 | # Test that the id of __builtins__ is not modified by %run | ||
bid1 = id(_ip.user_ns['__builtins__']) | ||||
self.run_tmpfile() | ||||
bid2 = id(_ip.user_ns['__builtins__']) | ||||
tt.assert_equals(bid1, bid2) | ||||
def test_builtins_type(self): | ||||
"""Check that the type of __builtins__ doesn't change with %run. | ||||
However, the above could pass if __builtins__ was already modified to | ||||
be a dict (it should be a module) by a previous use of %run. So we | ||||
also check explicitly that it really is a module: | ||||
""" | ||||
Brian Granger
|
r2245 | _ip = get_ipython() | ||
Fernando Perez
|
r1955 | self.run_tmpfile() | ||
tt.assert_equals(type(_ip.user_ns['__builtins__']),type(sys)) | ||||
def test_prompts(self): | ||||
"""Test that prompts correctly generate after %run""" | ||||
self.run_tmpfile() | ||||
Brian Granger
|
r2245 | _ip = get_ipython() | ||
Brian Granger
|
r2205 | p2 = str(_ip.outputcache.prompt2).strip() | ||
Fernando Perez
|
r1955 | nt.assert_equals(p2[:3], '...') | ||
def teardown(self): | ||||
self.tmpfile.close() | ||||
Fernando Perez
|
r2112 | try: | ||
os.unlink(self.fname) | ||||
except: | ||||
# On Windows, even though we close the file, we still can't delete | ||||
# it. I have no clue why | ||||
pass | ||||
Fernando Perez
|
r2106 | |||
# Multiple tests for clipboard pasting | ||||
def test_paste(): | ||||
Brian Granger
|
r2245 | _ip = get_ipython() | ||
Fernando Perez
|
r2189 | def paste(txt, flags='-q'): | ||
"""Paste input text, by default in quiet mode""" | ||||
Fernando Perez
|
r2106 | hooks.clipboard_get = lambda : txt | ||
Fernando Perez
|
r2188 | _ip.magic('paste '+flags) | ||
Fernando Perez
|
r2106 | |||
# Inject fake clipboard hook but save original so we can restore it later | ||||
Brian Granger
|
r2205 | hooks = _ip.hooks | ||
Fernando Perez
|
r2106 | user_ns = _ip.user_ns | ||
original_clip = hooks.clipboard_get | ||||
try: | ||||
Fernando Perez
|
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
|
r2106 | # Run tests with fake clipboard function | ||
user_ns.pop('x', None) | ||||
paste('x=1') | ||||
yield (nt.assert_equal, user_ns['x'], 1) | ||||
user_ns.pop('x', None) | ||||
paste('>>> x=2') | ||||
yield (nt.assert_equal, user_ns['x'], 2) | ||||
paste(""" | ||||
>>> x = [1,2,3] | ||||
>>> y = [] | ||||
>>> for i in x: | ||||
... y.append(i**2) | ||||
... | ||||
""") | ||||
yield (nt.assert_equal, user_ns['x'], [1,2,3]) | ||||
yield (nt.assert_equal, user_ns['y'], [1,4,9]) | ||||
Fernando Perez
|
r2188 | # Now, test that paste -r works | ||
user_ns.pop('x', None) | ||||
yield (nt.assert_false, 'x' in user_ns) | ||||
_ip.magic('paste -r') | ||||
yield (nt.assert_equal, user_ns['x'], [1,2,3]) | ||||
Fernando Perez
|
r2189 | # Also test paste echoing, by temporarily faking the writer | ||
Fernando Perez
|
r2188 | w = StringIO() | ||
Brian Granger
|
r2205 | writer = _ip.write | ||
_ip.write = w.write | ||||
Fernando Perez
|
r2188 | code = """ | ||
a = 100 | ||||
b = 200""" | ||||
try: | ||||
Fernando Perez
|
r2189 | paste(code,'') | ||
Fernando Perez
|
r2188 | out = w.getvalue() | ||
finally: | ||||
Brian Granger
|
r2205 | _ip.write = writer | ||
Fernando Perez
|
r2188 | 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") | ||||
finally: | ||||
# This should be in a finally clause, instead of the bare except above. | ||||
# Restore original hook | ||||
hooks.clipboard_get = original_clip | ||||