##// END OF EJS Templates
Merge pull request #12645 from Carreau/str-path...
Merge pull request #12645 from Carreau/str-path Fix mistake where str is inserted into a list of Path.

File last commit:

r25082:17589e2e
r26128:b9e1d67a merge
Show More
test_history.py
214 lines | 8.5 KiB | text/x-python | PythonLexer
Thomas Kluyver
Add file encoding declarations to two tests.
r3449 # coding: utf-8
Satrajit Ghosh
History refactored and saved to json file...
r3240 """Tests for the IPython tab-completion machinery.
"""
#-----------------------------------------------------------------------------
# Module imports
#-----------------------------------------------------------------------------
# stdlib
Thomas Kluyver
Remove py3compat.open in favour of io.open
r17299 import io
Satrajit Ghosh
History refactored and saved to json file...
r3240 import os
import sys
MinRK
allow setting HistoryManager.hist_file with config...
r5233 import tempfile
MinRK
add get_session_info to HistoryManager for querying session table...
r4487 from datetime import datetime
luciana
Added skipif for sqlite3 version > 3.24.0
r24717 import sqlite3
MinRK
allow setting HistoryManager.hist_file with config...
r5233
Satrajit Ghosh
History refactored and saved to json file...
r3240 # third party
import nose.tools as nt
# our own packages
Min RK
update dependency imports...
r21253 from traitlets.config.loader import Config
Satrajit Ghosh
History refactored and saved to json file...
r3240 from IPython.utils.tempdir import TemporaryDirectory
Thomas Kluyver
Passing IPython.core tests.
r3396 from IPython.core.history import HistoryManager, extract_hist_ranges
luciana
Added skipif for sqlite3 version > 3.24.0
r24717 from IPython.testing.decorators import skipif
Satrajit Ghosh
History refactored and saved to json file...
r3240
Matthias Bussonnier
Use module level setup and teardown compatible both nose and pytest....
r25082 def test_proper_default_encoding():
Srinivas Reddy Thatiparthy
clean up
r23095 nt.assert_equal(sys.getdefaultencoding(), "utf-8")
Thomas Kluyver
Tweak code with suggestions from yesterday.
r3458
luciana
Added skipif for sqlite3 version > 3.24.0
r24717 @skipif(sqlite3.sqlite_version_info > (3,24,0))
Thomas Kluyver
Tweak code with suggestions from yesterday.
r3458 def test_history():
Satrajit Ghosh
History refactored and saved to json file...
r3240 ip = get_ipython()
with TemporaryDirectory() as tmpdir:
hist_manager_ori = ip.history_manager
Thomas Kluyver
Fix up tests.
r3715 hist_file = os.path.join(tmpdir, 'history.sqlite')
Satrajit Ghosh
History refactored and saved to json file...
r3240 try:
Thomas Kluyver
Fix up tests.
r3715 ip.history_manager = HistoryManager(shell=ip, hist_file=hist_file)
Thomas Kluyver
Fix tests for saving non-ascii history.
r6075 hist = [u'a=1', u'def f():\n test = 1\n return test', u"b='€Æ¾÷ß'"]
Thomas Kluyver
Passing IPython.core tests.
r3396 for i, h in enumerate(hist, start=1):
ip.history_manager.store_inputs(i, h)
Bernardo B. Marques
remove all trailling spaces
r4872
Thomas Kluyver
Simplify magic_history display code, allow get_hist_search to include output in return values, and add some unit tests.
r3400 ip.history_manager.db_log_output = True
# Doesn't match the input, but we'll just check it's stored.
Thomas Kluyver
History expects single output per cell, and doesn't use JSON to store them in the database.
r3741 ip.history_manager.output_hist_reprs[3] = "spam"
Thomas Kluyver
Allow history to store multiple outputs for a single input line.
r3415 ip.history_manager.store_output(3)
Bernardo B. Marques
remove all trailling spaces
r4872
Thomas Kluyver
Passing IPython.core tests.
r3396 nt.assert_equal(ip.history_manager.input_hist_raw, [''] + hist)
luciana
Added skipif for sqlite3 version > 3.24.0
r24717
Thomas Kluyver
Add detailed tests for history _get_range_session method.
r4889 # Detailed tests for _get_range_session
grs = ip.history_manager._get_range_session
Thomas Kluyver
Fix tests in IPython.core
r13394 nt.assert_equal(list(grs(start=2,stop=-1)), list(zip([0], [2], hist[1:-1])))
nt.assert_equal(list(grs(start=-2)), list(zip([0,0], [2,3], hist[-2:])))
nt.assert_equal(list(grs(output=True)), list(zip([0,0,0], [1,2,3], zip(hist, [None,None,'spam']))))
Bernardo B. Marques
remove all trailling spaces
r4872
# Check whether specifying a range beyond the end of the current
Thomas Kluyver
Test that specifying a range beyond the end of the current session doesn't raise an error.
r4859 # session results in an error (gh-804)
ip.magic('%hist 2-500')
luciana
Added skipif for sqlite3 version > 3.24.0
r24717
Thomas Kluyver
Add test for writing non-ascii characters to file with %hist.
r6074 # Check that we can write non-ascii characters to a file
Thomas Kluyver
Fix tests for saving non-ascii history.
r6075 ip.magic("%%hist -f %s" % os.path.join(tmpdir, "test1"))
ip.magic("%%hist -pf %s" % os.path.join(tmpdir, "test2"))
ip.magic("%%hist -nf %s" % os.path.join(tmpdir, "test3"))
ip.magic("%%save %s 1-10" % os.path.join(tmpdir, "test4"))
Bernardo B. Marques
remove all trailling spaces
r4872
Thomas Kluyver
Passing IPython.core tests.
r3396 # New session
ip.history_manager.reset()
Takafumi Arakaki
Add duplicated entry in test_history
r8779 newcmds = [u"z=5",
u"class X(object):\n pass",
u"k='p'",
u"z=5"]
Thomas Kluyver
Simplify magic_history display code, allow get_hist_search to include output in return values, and add some unit tests.
r3400 for i, cmd in enumerate(newcmds, start=1):
Thomas Kluyver
Passing IPython.core tests.
r3396 ip.history_manager.store_inputs(i, cmd)
Thomas Kluyver
Rename history retrieval methods, and improve docstrings.
r3435 gothist = ip.history_manager.get_range(start=1, stop=4)
Thomas Kluyver
Fix tests in IPython.core
r13394 nt.assert_equal(list(gothist), list(zip([0,0,0],[1,2,3], newcmds)))
Thomas Kluyver
Passing IPython.core tests.
r3396 # Previous session:
Thomas Kluyver
Rename history retrieval methods, and improve docstrings.
r3435 gothist = ip.history_manager.get_range(-1, 1, 4)
Thomas Kluyver
Fix tests in IPython.core
r13394 nt.assert_equal(list(gothist), list(zip([1,1,1],[1,2,3], hist)))
Bernardo B. Marques
remove all trailling spaces
r4872
Takafumi Arakaki
Use start=1 for enumerate rather than doing i+1
r8785 newhist = [(2, i, c) for (i, c) in enumerate(newcmds, 1)]
Takafumi Arakaki
Add duplicated entry in test_history
r8779
Thomas Kluyver
Simplify magic_history display code, allow get_hist_search to include output in return values, and add some unit tests.
r3400 # Check get_hist_tail
Takafumi Arakaki
Add duplicated entry in test_history
r8779 gothist = ip.history_manager.get_tail(5, output=True,
Thomas Kluyver
Further refinements to history interfaces.
r3420 include_latest=True)
Takafumi Arakaki
Add duplicated entry in test_history
r8779 expected = [(1, 3, (hist[-1], "spam"))] \
+ [(s, n, (c, None)) for (s, n, c) in newhist]
Thomas Kluyver
Simplify magic_history display code, allow get_hist_search to include output in return values, and add some unit tests.
r3400 nt.assert_equal(list(gothist), expected)
Bernardo B. Marques
remove all trailling spaces
r4872
Thomas Kluyver
Rename history retrieval methods, and improve docstrings.
r3435 gothist = ip.history_manager.get_tail(2)
Takafumi Arakaki
Add duplicated entry in test_history
r8779 expected = newhist[-3:-1]
Thomas Kluyver
Further refinements to history interfaces.
r3420 nt.assert_equal(list(gothist), expected)
Bernardo B. Marques
remove all trailling spaces
r4872
Thomas Kluyver
Simplify magic_history display code, allow get_hist_search to include output in return values, and add some unit tests.
r3400 # Check get_hist_search
luciana
Added skipif for sqlite3 version > 3.24.0
r24717
Thomas Kluyver
Rename history retrieval methods, and improve docstrings.
r3435 gothist = ip.history_manager.search("*test*")
Thomas Kluyver
Simplify magic_history display code, allow get_hist_search to include output in return values, and add some unit tests.
r3400 nt.assert_equal(list(gothist), [(1,2,hist[1])] )
Takafumi Arakaki
Add a test for history search with unique=True
r8781
Takafumi Arakaki
Add tests for the new history seach behavior
r8400 gothist = ip.history_manager.search("*=*")
nt.assert_equal(list(gothist),
[(1, 1, hist[0]),
(1, 2, hist[1]),
(1, 3, hist[2]),
Takafumi Arakaki
Add duplicated entry in test_history
r8779 newhist[0],
newhist[2],
newhist[3]])
Takafumi Arakaki
Add a test for history search with unique=True
r8781
Takafumi Arakaki
Add duplicated entry in test_history
r8779 gothist = ip.history_manager.search("*=*", n=4)
Takafumi Arakaki
Add tests for the new history seach behavior
r8400 nt.assert_equal(list(gothist),
[(1, 3, hist[2]),
Takafumi Arakaki
Add duplicated entry in test_history
r8779 newhist[0],
newhist[2],
newhist[3]])
Takafumi Arakaki
Add a test for history search with unique=True
r8781
gothist = ip.history_manager.search("*=*", unique=True)
nt.assert_equal(list(gothist),
[(1, 1, hist[0]),
(1, 2, hist[1]),
(1, 3, hist[2]),
newhist[2],
newhist[3]])
Takafumi Arakaki
Add a test for combination of n/unique arguments
r8782 gothist = ip.history_manager.search("*=*", unique=True, n=3)
nt.assert_equal(list(gothist),
[(1, 3, hist[2]),
newhist[2],
newhist[3]])
Thomas Kluyver
Rename history retrieval methods, and improve docstrings.
r3435 gothist = ip.history_manager.search("b*", output=True)
Thomas Kluyver
History expects single output per cell, and doesn't use JSON to store them in the database.
r3741 nt.assert_equal(list(gothist), [(1,3,(hist[2],"spam"))] )
Bernardo B. Marques
remove all trailling spaces
r4872
Thomas Kluyver
Passing IPython.core tests.
r3396 # Cross testing: check that magic %save can get previous session.
Thomas Kluyver
Add test code for history session offset.
r3383 testfilename = os.path.realpath(os.path.join(tmpdir, "test.py"))
Fernando Perez
Fix failing test that did direct magic access.
r6915 ip.magic("save " + testfilename + " ~1/1-3")
Thomas Kluyver
Remove py3compat.open in favour of io.open
r17299 with io.open(testfilename, encoding='utf-8') as testfile:
Thomas Kluyver
Fix almost all IPython.core tests for Python 3.
r4896 nt.assert_equal(testfile.read(),
Dominik Dabrowski
account for trailing newline in test_history.test_history
r7853 u"# coding: utf-8\n" + u"\n".join(hist)+u"\n")
Bernardo B. Marques
remove all trailling spaces
r4872
Thomas Kluyver
Add test code to make sure that history database errors caused by duplicate session/line numbers are handled correctly (don't crash, get new session).
r3438 # Duplicate line numbers - check that it doesn't crash, and
# gets a new session
ip.history_manager.store_inputs(1, "rogue")
Thomas Kluyver
Fix up tests.
r3715 ip.history_manager.writeout_cache()
Thomas Kluyver
Add test code to make sure that history database errors caused by duplicate session/line numbers are handled correctly (don't crash, get new session).
r3438 nt.assert_equal(ip.history_manager.session_number, 3)
Satrajit Ghosh
History refactored and saved to json file...
r3240 finally:
Thomas Kluyver
Ensure history tests release database before cleanup
r16768 # Ensure saving thread is shut down before we try to clean up the files
ip.history_manager.save_thread.stop()
Thomas Kluyver
Ensure history database is closed in test...
r16771 # Forcibly close database rather than relying on garbage collection
ip.history_manager.db.close()
Satrajit Ghosh
History refactored and saved to json file...
r3240 # Restore history manager
ip.history_manager = hist_manager_ori
Thomas Kluyver
Passing IPython.core tests.
r3396
Thomas Kluyver
Moved unicode tests into main test suite. Reverified that both fail if the fixes in previous commits are undone.
r3447
Thomas Kluyver
Passing IPython.core tests.
r3396 def test_extract_hist_ranges():
Joon Ro
added ~session/noline case to test_extract_hist_ranges()...
r9797 instr = "1 2/3 ~4/5-6 ~4/7-~4/9 ~9/2-~7/5 ~10/"
Thomas Kluyver
Passing IPython.core tests.
r3396 expected = [(0, 1, 2), # 0 == current session
(2, 3, 4),
(-4, 5, 7),
(-4, 7, 10),
(-9, 2, None), # None == to end
(-8, 1, None),
Joon Ro
added a missing comma
r9798 (-7, 1, 6),
Joon Ro
added ~session/noline case to test_extract_hist_ranges()...
r9797 (-10, 1, None)]
Thomas Kluyver
Passing IPython.core tests.
r3396 actual = list(extract_hist_ranges(instr))
nt.assert_equal(actual, expected)
Bernardo B. Marques
remove all trailling spaces
r4872
Thomas Kluyver
Further refinements to history interfaces.
r3420 def test_magic_rerun():
"""Simple test for %rerun (no args -> rerun last line)"""
ip = get_ipython()
Thomas Kluyver
Change run_cell to not store history by default.
r4995 ip.run_cell("a = 10", store_history=True)
ip.run_cell("a += 1", store_history=True)
Thomas Kluyver
Further refinements to history interfaces.
r3420 nt.assert_equal(ip.user_ns["a"], 11)
Thomas Kluyver
Change run_cell to not store history by default.
r4995 ip.run_cell("%rerun", store_history=True)
Thomas Kluyver
Further refinements to history interfaces.
r3420 nt.assert_equal(ip.user_ns["a"], 12)
MinRK
add get_session_info to HistoryManager for querying session table...
r4487
def test_timestamp_type():
ip = get_ipython()
info = ip.history_manager.get_session_info()
nt.assert_true(isinstance(info[1], datetime))
MinRK
allow setting HistoryManager.hist_file with config...
r5233
def test_hist_file_config():
cfg = Config()
MinRK
use NamedTemporaryFile in hist_file_config test
r5242 tfile = tempfile.NamedTemporaryFile(delete=False)
cfg.HistoryManager.hist_file = tfile.name
try:
hm = HistoryManager(shell=get_ipython(), config=cfg)
Bradley M. Froehle
s/nt.assert_equals/nt.assert_equal/
r7875 nt.assert_equal(hm.hist_file, cfg.HistoryManager.hist_file)
MinRK
use NamedTemporaryFile in hist_file_config test
r5242 finally:
MinRK
minor test fixes for win32
r5297 try:
os.remove(tfile.name)
except OSError:
# same catch as in testing.tools.TempFileMixin
# On Windows, even though we close the file, we still can't
# delete it. I have no clue why
pass
MinRK
allow setting HistoryManager.hist_file with config...
r5233
Trevor Bekolay
Add test for disabling history manager
r22185 def test_histmanager_disabled():
"""Ensure that disabling the history manager doesn't create a database."""
cfg = Config()
cfg.HistoryAccessor.enabled = False
ip = get_ipython()
with TemporaryDirectory() as tmpdir:
hist_manager_ori = ip.history_manager
hist_file = os.path.join(tmpdir, 'history.sqlite')
cfg.HistoryManager.hist_file = hist_file
try:
ip.history_manager = HistoryManager(shell=ip, config=cfg)
hist = [u'a=1', u'def f():\n test = 1\n return test', u"b='€Æ¾÷ß'"]
for i, h in enumerate(hist, start=1):
ip.history_manager.store_inputs(i, h)
nt.assert_equal(ip.history_manager.input_hist_raw, [''] + hist)
ip.history_manager.reset()
ip.history_manager.end_session()
finally:
ip.history_manager = hist_manager_ori
# hist_file should not be created
nt.assert_false(os.path.exists(hist_file))