test_handlers.py
97 lines
| 3.2 KiB
| text/x-python
|
PythonLexer
Fernando Perez
|
r2659 | """Tests for input handlers. | ||
""" | ||||
#----------------------------------------------------------------------------- | ||||
# Module imports | ||||
#----------------------------------------------------------------------------- | ||||
dan.milstein
|
r657 | |||
Fernando Perez
|
r2659 | # third party | ||
import nose.tools as nt | ||||
# our own packages | ||||
from IPython.core import autocall | ||||
Thomas Kluyver
|
r4744 | from IPython.testing import tools as tt | ||
Fernando Perez
|
r2659 | from IPython.testing.globalipapp import get_ipython | ||
Thomas Kluyver
|
r4896 | from IPython.utils import py3compat | ||
Fernando Perez
|
r2659 | |||
#----------------------------------------------------------------------------- | ||||
# Globals | ||||
#----------------------------------------------------------------------------- | ||||
# Get the public instance of IPython | ||||
ip = get_ipython() | ||||
dan.milstein
|
r657 | |||
failures = [] | ||||
num_tests = 0 | ||||
Fernando Perez
|
r2659 | #----------------------------------------------------------------------------- | ||
# Test functions | ||||
#----------------------------------------------------------------------------- | ||||
class CallableIndexable(object): | ||||
def __getitem__(self, idx): return True | ||||
def __call__(self, *args, **kws): return True | ||||
class Autocallable(autocall.IPyAutocall): | ||||
def __call__(self): | ||||
return "called" | ||||
dan.milstein
|
r657 | def run(tests): | ||
"""Loop through a list of (pre, post) inputs, where pre is the string | ||||
handed to ipython, and post is how that string looks after it's been | ||||
transformed (i.e. ipython's notion of _i)""" | ||||
Thomas Kluyver
|
r4744 | tt.check_pairs(ip.prefilter_manager.prefilter_lines, tests) | ||
dan.milstein
|
r657 | |||
Fernando Perez
|
r2659 | def test_handlers(): | ||
dan.milstein
|
r657 | call_idx = CallableIndexable() | ||
Fernando Perez
|
r2659 | ip.user_ns['call_idx'] = call_idx | ||
dan.milstein
|
r657 | |||
# For many of the below, we're also checking that leading whitespace | ||||
# turns off the esc char, which it should unless there is a continuation | ||||
# line. | ||||
Thomas Kluyver
|
r4895 | run([(i,py3compat.u_format(o)) for i,o in \ | ||
[('"no change"', '"no change"'), # normal | ||||
Thomas Kluyver
|
r5350 | (u"lsmagic", "get_ipython().magic({u}'lsmagic ')"), # magic | ||
Fernando Perez
|
r2659 | #("a = b # PYTHON-MODE", '_i'), # emacs -- avoids _in cache | ||
Thomas Kluyver
|
r4895 | ]]) | ||
dan.milstein
|
r657 | |||
# Objects which are instances of IPyAutocall are *always* autocalled | ||||
autocallable = Autocallable() | ||||
Fernando Perez
|
r2659 | ip.user_ns['autocallable'] = autocallable | ||
dan.milstein
|
r657 | |||
Bernardo B. Marques
|
r4872 | # auto | ||
Fernando Perez
|
r2659 | ip.magic('autocall 0') | ||
dan.milstein
|
r657 | # Only explicit escapes or instances of IPyAutocallable should get | ||
# expanded | ||||
run([ | ||||
Bernardo B. Marques
|
r4872 | ('len "abc"', 'len "abc"'), | ||
('autocallable', 'autocallable()'), | ||||
Thomas Kluyver
|
r5651 | # Don't add extra brackets (gh-1117) | ||
Bradley Froehle
|
r5654 | ('autocallable()', 'autocallable()'), | ||
dan.milstein
|
r657 | ]) | ||
Fernando Perez
|
r2659 | ip.magic('autocall 1') | ||
dan.milstein
|
r657 | run([ | ||
('len "abc"', 'len("abc")'), | ||||
('len "abc";', 'len("abc");'), # ; is special -- moves out of parens | ||||
# Autocall is turned off if first arg is [] and the object | ||||
# is both callable and indexable. Like so: | ||||
('len [1,2]', 'len([1,2])'), # len doesn't support __getitem__... | ||||
('call_idx [1]', 'call_idx [1]'), # call_idx *does*.. | ||||
('call_idx 1', 'call_idx(1)'), | ||||
Bradley Froehle
|
r5654 | ('len', 'len'), # only at 2 does it auto-call on single args | ||
dan.milstein
|
r657 | ]) | ||
Fernando Perez
|
r2659 | ip.magic('autocall 2') | ||
dan.milstein
|
r657 | run([ | ||
('len "abc"', 'len("abc")'), | ||||
('len "abc";', 'len("abc");'), | ||||
Bernardo B. Marques
|
r4872 | ('len [1,2]', 'len([1,2])'), | ||
dan.milstein
|
r657 | ('call_idx [1]', 'call_idx [1]'), | ||
('call_idx 1', 'call_idx(1)'), | ||||
# This is what's different: | ||||
('len', 'len()'), # only at 2 does it auto-call on single args | ||||
]) | ||||
Fernando Perez
|
r2659 | ip.magic('autocall 1') | ||
dan.milstein
|
r657 | |||
Bradley M. Froehle
|
r7875 | nt.assert_equal(failures, []) | ||