##// END OF EJS Templates
Bundled path.py should not modify the os module
Bundled path.py should not modify the os module

File last commit:

r13375:247753ac
r13446:6238fc3f
Show More
test_completer.py
393 lines | 12.2 KiB | text/x-python | PythonLexer
Fernando Perez
Fix tab-completion for magics, other completion cleanup and fixes....
r2365 """Tests for the IPython tab-completion machinery.
"""
#-----------------------------------------------------------------------------
# Module imports
#-----------------------------------------------------------------------------
# stdlib
Fernando Perez
Fix bug in tab completion of filenames when quotes are present....
r3184 import os
Fernando Perez
Fix tab-completion for magics, other completion cleanup and fixes....
r2365 import sys
Fernando Perez
Add line splitting for text completion (like readline does internally)....
r2855 import unittest
Fernando Perez
Fix tab-completion for magics, other completion cleanup and fixes....
r2365
# third party
import nose.tools as nt
# our own packages
MinRK
move completer configurables to IPCompleter where they belong...
r5231 from IPython.config.loader import Config
Fernando Perez
Fix tab-completion for magics, other completion cleanup and fixes....
r2365 from IPython.core import completer
Min RK
fix various tests on Windows...
r4105 from IPython.external.decorators import knownfailureif
Fernando Perez
Fix bug in tab completion of filenames when quotes are present....
r3184 from IPython.utils.tempdir import TemporaryDirectory
Thomas Kluyver
Silence errors from custom attribute completer functions....
r5155 from IPython.utils.generics import complete_object
Thomas Kluyver
Replace references to unicode and basestring
r13353 from IPython.utils.py3compat import string_types, unicode_type
Fernando Perez
Fix tab-completion for magics, other completion cleanup and fixes....
r2365
#-----------------------------------------------------------------------------
# Test functions
#-----------------------------------------------------------------------------
def test_protect_filename():
pairs = [ ('abc','abc'),
(' abc',r'\ abc'),
('a bc',r'a\ bc'),
('a bc',r'a\ \ bc'),
(' bc',r'\ \ bc'),
]
Fernando Perez
Fix protection of special characters on tab completion....
r3176 # On posix, we also protect parens and other special characters
Fernando Perez
Fix tab-completion for magics, other completion cleanup and fixes....
r2365 if sys.platform != 'win32':
pairs.extend( [('a(bc',r'a\(bc'),
('a)bc',r'a\)bc'),
('a( )bc',r'a\(\ \)bc'),
Fernando Perez
Fix protection of special characters on tab completion....
r3176 ('a[1]bc', r'a\[1\]bc'),
('a{1}bc', r'a\{1\}bc'),
('a#bc', r'a\#bc'),
('a?bc', r'a\?bc'),
('a=bc', r'a\=bc'),
('a\\bc', r'a\\bc'),
('a|bc', r'a\|bc'),
('a;bc', r'a\;bc'),
('a:bc', r'a\:bc'),
("a'bc", r"a\'bc"),
('a*bc', r'a\*bc'),
('a"bc', r'a\"bc'),
('a^bc', r'a\^bc'),
('a&bc', r'a\&bc'),
Fernando Perez
Fix tab-completion for magics, other completion cleanup and fixes....
r2365 ] )
# run the actual tests
for s1, s2 in pairs:
s1p = completer.protect_filename(s1)
Bradley M. Froehle
s/nt.assert_equals/nt.assert_equal/
r7875 nt.assert_equal(s1p, s2)
Fernando Perez
Add line splitting for text completion (like readline does internally)....
r2855
def check_line_split(splitter, test_specs):
for part1, part2, split in test_specs:
cursor_pos = len(part1)
line = part1+part2
out = splitter.split_line(line, cursor_pos)
nt.assert_equal(out, split)
def test_line_split():
Thomas Kluyver
Fix tests for core
r13375 """Basic line splitter test with default specs."""
Fernando Perez
Add line splitting for text completion (like readline does internally)....
r2855 sp = completer.CompletionSplitter()
# The format of the test specs is: part1, part2, expected answer. Parts 1
# and 2 are joined into the 'line' sent to the splitter, as if the cursor
# was at the end of part1. So an empty part2 represents someone hitting
# tab at the end of the line, the most common case.
t = [('run some/scrip', '', 'some/scrip'),
('run scripts/er', 'ror.py foo', 'scripts/er'),
('echo $HOM', '', 'HOM'),
('print sys.pa', '', 'sys.pa'),
('print(sys.pa', '', 'sys.pa'),
("execfile('scripts/er", '', 'scripts/er'),
('a[x.', '', 'x.'),
('a[x.', 'y', 'x.'),
('cd "some_file/', '', 'some_file/'),
]
check_line_split(sp, t)
Fernando Perez
Fix completer crash with certain unicode inputs....
r3074 # Ensure splitting works OK with unicode by re-running the tests with
# all inputs turned into unicode
Thomas Kluyver
Replace references to unicode and basestring
r13353 check_line_split(sp, [ map(unicode_type, p) for p in t] )
Fernando Perez
Fix completer crash with certain unicode inputs....
r3074
Piti Ongmongkolkul
test function kw completer
r6511
Thomas Kluyver
Silence errors from custom attribute completer functions....
r5155 def test_custom_completion_error():
"""Test that errors from custom attribute completers are silenced."""
ip = get_ipython()
class A(object): pass
ip.user_ns['a'] = A()
@complete_object.when_type(A)
def complete_A(a, existing_completions):
raise TypeError("this should be silenced")
ip.complete("a.")
Fernando Perez
Fix completer crash with certain unicode inputs....
r3074
def test_unicode_completions():
ip = get_ipython()
# Some strings that trigger different types of completion. Check them both
# in str and unicode forms
s = ['ru', '%ru', 'cd /', 'floa', 'float(x)/']
Thomas Kluyver
Fix tests for core
r13375 for t in s + list(map(unicode_type, s)):
Fernando Perez
Fix completer crash with certain unicode inputs....
r3074 # We don't need to check exact completion values (they may change
# depending on the state of the namespace, but at least no exceptions
# should be thrown and the return value should be a pair of text, list
# values.
text, matches = ip.complete(t)
Thomas Kluyver
Replace references to unicode and basestring
r13353 nt.assert_true(isinstance(text, string_types))
Fernando Perez
Fix completer crash with certain unicode inputs....
r3074 nt.assert_true(isinstance(matches, list))
Fernando Perez
Add line splitting for text completion (like readline does internally)....
r2855
class CompletionSplitterTestCase(unittest.TestCase):
def setUp(self):
self.sp = completer.CompletionSplitter()
def test_delim_setting(self):
Fernando Perez
Fix bugs in completer.py with incompletely-implemented property....
r6945 self.sp.delims = ' '
nt.assert_equal(self.sp.delims, ' ')
Fernando Perez
Improvements to tab completion in Qt GUI with new api....
r2857 nt.assert_equal(self.sp._delim_expr, '[\ ]')
Fernando Perez
Add line splitting for text completion (like readline does internally)....
r2855
def test_spaces(self):
"""Test with only spaces as split chars."""
self.sp.delims = ' '
t = [('foo', '', 'foo'),
('run foo', '', 'foo'),
('run foo', 'bar', 'foo'),
]
check_line_split(self.sp, t)
Fernando Perez
Fix bug in tab completion of filenames when quotes are present....
r3184
def test_has_open_quotes1():
for s in ["'", "'''", "'hi' '"]:
nt.assert_equal(completer.has_open_quotes(s), "'")
def test_has_open_quotes2():
for s in ['"', '"""', '"hi" "']:
nt.assert_equal(completer.has_open_quotes(s), '"')
def test_has_open_quotes3():
for s in ["''", "''' '''", "'hi' 'ipython'"]:
nt.assert_false(completer.has_open_quotes(s))
def test_has_open_quotes4():
for s in ['""', '""" """', '"hi" "ipython"']:
nt.assert_false(completer.has_open_quotes(s))
Piti Ongmongkolkul
test function kw completer
r6511
Min RK
fix various tests on Windows...
r4105 @knownfailureif(sys.platform == 'win32', "abspath completions fail on Windows")
def test_abspath_file_completions():
Fernando Perez
Fix bug in tab completion of filenames when quotes are present....
r3184 ip = get_ipython()
with TemporaryDirectory() as tmpdir:
prefix = os.path.join(tmpdir, 'foo')
Thomas Kluyver
Fix tests for core
r13375 suffixes = ['1', '2']
Fernando Perez
Fix bug in tab completion of filenames when quotes are present....
r3184 names = [prefix+s for s in suffixes]
for n in names:
open(n, 'w').close()
# Check simple completion
c = ip.complete(prefix)[1]
nt.assert_equal(c, names)
# Now check with a function call
cmd = 'a = f("%s' % prefix
c = ip.complete(prefix, cmd)[1]
comp = [prefix+s for s in suffixes]
nt.assert_equal(c, comp)
Min RK
fix various tests on Windows...
r4105
Piti Ongmongkolkul
test function kw completer
r6511
Min RK
fix various tests on Windows...
r4105 def test_local_file_completions():
ip = get_ipython()
cwd = os.getcwdu()
try:
with TemporaryDirectory() as tmpdir:
os.chdir(tmpdir)
prefix = './foo'
Thomas Kluyver
Fix tests for core
r13375 suffixes = ['1', '2']
Min RK
fix various tests on Windows...
r4105 names = [prefix+s for s in suffixes]
for n in names:
open(n, 'w').close()
# Check simple completion
c = ip.complete(prefix)[1]
nt.assert_equal(c, names)
# Now check with a function call
cmd = 'a = f("%s' % prefix
c = ip.complete(prefix, cmd)[1]
comp = [prefix+s for s in suffixes]
nt.assert_equal(c, comp)
finally:
# prevent failures from making chdir stick
os.chdir(cwd)
MinRK
make Completer.greedy configurable
r4825
Piti Ongmongkolkul
test function kw completer
r6511
MinRK
make Completer.greedy configurable
r4825 def test_greedy_completions():
ip = get_ipython()
Fernando Perez
Fix bugs in completer.py with incompletely-implemented property....
r6945 greedy_original = ip.Completer.greedy
try:
ip.Completer.greedy = False
Thomas Kluyver
Fix tests for core
r13375 ip.ex('a=list(range(5))')
Fernando Perez
Fix bugs in completer.py with incompletely-implemented property....
r6945 _,c = ip.complete('.',line='a[0].')
nt.assert_false('a[0].real' in c,
"Shouldn't have completed on a[0]: %s"%c)
ip.Completer.greedy = True
_,c = ip.complete('.',line='a[0].')
nt.assert_true('a[0].real' in c, "Should have completed on a[0]: %s"%c)
finally:
ip.Completer.greedy = greedy_original
MinRK
make Completer.greedy configurable
r4825
Piti Ongmongkolkul
test function kw completer
r6511
MinRK
move completer configurables to IPCompleter where they belong...
r5231 def test_omit__names():
# also happens to test IPCompleter as a configurable
ip = get_ipython()
ip._hidden_attr = 1
c = ip.Completer
ip.ex('ip=get_ipython()')
cfg = Config()
cfg.IPCompleter.omit__names = 0
c.update_config(cfg)
s,matches = c.complete('ip.')
Thomas Kluyver
Fix tests for core
r13375 nt.assert_in('ip.__str__', matches)
nt.assert_in('ip._hidden_attr', matches)
MinRK
move completer configurables to IPCompleter where they belong...
r5231 cfg.IPCompleter.omit__names = 1
c.update_config(cfg)
s,matches = c.complete('ip.')
Thomas Kluyver
Fix tests for core
r13375 nt.assert_not_in('ip.__str__', matches)
nt.assert_in('ip._hidden_attr', matches)
MinRK
move completer configurables to IPCompleter where they belong...
r5231 cfg.IPCompleter.omit__names = 2
c.update_config(cfg)
s,matches = c.complete('ip.')
Thomas Kluyver
Fix tests for core
r13375 nt.assert_not_in('ip.__str__', matches)
nt.assert_not_in('ip._hidden_attr', matches)
MinRK
move completer configurables to IPCompleter where they belong...
r5231 del ip._hidden_attr
Tim Couper
added __all__ to completer.py and added basic tests for test_dir2...
r6308
Tim Couper
added tests for limit_to__all__ for False and True cases
r6312
def test_limit_to__all__False_ok():
ip = get_ipython()
c = ip.Completer
ip.ex('class D: x=24')
ip.ex('d=D()')
cfg = Config()
cfg.IPCompleter.limit_to__all__ = False
c.update_config(cfg)
s, matches = c.complete('d.')
Thomas Kluyver
Fix tests for core
r13375 nt.assert_in('d.x', matches)
Tim Couper
added tests for limit_to__all__ for False and True cases
r6312
Piti Ongmongkolkul
test function kw completer
r6511
Tim Couper
added tests for limit_to__all__ for False and True cases
r6312 def test_limit_to__all__True_ok():
ip = get_ipython()
c = ip.Completer
ip.ex('class D: x=24')
ip.ex('d=D()')
ip.ex("d.__all__=['z']")
cfg = Config()
cfg.IPCompleter.limit_to__all__ = True
c.update_config(cfg)
s, matches = c.complete('d.')
Thomas Kluyver
Fix tests for core
r13375 nt.assert_in('d.z', matches)
nt.assert_not_in('d.x', matches)
Tim Couper
added tests for limit_to__all__ for False and True cases
r6312
Piti Ongmongkolkul
test function kw completer
r6511
Tim Couper
added __all__ to completer.py and added basic tests for test_dir2...
r6308 def test_get__all__entries_ok():
Piti Ongmongkolkul
test function kw completer
r6511 class A(object):
__all__ = ['x', 1]
words = completer.get__all__entries(A())
nt.assert_equal(words, ['x'])
Tim Couper
added __all__ to completer.py and added basic tests for test_dir2...
r6308
def test_get__all__entries_no__all__ok():
Piti Ongmongkolkul
test function kw completer
r6511 class A(object):
pass
words = completer.get__all__entries(A())
nt.assert_equal(words, [])
def test_func_kw_completions():
ip = get_ipython()
c = ip.Completer
ip.ex('def myfunc(a=1,b=2): return a+b')
Fernando Perez
Fix bugs in completer.py with incompletely-implemented property....
r6945 s, matches = c.complete(None, 'myfunc(1,b')
nt.assert_in('b=', matches)
# Simulate completing with cursor right after b (pos==10):
Piti Ongmongkolkul
complete builtin and cython with embededsignature=True...
r9165 s, matches = c.complete(None, 'myfunc(1,b)', 10)
Fernando Perez
Fix bugs in completer.py with incompletely-implemented property....
r6945 nt.assert_in('b=', matches)
Piti Ongmongkolkul
complete builtin and cython with embededsignature=True...
r9165 s, matches = c.complete(None, 'myfunc(a="escaped\\")string",b')
Jez Ng
Make completer recognize escaped quotes in strings.
r7507 nt.assert_in('b=', matches)
Piti Ongmongkolkul
complete builtin and cython with embededsignature=True...
r9165 #builtin function
s, matches = c.complete(None, 'min(k, k')
nt.assert_in('key=', matches)
Fernando Perez
Add completion support for cell magics and handling of line/cell magics....
r6991
Piti Ongmongkolkul
more robust docstring parsing and docstring parser test...
r9167 def test_default_arguments_from_docstring():
doc = min.__doc__
ip = get_ipython()
c = ip.Completer
kwd = c._default_arguments_from_docstring(
'min(iterable[, key=func]) -> value')
Piti Ongmongkolkul
couple more PEP8 in test
r9170 nt.assert_equal(kwd, ['key'])
Piti Ongmongkolkul
more robust docstring parsing and docstring parser test...
r9167 #with cython type etc
kwd = c._default_arguments_from_docstring(
'Minuit.migrad(self, int ncall=10000, resume=True, int nsplit=1)\n')
Piti Ongmongkolkul
couple more PEP8 in test
r9170 nt.assert_equal(kwd, ['ncall', 'resume', 'nsplit'])
Piti Ongmongkolkul
more robust docstring parsing and docstring parser test...
r9167 #white spaces
kwd = c._default_arguments_from_docstring(
'\n Minuit.migrad(self, int ncall=10000, resume=True, int nsplit=1)\n')
Piti Ongmongkolkul
couple more PEP8 in test
r9170 nt.assert_equal(kwd, ['ncall', 'resume', 'nsplit'])
Piti Ongmongkolkul
more robust docstring parsing and docstring parser test...
r9167
Fernando Perez
Add completion support for cell magics and handling of line/cell magics....
r6991 def test_line_magics():
ip = get_ipython()
c = ip.Completer
s, matches = c.complete(None, 'lsmag')
nt.assert_in('%lsmagic', matches)
s, matches = c.complete(None, '%lsmag')
nt.assert_in('%lsmagic', matches)
def test_cell_magics():
from IPython.core.magic import register_cell_magic
@register_cell_magic
def _foo_cellm(line, cell):
pass
ip = get_ipython()
c = ip.Completer
s, matches = c.complete(None, '_foo_ce')
nt.assert_in('%%_foo_cellm', matches)
s, matches = c.complete(None, '%%_foo_ce')
nt.assert_in('%%_foo_cellm', matches)
def test_line_cell_magics():
from IPython.core.magic import register_line_cell_magic
@register_line_cell_magic
def _bar_cellm(line, cell):
pass
ip = get_ipython()
c = ip.Completer
# The policy here is trickier, see comments in completion code. The
# returned values depend on whether the user passes %% or not explicitly,
# and this will show a difference if the same name is both a line and cell
# magic.
s, matches = c.complete(None, '_bar_ce')
nt.assert_in('%_bar_cellm', matches)
nt.assert_in('%%_bar_cellm', matches)
s, matches = c.complete(None, '%_bar_ce')
nt.assert_in('%_bar_cellm', matches)
nt.assert_in('%%_bar_cellm', matches)
s, matches = c.complete(None, '%%_bar_ce')
nt.assert_not_in('%_bar_cellm', matches)
nt.assert_in('%%_bar_cellm', matches)
David P. Sanders
Reimplemented test_magic_completion_order in test_completer.py
r13344
def test_magic_completion_order():
ip = get_ipython()
c = ip.Completer
# Test ordering of magics and non-magics with the same name
# We want the non-magic first
# Before importing matplotlib, there should only be one option:
text, matches = c.complete('mat')
nt.assert_equal(matches, ["%matplotlib"])
ip.run_cell("matplotlib = 1") # introduce name into namespace
# After the import, there should be two options, ordered like this:
text, matches = c.complete('mat')
nt.assert_equal(matches, ["matplotlib", "%matplotlib"])
ip.run_cell("timeit = 1") # define a user variable called 'timeit'
# Order of user variable and line and cell magics with same name:
text, matches = c.complete('timeit')
nt.assert_equal(matches, ["timeit", "%timeit","%%timeit"])