test_interactiveshell.py
277 lines
| 9.9 KiB
| text/x-python
|
PythonLexer
Jörgen Stenarson
|
r5094 | # -*- coding: utf-8 -*- | ||
Fernando Perez
|
r3300 | """Tests for the key interactiveshell module. | ||
Historically the main classes in interactiveshell have been under-tested. This | ||||
module should grow as many single-method tests as possible to trap many of the | ||||
recurring bugs we seem to encounter with high-level interaction. | ||||
Authors | ||||
------- | ||||
* Fernando Perez | ||||
""" | ||||
#----------------------------------------------------------------------------- | ||||
# Copyright (C) 2011 The IPython Development Team | ||||
# | ||||
# Distributed under the terms of the BSD License. The full license is in | ||||
# the file COPYING, distributed as part of this software. | ||||
#----------------------------------------------------------------------------- | ||||
#----------------------------------------------------------------------------- | ||||
# Imports | ||||
#----------------------------------------------------------------------------- | ||||
# stdlib | ||||
Jörgen Stenarson
|
r5094 | import os | ||
import shutil | ||||
import tempfile | ||||
Fernando Perez
|
r3300 | import unittest | ||
Jörgen Stenarson
|
r5094 | from os.path import join | ||
Thomas Kluyver
|
r5456 | import sys | ||
MinRK
|
r4794 | from StringIO import StringIO | ||
MinRK
|
r3822 | |||
from IPython.utils import io | ||||
Fernando Perez
|
r3300 | |||
#----------------------------------------------------------------------------- | ||||
# Tests | ||||
#----------------------------------------------------------------------------- | ||||
class InteractiveShellTestCase(unittest.TestCase): | ||||
def test_naked_string_cells(self): | ||||
"""Test that cells with only naked strings are fully executed""" | ||||
ip = get_ipython() | ||||
# First, single-line inputs | ||||
ip.run_cell('"a"\n') | ||||
self.assertEquals(ip.user_ns['_'], 'a') | ||||
# And also multi-line cells | ||||
ip.run_cell('"""a\nb"""\n') | ||||
self.assertEquals(ip.user_ns['_'], 'a\nb') | ||||
Paul Ivanov
|
r3499 | |||
Thomas Kluyver
|
r3441 | def test_run_empty_cell(self): | ||
"""Just make sure we don't get a horrible error with a blank | ||||
cell of input. Yes, I did overlook that.""" | ||||
ip = get_ipython() | ||||
Thomas Kluyver
|
r3706 | old_xc = ip.execution_count | ||
Thomas Kluyver
|
r3441 | ip.run_cell('') | ||
Thomas Kluyver
|
r3706 | self.assertEquals(ip.execution_count, old_xc) | ||
Fernando Perez
|
r3467 | |||
Paul Ivanov
|
r3499 | def test_run_cell_multiline(self): | ||
Fernando Perez
|
r3467 | """Multi-block, multi-line cells must execute correctly. | ||
""" | ||||
ip = get_ipython() | ||||
src = '\n'.join(["x=1", | ||||
"y=2", | ||||
"if 1:", | ||||
" x += 1", | ||||
" y += 1",]) | ||||
ip.run_cell(src) | ||||
self.assertEquals(ip.user_ns['x'], 2) | ||||
self.assertEquals(ip.user_ns['y'], 3) | ||||
Paul Ivanov
|
r3499 | |||
def test_multiline_string_cells(self): | ||||
Paul Ivanov
|
r3500 | "Code sprinkled with multiline strings should execute (GH-306)" | ||
Paul Ivanov
|
r3499 | ip = get_ipython() | ||
ip.run_cell('tmp=0') | ||||
self.assertEquals(ip.user_ns['tmp'], 0) | ||||
ip.run_cell('tmp=1;"""a\nb"""\n') | ||||
self.assertEquals(ip.user_ns['tmp'], 1) | ||||
Paul Ivanov
|
r3500 | |||
def test_dont_cache_with_semicolon(self): | ||||
"Ending a line with semicolon should not cache the returned object (GH-307)" | ||||
ip = get_ipython() | ||||
oldlen = len(ip.user_ns['Out']) | ||||
Thomas Kluyver
|
r4995 | a = ip.run_cell('1;', store_history=True) | ||
Paul Ivanov
|
r3500 | newlen = len(ip.user_ns['Out']) | ||
self.assertEquals(oldlen, newlen) | ||||
#also test the default caching behavior | ||||
Thomas Kluyver
|
r4995 | ip.run_cell('1', store_history=True) | ||
Paul Ivanov
|
r3500 | newlen = len(ip.user_ns['Out']) | ||
self.assertEquals(oldlen+1, newlen) | ||||
Paul Ivanov
|
r3503 | |||
Paul Ivanov
|
r3501 | def test_In_variable(self): | ||
"Verify that In variable grows with user input (GH-284)" | ||||
ip = get_ipython() | ||||
oldlen = len(ip.user_ns['In']) | ||||
Thomas Kluyver
|
r4995 | ip.run_cell('1;', store_history=True) | ||
Paul Ivanov
|
r3501 | newlen = len(ip.user_ns['In']) | ||
self.assertEquals(oldlen+1, newlen) | ||||
self.assertEquals(ip.user_ns['In'][-1],'1;') | ||||
Thomas Kluyver
|
r3707 | |||
def test_magic_names_in_string(self): | ||||
ip = get_ipython() | ||||
Thomas Kluyver
|
r3709 | ip.run_cell('a = """\n%exit\n"""') | ||
self.assertEquals(ip.user_ns['a'], '\n%exit\n') | ||||
MinRK
|
r3821 | |||
def test_alias_crash(self): | ||||
"""Errors in prefilter can't crash IPython""" | ||||
ip = get_ipython() | ||||
ip.run_cell('%alias parts echo first %s second %s') | ||||
MinRK
|
r3822 | # capture stderr: | ||
save_err = io.stderr | ||||
io.stderr = StringIO() | ||||
MinRK
|
r3821 | ip.run_cell('parts 1') | ||
MinRK
|
r3822 | err = io.stderr.getvalue() | ||
io.stderr = save_err | ||||
self.assertEquals(err.split(':')[0], 'ERROR') | ||||
MinRK
|
r3908 | |||
def test_trailing_newline(self): | ||||
"""test that running !(command) does not raise a SyntaxError""" | ||||
ip = get_ipython() | ||||
ip.run_cell('!(true)\n', False) | ||||
ip.run_cell('!(true)\n\n\n', False) | ||||
Julian Taylor
|
r4281 | |||
def test_gh_597(self): | ||||
Thomas Kluyver
|
r4375 | """Pretty-printing lists of objects with non-ascii reprs may cause | ||
problems.""" | ||||
Julian Taylor
|
r4281 | class Spam(object): | ||
def __repr__(self): | ||||
return "\xe9"*50 | ||||
import IPython.core.formatters | ||||
f = IPython.core.formatters.PlainTextFormatter() | ||||
f([Spam(),Spam()]) | ||||
Thomas Kluyver
|
r4795 | |||
Thomas Kluyver
|
r5456 | |||
Thomas Kluyver
|
r4795 | def test_future_flags(self): | ||
"""Check that future flags are used for parsing code (gh-777)""" | ||||
ip = get_ipython() | ||||
ip.run_cell('from __future__ import print_function') | ||||
try: | ||||
ip.run_cell('prfunc_return_val = print(1,2, sep=" ")') | ||||
assert 'prfunc_return_val' in ip.user_ns | ||||
finally: | ||||
# Reset compiler flags so we don't mess up other tests. | ||||
ip.compile.reset_compiler_flags() | ||||
Olivier Verdier
|
r4811 | |||
def test_future_unicode(self): | ||||
"""Check that unicode_literals is imported from __future__ (gh #786)""" | ||||
ip = get_ipython() | ||||
try: | ||||
Olivier Verdier
|
r4820 | ip.run_cell(u'byte_str = "a"') | ||
Olivier Verdier
|
r4821 | assert isinstance(ip.user_ns['byte_str'], str) # string literals are byte strings by default | ||
Olivier Verdier
|
r4811 | ip.run_cell('from __future__ import unicode_literals') | ||
Olivier Verdier
|
r4820 | ip.run_cell(u'unicode_str = "a"') | ||
Olivier Verdier
|
r4821 | assert isinstance(ip.user_ns['unicode_str'], unicode) # strings literals are now unicode | ||
Olivier Verdier
|
r4811 | finally: | ||
# Reset compiler flags so we don't mess up other tests. | ||||
ip.compile.reset_compiler_flags() | ||||
Thomas Kluyver
|
r5456 | |||
def test_can_pickle(self): | ||||
"Can we pickle objects defined interactively (GH-29)" | ||||
ip = get_ipython() | ||||
ip.reset() | ||||
ip.run_cell(("class Mylist(list):\n" | ||||
" def __init__(self,x=[]):\n" | ||||
" list.__init__(self,x)")) | ||||
ip.run_cell("w=Mylist([1,2,3])") | ||||
from cPickle import dumps | ||||
# We need to swap in our main module - this is only necessary | ||||
# inside the test framework, because IPython puts the interactive module | ||||
# in place (but the test framework undoes this). | ||||
_main = sys.modules['__main__'] | ||||
sys.modules['__main__'] = ip.user_module | ||||
try: | ||||
res = dumps(ip.user_ns["w"]) | ||||
finally: | ||||
sys.modules['__main__'] = _main | ||||
self.assertTrue(isinstance(res, bytes)) | ||||
def test_global_ns(self): | ||||
"Code in functions must be able to access variables outside them." | ||||
ip = get_ipython() | ||||
ip.run_cell("a = 10") | ||||
Thomas Kluyver
|
r5465 | ip.run_cell(("def f(x):\n" | ||
Thomas Kluyver
|
r5456 | " return x + a")) | ||
ip.run_cell("b = f(12)") | ||||
self.assertEqual(ip.user_ns["b"], 22) | ||||
MinRK
|
r4991 | |||
def test_bad_custom_tb(self): | ||||
"""Check that InteractiveShell is protected from bad custom exception handlers""" | ||||
ip = get_ipython() | ||||
from IPython.utils import io | ||||
save_stderr = io.stderr | ||||
try: | ||||
# capture stderr | ||||
io.stderr = StringIO() | ||||
MinRK
|
r4999 | ip.set_custom_exc((IOError,), lambda etype,value,tb: 1/0) | ||
MinRK
|
r4991 | self.assertEquals(ip.custom_exceptions, (IOError,)) | ||
ip.run_cell(u'raise IOError("foo")') | ||||
self.assertEquals(ip.custom_exceptions, ()) | ||||
self.assertTrue("Custom TB Handler failed" in io.stderr.getvalue()) | ||||
finally: | ||||
io.stderr = save_stderr | ||||
MinRK
|
r4999 | def test_bad_custom_tb_return(self): | ||
"""Check that InteractiveShell is protected from bad return types in custom exception handlers""" | ||||
ip = get_ipython() | ||||
from IPython.utils import io | ||||
save_stderr = io.stderr | ||||
try: | ||||
# capture stderr | ||||
io.stderr = StringIO() | ||||
ip.set_custom_exc((NameError,),lambda etype,value,tb, tb_offset=None: 1) | ||||
self.assertEquals(ip.custom_exceptions, (NameError,)) | ||||
ip.run_cell(u'a=abracadabra') | ||||
self.assertEquals(ip.custom_exceptions, ()) | ||||
self.assertTrue("Custom TB Handler failed" in io.stderr.getvalue()) | ||||
finally: | ||||
io.stderr = save_stderr | ||||
Thomas Kluyver
|
r5068 | def test_drop_by_id(self): | ||
ip = get_ipython() | ||||
myvars = {"a":object(), "b":object(), "c": object()} | ||||
ip.push(myvars, interactive=False) | ||||
for name in myvars: | ||||
assert name in ip.user_ns, name | ||||
assert name in ip.user_ns_hidden, name | ||||
ip.user_ns['b'] = 12 | ||||
ip.drop_by_id(myvars) | ||||
for name in ["a", "c"]: | ||||
assert name not in ip.user_ns, name | ||||
assert name not in ip.user_ns_hidden, name | ||||
assert ip.user_ns['b'] == 12 | ||||
ip.reset() | ||||
Jörgen Stenarson
|
r5094 | |||
Fernando Perez
|
r5357 | def test_var_expand(self): | ||
ip = get_ipython() | ||||
Thomas Kluyver
|
r5366 | ip.user_ns['f'] = u'Ca\xf1o' | ||
self.assertEqual(ip.var_expand(u'echo $f'), u'echo Ca\xf1o') | ||||
ip.user_ns['f'] = b'Ca\xc3\xb1o' | ||||
Fernando Perez
|
r5357 | # This should not raise any exception: | ||
ip.var_expand(u'echo $f') | ||||
Jörgen Stenarson
|
r5094 | class TestSafeExecfileNonAsciiPath(unittest.TestCase): | ||
def setUp(self): | ||||
self.BASETESTDIR = tempfile.mkdtemp() | ||||
self.TESTDIR = join(self.BASETESTDIR, u"åäö") | ||||
os.mkdir(self.TESTDIR) | ||||
with open(join(self.TESTDIR, u"åäötestscript.py"), "w") as sfile: | ||||
sfile.write("pass\n") | ||||
self.oldpath = os.getcwdu() | ||||
os.chdir(self.TESTDIR) | ||||
self.fname = u"åäötestscript.py" | ||||
def tearDown(self): | ||||
os.chdir(self.oldpath) | ||||
shutil.rmtree(self.BASETESTDIR) | ||||
def test_1(self): | ||||
"""Test safe_execfile with non-ascii path | ||||
""" | ||||
Thomas Kluyver
|
r5157 | _ip.shell.safe_execfile(self.fname, {}, raise_exceptions=True) | ||
Jörgen Stenarson
|
r5314 | |||
class TestSystemRaw(unittest.TestCase): | ||||
def test_1(self): | ||||
"""Test system_raw with non-ascii cmd | ||||
""" | ||||
Thomas Kluyver
|
r5318 | cmd = ur'''python -c "'åäö'" ''' | ||
Jörgen Stenarson
|
r5314 | _ip.shell.system_raw(cmd) | ||
Fernando Perez
|
r5493 | |||
def test__IPYTHON__(): | ||||
# This shouldn't raise a NameError, that's all | ||||
__IPYTHON__ | ||||