##// END OF EJS Templates
Add tests for the new history seach behavior
Takafumi Arakaki -
Show More
@@ -1,151 +1,163 b''
1 1 # coding: utf-8
2 2 """Tests for the IPython tab-completion machinery.
3 3 """
4 4 #-----------------------------------------------------------------------------
5 5 # Module imports
6 6 #-----------------------------------------------------------------------------
7 7
8 8 # stdlib
9 9 import os
10 10 import shutil
11 11 import sys
12 12 import tempfile
13 13 import unittest
14 14 from datetime import datetime
15 15
16 16 # third party
17 17 import nose.tools as nt
18 18
19 19 # our own packages
20 20 from IPython.config.loader import Config
21 21 from IPython.utils.tempdir import TemporaryDirectory
22 22 from IPython.core.history import HistoryManager, extract_hist_ranges
23 23 from IPython.utils import py3compat
24 24
25 25 def setUp():
26 26 nt.assert_equal(sys.getdefaultencoding(), "utf-8" if py3compat.PY3 else "ascii")
27 27
28 28 def test_history():
29 29 ip = get_ipython()
30 30 with TemporaryDirectory() as tmpdir:
31 31 hist_manager_ori = ip.history_manager
32 32 hist_file = os.path.join(tmpdir, 'history.sqlite')
33 33 try:
34 34 ip.history_manager = HistoryManager(shell=ip, hist_file=hist_file)
35 35 hist = [u'a=1', u'def f():\n test = 1\n return test', u"b='β‚¬Γ†ΒΎΓ·ΓŸ'"]
36 36 for i, h in enumerate(hist, start=1):
37 37 ip.history_manager.store_inputs(i, h)
38 38
39 39 ip.history_manager.db_log_output = True
40 40 # Doesn't match the input, but we'll just check it's stored.
41 41 ip.history_manager.output_hist_reprs[3] = "spam"
42 42 ip.history_manager.store_output(3)
43 43
44 44 nt.assert_equal(ip.history_manager.input_hist_raw, [''] + hist)
45 45
46 46 # Detailed tests for _get_range_session
47 47 grs = ip.history_manager._get_range_session
48 48 nt.assert_equal(list(grs(start=2,stop=-1)), zip([0], [2], hist[1:-1]))
49 49 nt.assert_equal(list(grs(start=-2)), zip([0,0], [2,3], hist[-2:]))
50 50 nt.assert_equal(list(grs(output=True)), zip([0,0,0], [1,2,3], zip(hist, [None,None,'spam'])))
51 51
52 52 # Check whether specifying a range beyond the end of the current
53 53 # session results in an error (gh-804)
54 54 ip.magic('%hist 2-500')
55 55
56 56 # Check that we can write non-ascii characters to a file
57 57 ip.magic("%%hist -f %s" % os.path.join(tmpdir, "test1"))
58 58 ip.magic("%%hist -pf %s" % os.path.join(tmpdir, "test2"))
59 59 ip.magic("%%hist -nf %s" % os.path.join(tmpdir, "test3"))
60 60 ip.magic("%%save %s 1-10" % os.path.join(tmpdir, "test4"))
61 61
62 62 # New session
63 63 ip.history_manager.reset()
64 64 newcmds = ["z=5","class X(object):\n pass", "k='p'"]
65 65 for i, cmd in enumerate(newcmds, start=1):
66 66 ip.history_manager.store_inputs(i, cmd)
67 67 gothist = ip.history_manager.get_range(start=1, stop=4)
68 68 nt.assert_equal(list(gothist), zip([0,0,0],[1,2,3], newcmds))
69 69 # Previous session:
70 70 gothist = ip.history_manager.get_range(-1, 1, 4)
71 71 nt.assert_equal(list(gothist), zip([1,1,1],[1,2,3], hist))
72 72
73 73 # Check get_hist_tail
74 74 gothist = ip.history_manager.get_tail(4, output=True,
75 75 include_latest=True)
76 76 expected = [(1, 3, (hist[-1], "spam")),
77 77 (2, 1, (newcmds[0], None)),
78 78 (2, 2, (newcmds[1], None)),
79 79 (2, 3, (newcmds[2], None)),]
80 80 nt.assert_equal(list(gothist), expected)
81 81
82 82 gothist = ip.history_manager.get_tail(2)
83 83 expected = [(2, 1, newcmds[0]),
84 84 (2, 2, newcmds[1])]
85 85 nt.assert_equal(list(gothist), expected)
86 86
87 87 # Check get_hist_search
88 88 gothist = ip.history_manager.search("*test*")
89 89 nt.assert_equal(list(gothist), [(1,2,hist[1])] )
90 gothist = ip.history_manager.search("*=*")
91 nt.assert_equal(list(gothist),
92 [(1, 1, hist[0]),
93 (1, 2, hist[1]),
94 (1, 3, hist[2]),
95 (2, 1, newcmds[0]),
96 (2, 3, newcmds[2])])
97 gothist = ip.history_manager.search("*=*", n=3)
98 nt.assert_equal(list(gothist),
99 [(1, 3, hist[2]),
100 (2, 1, newcmds[0]),
101 (2, 3, newcmds[2])])
90 102 gothist = ip.history_manager.search("b*", output=True)
91 103 nt.assert_equal(list(gothist), [(1,3,(hist[2],"spam"))] )
92 104
93 105 # Cross testing: check that magic %save can get previous session.
94 106 testfilename = os.path.realpath(os.path.join(tmpdir, "test.py"))
95 107 ip.magic("save " + testfilename + " ~1/1-3")
96 108 with py3compat.open(testfilename, encoding='utf-8') as testfile:
97 109 nt.assert_equal(testfile.read(),
98 110 u"# coding: utf-8\n" + u"\n".join(hist)+u"\n")
99 111
100 112 # Duplicate line numbers - check that it doesn't crash, and
101 113 # gets a new session
102 114 ip.history_manager.store_inputs(1, "rogue")
103 115 ip.history_manager.writeout_cache()
104 116 nt.assert_equal(ip.history_manager.session_number, 3)
105 117 finally:
106 118 # Restore history manager
107 119 ip.history_manager = hist_manager_ori
108 120
109 121
110 122 def test_extract_hist_ranges():
111 123 instr = "1 2/3 ~4/5-6 ~4/7-~4/9 ~9/2-~7/5"
112 124 expected = [(0, 1, 2), # 0 == current session
113 125 (2, 3, 4),
114 126 (-4, 5, 7),
115 127 (-4, 7, 10),
116 128 (-9, 2, None), # None == to end
117 129 (-8, 1, None),
118 130 (-7, 1, 6)]
119 131 actual = list(extract_hist_ranges(instr))
120 132 nt.assert_equal(actual, expected)
121 133
122 134 def test_magic_rerun():
123 135 """Simple test for %rerun (no args -> rerun last line)"""
124 136 ip = get_ipython()
125 137 ip.run_cell("a = 10", store_history=True)
126 138 ip.run_cell("a += 1", store_history=True)
127 139 nt.assert_equal(ip.user_ns["a"], 11)
128 140 ip.run_cell("%rerun", store_history=True)
129 141 nt.assert_equal(ip.user_ns["a"], 12)
130 142
131 143 def test_timestamp_type():
132 144 ip = get_ipython()
133 145 info = ip.history_manager.get_session_info()
134 146 nt.assert_true(isinstance(info[1], datetime))
135 147
136 148 def test_hist_file_config():
137 149 cfg = Config()
138 150 tfile = tempfile.NamedTemporaryFile(delete=False)
139 151 cfg.HistoryManager.hist_file = tfile.name
140 152 try:
141 153 hm = HistoryManager(shell=get_ipython(), config=cfg)
142 154 nt.assert_equal(hm.hist_file, cfg.HistoryManager.hist_file)
143 155 finally:
144 156 try:
145 157 os.remove(tfile.name)
146 158 except OSError:
147 159 # same catch as in testing.tools.TempFileMixin
148 160 # On Windows, even though we close the file, we still can't
149 161 # delete it. I have no clue why
150 162 pass
151 163
General Comments 0
You need to be logged in to leave comments. Login now