##// END OF EJS Templates
Update test.yml
Update test.yml

File last commit:

r27619:32c393b6
r27642:22b4af19
Show More
test_inputtransformer2.py
442 lines | 11.0 KiB | text/x-python | PythonLexer
/ IPython / core / tests / test_inputtransformer2.py
Matthias Bussonnier
add docstring, and emit deprecation warnings
r24406 """Tests for the token-based transformers in IPython.core.inputtransformer2
Line-based transformers are the simpler ones; token-based transformers are
Thomas Kluyver
Add & improve docstrings following @willingc's review
r24407 more complex. See test_inputtransformer2_line for tests for line-based
transformations.
Matthias Bussonnier
add docstring, and emit deprecation warnings
r24406 """
Matthias Bussonnier
Fix and test for "async with does not allow new lines"....
r27405 import platform
Matthias Bussonnier
Add some inputtransformer test cases
r24566 import string
Matthias Bussonnier
Add Xfail test on 3.9.8...
r27020 import sys
from textwrap import dedent
Thomas Kluyver
Start adding tests for inputtransformer2
r24155
Matthias Bussonnier
Add Xfail test on 3.9.8...
r27020 import pytest
Thomas Kluyver
Start adding tests for inputtransformer2
r24155
Matthias Bussonnier
Add Xfail test on 3.9.8...
r27020 from IPython.core import inputtransformer2 as ipt2
from IPython.core.inputtransformer2 import _find_assign_op, make_tokens_by_line
Matthias Bussonnier
add tests
r24637
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 MULTILINE_MAGIC = (
"""\
Thomas Kluyver
Escaped commands
r24159 a = f()
%foo \\
bar
g()
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 """.splitlines(
keepends=True
),
(2, 0),
"""\
Thomas Kluyver
Escaped commands
r24159 a = f()
get_ipython().run_line_magic('foo', ' bar')
g()
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 """.splitlines(
keepends=True
),
)
Thomas Kluyver
Escaped commands
r24159
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 INDENTED_MAGIC = (
"""\
Thomas Kluyver
Some more tests for escaped commands
r24160 for a in range(5):
%ls
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 """.splitlines(
keepends=True
),
(2, 4),
"""\
Thomas Kluyver
Some more tests for escaped commands
r24160 for a in range(5):
get_ipython().run_line_magic('ls', '')
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 """.splitlines(
keepends=True
),
)
Thomas Kluyver
Some more tests for escaped commands
r24160
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 CRLF_MAGIC = (
["a = f()\n", "%ls\r\n", "g()\n"],
(2, 0),
["a = f()\n", "get_ipython().run_line_magic('ls', '')\n", "g()\n"],
)
MULTILINE_MAGIC_ASSIGN = (
"""\
Thomas Kluyver
Start adding tests for inputtransformer2
r24155 a = f()
b = %foo \\
bar
g()
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 """.splitlines(
keepends=True
),
(2, 4),
"""\
Thomas Kluyver
Start adding tests for inputtransformer2
r24155 a = f()
b = get_ipython().run_line_magic('foo', ' bar')
g()
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 """.splitlines(
keepends=True
),
)
Thomas Kluyver
Start adding tests for inputtransformer2
r24155
MULTILINE_SYSTEM_ASSIGN = ("""\
a = f()
b = !foo \\
bar
g()
Thomas Kluyver
Transformations for 'help?' syntax
r24161 """.splitlines(keepends=True), (2, 4), """\
Thomas Kluyver
Start adding tests for inputtransformer2
r24155 a = f()
Thomas Kluyver
Add transformation for system assignments
r24156 b = get_ipython().getoutput('foo bar')
Thomas Kluyver
Start adding tests for inputtransformer2
r24155 g()
""".splitlines(keepends=True))
Matthias Bussonnier
Fix miss-capturing of assign statement after a dedent....
r24728 #####
MULTILINE_SYSTEM_ASSIGN_AFTER_DEDENT = ("""\
def test():
for i in range(1):
print(i)
res =! ls
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 """.splitlines(
keepends=True
),
(4, 7),
"""\
Matthias Bussonnier
Fix miss-capturing of assign statement after a dedent....
r24728 def test():
for i in range(1):
print(i)
res =get_ipython().getoutput(\' ls\')
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 """.splitlines(
keepends=True
),
)
Matthias Bussonnier
Fix miss-capturing of assign statement after a dedent....
r24728
######
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 AUTOCALL_QUOTE = ([",f 1 2 3\n"], (1, 0), ['f("1", "2", "3")\n'])
Thomas Kluyver
Some more tests for escaped commands
r24160
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 AUTOCALL_QUOTE2 = ([";f 1 2 3\n"], (1, 0), ['f("1 2 3")\n'])
Thomas Kluyver
Some more tests for escaped commands
r24160
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 AUTOCALL_PAREN = (["/f 1 2 3\n"], (1, 0), ["f(1, 2, 3)\n"])
Thomas Kluyver
Some more tests for escaped commands
r24160
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 SIMPLE_HELP = (["foo?\n"], (1, 0), ["get_ipython().run_line_magic('pinfo', 'foo')\n"])
Thomas Kluyver
Transformations for 'help?' syntax
r24161
DETAILED_HELP = (
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 ["foo??\n"],
(1, 0),
["get_ipython().run_line_magic('pinfo2', 'foo')\n"],
Thomas Kluyver
Transformations for 'help?' syntax
r24161 )
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 MAGIC_HELP = (["%foo?\n"], (1, 0), ["get_ipython().run_line_magic('pinfo', '%foo')\n"])
Thomas Kluyver
Transformations for 'help?' syntax
r24161
HELP_IN_EXPR = (
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 ["a = b + c?\n"],
(1, 0),
["get_ipython().run_line_magic('pinfo', 'c')\n"],
Thomas Kluyver
Transformations for 'help?' syntax
r24161 )
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 HELP_CONTINUED_LINE = (
"""\
Thomas Kluyver
Transformations for 'help?' syntax
r24161 a = \\
zip?
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 """.splitlines(
keepends=True
),
(1, 0),
[r"get_ipython().run_line_magic('pinfo', 'zip')" + "\n"],
Thomas Kluyver
Transformations for 'help?' syntax
r24161 )
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 HELP_MULTILINE = (
"""\
Thomas Kluyver
Transformations for 'help?' syntax
r24161 (a,
b) = zip?
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 """.splitlines(
keepends=True
),
(1, 0),
[r"get_ipython().run_line_magic('pinfo', 'zip')" + "\n"],
Thomas Kluyver
Transformations for 'help?' syntax
r24161 )
Markus Wageringel
support for unicode identifiers...
r25595 HELP_UNICODE = (
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 ["Ï€.foo?\n"],
(1, 0),
["get_ipython().run_line_magic('pinfo', 'Ï€.foo')\n"],
Markus Wageringel
support for unicode identifiers...
r25595 )
Matthias Bussonnier
Fix miss-capturing of assign statement after a dedent....
r24728
Tony Fast
Add tests for null cleanup test.
r24630 def null_cleanup_transformer(lines):
"""
A cleanup transform that returns an empty list.
"""
return []
Nikita Kniazev
Enable `check_make_token_by_line_never_ends_empty` test...
r27082
def test_check_make_token_by_line_never_ends_empty():
Matthias Bussonnier
Add some inputtransformer test cases
r24566 """
Check that not sequence of single or double characters ends up leading to en empty list of tokens
"""
from string import printable
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Matthias Bussonnier
Add some inputtransformer test cases
r24566 for c in printable:
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert make_tokens_by_line(c)[-1] != []
Matthias Bussonnier
Add some inputtransformer test cases
r24566 for k in printable:
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert make_tokens_by_line(c + k)[-1] != []
Matthias Bussonnier
Add some inputtransformer test cases
r24566
Thomas Kluyver
Transformations for 'help?' syntax
r24161 def check_find(transformer, case, match=True):
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 sample, expected_start, _ = case
Thomas Kluyver
Transformations for 'help?' syntax
r24161 tbl = make_tokens_by_line(sample)
res = transformer.find(tbl)
if match:
# start_line is stored 0-indexed, expected values are 1-indexed
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert (res.start_line + 1, res.start_col) == expected_start
Thomas Kluyver
Transformations for 'help?' syntax
r24161 return res
else:
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert res is None
Thomas Kluyver
Transformations for 'help?' syntax
r24161
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Thomas Kluyver
Transformations for 'help?' syntax
r24161 def check_transform(transformer_cls, case):
lines, start, expected = case
transformer = transformer_cls(start)
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert transformer.transform(lines) == expected
Thomas Kluyver
Transformations for 'help?' syntax
r24161
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Thomas Kluyver
Factor out handling of line continuations
r24157 def test_continued_line():
lines = MULTILINE_MAGIC_ASSIGN[0]
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert ipt2.find_end_of_continued_line(lines, 1) == 2
Thomas Kluyver
Factor out handling of line continuations
r24157
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert ipt2.assemble_continued_line(lines, (1, 5), 2) == "foo bar"
Thomas Kluyver
Factor out handling of line continuations
r24157
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Thomas Kluyver
Start adding tests for inputtransformer2
r24155 def test_find_assign_magic():
Thomas Kluyver
Transformations for 'help?' syntax
r24161 check_find(ipt2.MagicAssign, MULTILINE_MAGIC_ASSIGN)
check_find(ipt2.MagicAssign, MULTILINE_SYSTEM_ASSIGN, match=False)
Matthias Bussonnier
Fix miss-capturing of assign statement after a dedent....
r24728 check_find(ipt2.MagicAssign, MULTILINE_SYSTEM_ASSIGN_AFTER_DEDENT, match=False)
Thomas Kluyver
Start adding tests for inputtransformer2
r24155
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Thomas Kluyver
Start adding tests for inputtransformer2
r24155 def test_transform_assign_magic():
Thomas Kluyver
Transformations for 'help?' syntax
r24161 check_transform(ipt2.MagicAssign, MULTILINE_MAGIC_ASSIGN)
Thomas Kluyver
Add transformation for system assignments
r24156
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Thomas Kluyver
Add transformation for system assignments
r24156 def test_find_assign_system():
Thomas Kluyver
Transformations for 'help?' syntax
r24161 check_find(ipt2.SystemAssign, MULTILINE_SYSTEM_ASSIGN)
Matthias Bussonnier
Fix miss-capturing of assign statement after a dedent....
r24728 check_find(ipt2.SystemAssign, MULTILINE_SYSTEM_ASSIGN_AFTER_DEDENT)
Thomas Kluyver
Transformations for 'help?' syntax
r24161 check_find(ipt2.SystemAssign, (["a = !ls\n"], (1, 5), None))
check_find(ipt2.SystemAssign, (["a=!ls\n"], (1, 2), None))
check_find(ipt2.SystemAssign, MULTILINE_MAGIC_ASSIGN, match=False)
Thomas Kluyver
Add transformation for system assignments
r24156
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Thomas Kluyver
Transformations for 'help?' syntax
r24161 def test_transform_assign_system():
check_transform(ipt2.SystemAssign, MULTILINE_SYSTEM_ASSIGN)
Matthias Bussonnier
Fix miss-capturing of assign statement after a dedent....
r24728 check_transform(ipt2.SystemAssign, MULTILINE_SYSTEM_ASSIGN_AFTER_DEDENT)
Thomas Kluyver
Add transformation for system assignments
r24156
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Thomas Kluyver
Transformations for 'help?' syntax
r24161 def test_find_magic_escape():
check_find(ipt2.EscapedCommand, MULTILINE_MAGIC)
check_find(ipt2.EscapedCommand, INDENTED_MAGIC)
check_find(ipt2.EscapedCommand, MULTILINE_MAGIC_ASSIGN, match=False)
Thomas Kluyver
Add transformation for system assignments
r24156
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Thomas Kluyver
Transformations for 'help?' syntax
r24161 def test_transform_magic_escape():
check_transform(ipt2.EscapedCommand, MULTILINE_MAGIC)
check_transform(ipt2.EscapedCommand, INDENTED_MAGIC)
Kyle Cutler
Support CRLF line endings in magic transforms
r25936 check_transform(ipt2.EscapedCommand, CRLF_MAGIC)
Thomas Kluyver
Add transformation for system assignments
r24156
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Thomas Kluyver
Transformations for 'help?' syntax
r24161 def test_find_autocalls():
for case in [AUTOCALL_QUOTE, AUTOCALL_QUOTE2, AUTOCALL_PAREN]:
print("Testing %r" % case[0])
check_find(ipt2.EscapedCommand, case)
Thomas Kluyver
Escaped commands
r24159
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Thomas Kluyver
Transformations for 'help?' syntax
r24161 def test_transform_autocall():
for case in [AUTOCALL_QUOTE, AUTOCALL_QUOTE2, AUTOCALL_PAREN]:
print("Testing %r" % case[0])
check_transform(ipt2.EscapedCommand, case)
Thomas Kluyver
Escaped commands
r24159
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Thomas Kluyver
Transformations for 'help?' syntax
r24161 def test_find_help():
for case in [SIMPLE_HELP, DETAILED_HELP, MAGIC_HELP, HELP_IN_EXPR]:
check_find(ipt2.HelpEnd, case)
Thomas Kluyver
Some more tests for escaped commands
r24160
Thomas Kluyver
Transformations for 'help?' syntax
r24161 tf = check_find(ipt2.HelpEnd, HELP_CONTINUED_LINE)
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert tf.q_line == 1
assert tf.q_col == 3
Thomas Kluyver
Escaped commands
r24159
Thomas Kluyver
Transformations for 'help?' syntax
r24161 tf = check_find(ipt2.HelpEnd, HELP_MULTILINE)
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert tf.q_line == 1
assert tf.q_col == 8
Thomas Kluyver
Some more tests for escaped commands
r24160
Thomas Kluyver
Transformations for 'help?' syntax
r24161 # ? in a comment does not trigger help
check_find(ipt2.HelpEnd, (["foo # bar?\n"], None, None), match=False)
# Nor in a string
check_find(ipt2.HelpEnd, (["foo = '''bar?\n"], None, None), match=False)
Thomas Kluyver
Some more tests for escaped commands
r24160
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Thomas Kluyver
Transformations for 'help?' syntax
r24161 def test_transform_help():
tf = ipt2.HelpEnd((1, 0), (1, 9))
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert tf.transform(HELP_IN_EXPR[0]) == HELP_IN_EXPR[2]
Thomas Kluyver
Some more tests for escaped commands
r24160
Thomas Kluyver
Transformations for 'help?' syntax
r24161 tf = ipt2.HelpEnd((1, 0), (2, 3))
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert tf.transform(HELP_CONTINUED_LINE[0]) == HELP_CONTINUED_LINE[2]
Thomas Kluyver
Transformations for 'help?' syntax
r24161
tf = ipt2.HelpEnd((1, 0), (2, 8))
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert tf.transform(HELP_MULTILINE[0]) == HELP_MULTILINE[2]
Thomas Kluyver
Start adding code for checking when input is complete
r24165
Markus Wageringel
support for unicode identifiers...
r25595 tf = ipt2.HelpEnd((1, 0), (1, 0))
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert tf.transform(HELP_UNICODE[0]) == HELP_UNICODE[2]
Markus Wageringel
support for unicode identifiers...
r25595
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Matthias Bussonnier
Fix miss-capturing of assign statement after a dedent....
r24728 def test_find_assign_op_dedent():
"""
luz.paz
Fix misc. comment typos...
r24756 be careful that empty token like dedent are not counted as parens
Matthias Bussonnier
Fix miss-capturing of assign statement after a dedent....
r24728 """
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Matthias Bussonnier
Fix miss-capturing of assign statement after a dedent....
r24728 class Tk:
def __init__(self, s):
self.string = s
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert _find_assign_op([Tk(s) for s in ("", "a", "=", "b")]) == 2
assert (
_find_assign_op([Tk(s) for s in ("", "(", "a", "=", "b", ")", "=", "5")]) == 6
)
Matthias Bussonnier
Fix miss-capturing of assign statement after a dedent....
r24728
Matthias Bussonnier
Add Xfail test on 3.9.8...
r27020 examples = [
pytest.param("a = 1", "complete", None),
pytest.param("for a in range(5):", "incomplete", 4),
pytest.param("for a in range(5):\n if a > 0:", "incomplete", 8),
pytest.param("raise = 2", "invalid", None),
pytest.param("a = [1,\n2,", "incomplete", 0),
pytest.param("(\n))", "incomplete", 0),
pytest.param("\\\r\n", "incomplete", 0),
pytest.param("a = '''\n hi", "incomplete", 3),
pytest.param("def a():\n x=1\n global x", "invalid", None),
pytest.param(
"a \\ ",
"invalid",
None,
marks=pytest.mark.xfail(
reason="Bug in python 3.9.8 – bpo 45738",
Nikita Kniazev
Python 3.11 fixes
r27105 condition=sys.version_info
in [(3, 9, 8, "final", 0), (3, 11, 0, "alpha", 2)],
Matthias Bussonnier
Add Xfail test on 3.9.8...
r27020 raises=SystemError,
strict=True,
),
), # Nothing allowed after backslash,
pytest.param("1\\\n+2", "complete", None),
]
@pytest.mark.parametrize("code, expected, number", examples)
def test_check_complete_param(code, expected, number):
cc = ipt2.TransformerManager().check_complete
assert cc(code) == (expected, number)
Matthias Bussonnier
xfail pypy
r27406 @pytest.mark.xfail(platform.python_implementation() == "PyPy", reason="fail on pypy")
Matthias Bussonnier
Add Xfail test on 3.9.8...
r27020 @pytest.mark.xfail(
reason="Bug in python 3.9.8 – bpo 45738",
Nikita Kniazev
Python 3.11 fixes
r27105 condition=sys.version_info in [(3, 9, 8, "final", 0), (3, 11, 0, "alpha", 2)],
raises=SystemError,
strict=True,
Matthias Bussonnier
Add Xfail test on 3.9.8...
r27020 )
Thomas Kluyver
Start adding code for checking when input is complete
r24165 def test_check_complete():
Thomas Kluyver
Start integrating new machinery for checking code completeness
r24166 cc = ipt2.TransformerManager().check_complete
Matthias Bussonnier
Add some inputtransformer test cases
r24566
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 example = dedent(
"""
Matthias Bussonnier
add tests
r24637 if True:
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 a=1"""
)
Matthias Bussonnier
add tests
r24637
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert cc(example) == ("incomplete", 4)
assert cc(example + "\n") == ("complete", None)
assert cc(example + "\n ") == ("complete", None)
Matthias Bussonnier
add tests
r24637
Matthias Bussonnier
Add some inputtransformer test cases
r24566 # no need to loop on all the letters/numbers.
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 short = "12abAB" + string.printable[62:]
Matthias Bussonnier
Add some inputtransformer test cases
r24566 for c in short:
# test does not raise:
cc(c)
for k in short:
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 cc(c + k)
Matthias Bussonnier
Add some inputtransformer test cases
r24566
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert cc("def f():\n x=0\n \\\n ") == ("incomplete", 2)
Dominik Miedziński
Fix handling of repeated NEWLINE tokens
r25393
Matthias Bussonnier
xfail pypy
r27406 @pytest.mark.xfail(platform.python_implementation() == "PyPy", reason="fail on pypy")
Matthias Bussonnier
Fix and test for "async with does not allow new lines"....
r27405 @pytest.mark.parametrize(
"value, expected",
[
('''def foo():\n """''', ("incomplete", 4)),
("""async with example:\n pass""", ("incomplete", 4)),
("""async with example:\n pass\n """, ("complete", None)),
],
)
def test_check_complete_II(value, expected):
Matthias Bussonnier
Fix to allow entering docstring into IPython....
r24701 """
Test that multiple line strings are properly handled.
Separate test function for convenience
"""
cc = ipt2.TransformerManager().check_complete
Matthias Bussonnier
Fix and test for "async with does not allow new lines"....
r27405 assert cc(value) == expected
@pytest.mark.parametrize(
"value, expected",
[
(")", ("invalid", None)),
("]", ("invalid", None)),
("}", ("invalid", None)),
(")(", ("invalid", None)),
("][", ("invalid", None)),
("}{", ("invalid", None)),
("]()(", ("invalid", None)),
("())(", ("invalid", None)),
(")[](", ("invalid", None)),
("()](", ("invalid", None)),
],
)
def test_check_complete_invalidates_sunken_brackets(value, expected):
Blazej Michalik
Bail on singleline cells with sunken brackets...
r26370 """
Test that a single line with more closing brackets than the opening ones is
Dimitri Papadopoulos
Typos found by codespell
r26875 interpreted as invalid
Blazej Michalik
Bail on singleline cells with sunken brackets...
r26370 """
cc = ipt2.TransformerManager().check_complete
Matthias Bussonnier
Fix and test for "async with does not allow new lines"....
r27405 assert cc(value) == expected
Blazej Michalik
Bail on singleline cells with sunken brackets...
r26370
Tony Fast
Add tests for null cleanup test.
r24630 def test_null_cleanup_transformer():
manager = ipt2.TransformerManager()
manager.cleanup_transforms.insert(0, null_cleanup_transformer)
Samuel Gaist
[core][tests][inputtransformer2] Remove nose
r26900 assert manager.transform_cell("") == ""
Matthias Bussonnier
Allow to mark transformers as having side effects...
r25925
def test_side_effects_I():
count = 0
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Matthias Bussonnier
Allow to mark transformers as having side effects...
r25925 def counter(lines):
nonlocal count
count += 1
return lines
counter.has_side_effects = True
manager = ipt2.TransformerManager()
manager.cleanup_transforms.insert(0, counter)
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 assert manager.check_complete("a=1\n") == ("complete", None)
Matthias Bussonnier
Allow to mark transformers as having side effects...
r25925 assert count == 0
def test_side_effects_II():
count = 0
Matthias Bussonnier
Remove set-next input when triggering help....
r27619
Matthias Bussonnier
Allow to mark transformers as having side effects...
r25925 def counter(lines):
nonlocal count
count += 1
return lines
counter.has_side_effects = True
manager = ipt2.TransformerManager()
manager.line_transforms.insert(0, counter)
Matthias Bussonnier
Remove set-next input when triggering help....
r27619 assert manager.check_complete("b=1\n") == ("complete", None)
Matthias Bussonnier
Allow to mark transformers as having side effects...
r25925 assert count == 0