Show More
@@ -97,6 +97,7 b' class HistoryManager(Configurable):' | |||
|
97 | 97 | '%quit', '%Exit', '%exit']) |
|
98 | 98 | |
|
99 | 99 | def init_db(self): |
|
100 | """Connect to the database and get new session number.""" | |
|
100 | 101 | self.db = sqlite3.connect(self.hist_file) |
|
101 | 102 | self.db.execute("""CREATE TABLE IF NOT EXISTS history |
|
102 | 103 | (session integer, line integer, source text, source_raw text, |
@@ -173,7 +174,8 b' class HistoryManager(Configurable):' | |||
|
173 | 174 | start : int |
|
174 | 175 | First line to retrieve. |
|
175 | 176 | stop : int |
|
176 | Last line to retrieve. If None, retrieve to the end of the session. | |
|
177 | End of line range (excluded from output itself). If None, retrieve | |
|
178 | to the end of the session. | |
|
177 | 179 | raw : bool |
|
178 | 180 | If True, return untranslated input |
|
179 | 181 | output : bool |
@@ -294,13 +296,17 b' class HistoryManager(Configurable):' | |||
|
294 | 296 | self.input_hist_parsed[:lp-lr] = [] |
|
295 | 297 | |
|
296 | 298 | def reset(self): |
|
297 |
"""Clear all histories managed by this object |
|
|
298 | self.input_hist_parsed[:] = [] | |
|
299 |
self.input_hist_ |
|
|
299 | """Clear all histories managed by this object, and start a new | |
|
300 | session.""" | |
|
301 | self.input_hist_parsed[:] = [""] | |
|
302 | self.input_hist_raw[:] = [""] | |
|
300 | 303 | self.output_hist.clear() |
|
301 | 304 | # The directory history can't be completely empty |
|
302 | 305 | self.dir_hist[:] = [os.getcwd()] |
|
303 | 306 | |
|
307 | self.writeout_cache() | |
|
308 | self.init_db() # New session | |
|
309 | ||
|
304 | 310 | # To match, e.g. ~5/8-~2/3 |
|
305 | 311 | range_re = re.compile(r""" |
|
306 | 312 | ((?P<startsess>~?\d+)/)? |
@@ -483,7 +489,7 b" def magic_history(self, parameter_s = ''):" | |||
|
483 | 489 | line_sep = '\n' if multiline else '' |
|
484 | 490 | if print_nums: |
|
485 | 491 | print('%s:%s' % (_format_lineno(session, lineno).ljust(width), |
|
486 |
line_sep |
|
|
492 | line_sep), file=outfile, end='') | |
|
487 | 493 | if pyprompts: |
|
488 | 494 | print(">>> ", end="", file=outfile) |
|
489 | 495 | if multiline: |
@@ -1603,7 +1603,7 b' Currently the magic system has the following functions:\\n"""' | |||
|
1603 | 1603 | |
|
1604 | 1604 | stats = None |
|
1605 | 1605 | try: |
|
1606 | self.shell.save_history() | |
|
1606 | #self.shell.save_history() | |
|
1607 | 1607 | |
|
1608 | 1608 | if opts.has_key('p'): |
|
1609 | 1609 | stats = self.magic_prun('',0,opts,arg_lst,prog_ns) |
@@ -1722,7 +1722,7 b' Currently the magic system has the following functions:\\n"""' | |||
|
1722 | 1722 | # contained therein. |
|
1723 | 1723 | del sys.modules[main_mod_name] |
|
1724 | 1724 | |
|
1725 | self.shell.reload_history() | |
|
1725 | #self.shell.reload_history() | |
|
1726 | 1726 | |
|
1727 | 1727 | return stats |
|
1728 | 1728 |
@@ -14,52 +14,61 b' import nose.tools as nt' | |||
|
14 | 14 | |
|
15 | 15 | # our own packages |
|
16 | 16 | from IPython.utils.tempdir import TemporaryDirectory |
|
17 | from IPython.core.history import HistoryManager | |
|
17 | from IPython.core.history import HistoryManager, extract_hist_ranges | |
|
18 | 18 | |
|
19 | 19 | def test_history(): |
|
20 | 20 | |
|
21 | 21 | ip = get_ipython() |
|
22 | 22 | with TemporaryDirectory() as tmpdir: |
|
23 | 23 | #tmpdir = '/software/temp' |
|
24 |
histfile = os.path.realpath(os.path.join(tmpdir, 'history. |
|
|
24 | histfile = os.path.realpath(os.path.join(tmpdir, 'history.sqlite')) | |
|
25 | 25 | # Ensure that we restore the history management that we mess with in |
|
26 | 26 | # this test doesn't affect the IPython instance used by the test suite |
|
27 | 27 | # beyond this test. |
|
28 | 28 | hist_manager_ori = ip.history_manager |
|
29 | 29 | try: |
|
30 | ip.history_manager = HistoryManager(ip) | |
|
30 | ip.history_manager = HistoryManager(shell=ip) | |
|
31 | 31 | ip.history_manager.hist_file = histfile |
|
32 | ip.history_manager.init_db() # Has to be called after changing file | |
|
32 | 33 | print 'test',histfile |
|
33 | 34 | hist = ['a=1', 'def f():\n test = 1\n return test', 'b=2'] |
|
34 | # test save and load | |
|
35 |
ip.history_manager. |
|
|
36 |
|
|
|
37 |
|
|
|
38 | ip.save_history() | |
|
39 | ip.history_manager.input_hist_raw[:] = [] | |
|
40 | ip.reload_history() | |
|
41 | print type(ip.history_manager.input_hist_raw) | |
|
42 | print ip.history_manager.input_hist_raw | |
|
43 | nt.assert_equal(len(ip.history_manager.input_hist_raw), len(hist)) | |
|
44 | for i,h in enumerate(hist): | |
|
45 | nt.assert_equal(hist[i], ip.history_manager.input_hist_raw[i]) | |
|
35 | for i, h in enumerate(hist, start=1): | |
|
36 | ip.history_manager.store_inputs(i, h) | |
|
37 | ||
|
38 | nt.assert_equal(ip.history_manager.input_hist_raw, [''] + hist) | |
|
39 | ||
|
40 | # Check lines were written to DB | |
|
41 | c = ip.history_manager.db.execute("SELECT source_raw FROM history") | |
|
42 | nt.assert_equal([x for x, in c], hist) | |
|
46 | 43 | |
|
47 |
# |
|
|
48 |
ip.history_manager. |
|
|
49 | len(ip.history_manager.input_hist_raw) -1 | |
|
44 | # New session | |
|
45 | ip.history_manager.reset() | |
|
50 | 46 | newcmds = ["z=5","class X(object):\n pass", "k='p'"] |
|
51 | for cmd in newcmds: | |
|
52 | ip.history_manager.store_inputs(cmd) | |
|
53 |
gothist = ip.history_manager.get_history( |
|
|
54 | raw=True, output=False) | |
|
55 | nt.assert_equal(gothist, dict(zip([1,2,3], newcmds))) | |
|
47 | for i, cmd in enumerate(newcmds): | |
|
48 | ip.history_manager.store_inputs(i, cmd) | |
|
49 | gothist = ip.history_manager.get_history(start=1, stop=4) | |
|
50 | nt.assert_equal(list(gothist), zip([0,0,0],[1,2,3], newcmds)) | |
|
51 | # Previous session: | |
|
52 | gothist = ip.history_manager.get_history(-1, 1, 4) | |
|
53 | nt.assert_equal(list(gothist), zip([1,1,1],[1,2,3], hist)) | |
|
56 | 54 | |
|
57 |
# Cross testing: check that magic %save |
|
|
58 | # offset. | |
|
55 | # Cross testing: check that magic %save can get previous session. | |
|
59 | 56 | testfilename = os.path.realpath(os.path.join(tmpdir, "test.py")) |
|
60 | ip.magic_save(testfilename + " 1-3") | |
|
57 | ip.magic_save(testfilename + " ~1/1-3") | |
|
61 | 58 | testfile = open(testfilename, "r") |
|
62 |
nt.assert_equal(testfile.read(), "\n".join( |
|
|
59 | nt.assert_equal(testfile.read(), "\n".join(hist)) | |
|
63 | 60 | finally: |
|
64 | 61 | # Restore history manager |
|
65 | 62 | ip.history_manager = hist_manager_ori |
|
63 | ||
|
64 | def test_extract_hist_ranges(): | |
|
65 | instr = "1 2/3 ~4/5-6 ~4/7-~4/9 ~9/2-~7/5" | |
|
66 | expected = [(0, 1, 2), # 0 == current session | |
|
67 | (2, 3, 4), | |
|
68 | (-4, 5, 7), | |
|
69 | (-4, 7, 10), | |
|
70 | (-9, 2, None), # None == to end | |
|
71 | (-8, 1, None), | |
|
72 | (-7, 1, 6)] | |
|
73 | actual = list(extract_hist_ranges(instr)) | |
|
74 | nt.assert_equal(actual, expected) |
@@ -62,7 +62,7 b' def doctest_hist_f():' | |||
|
62 | 62 | |
|
63 | 63 | In [10]: tfile = tempfile.mktemp('.py','tmp-ipython-') |
|
64 | 64 | |
|
65 | In [11]: %hist -n -f $tfile 3 | |
|
65 | In [11]: %hist -nl -f $tfile 3 | |
|
66 | 66 | |
|
67 | 67 | In [13]: import os; os.unlink(tfile) |
|
68 | 68 | """ |
@@ -80,7 +80,7 b' def doctest_hist_r():' | |||
|
80 | 80 | |
|
81 | 81 | In [2]: x=1 |
|
82 | 82 | |
|
83 | In [3]: %hist -r 2 | |
|
83 | In [3]: %hist -rl 2 | |
|
84 | 84 | x=1 # random |
|
85 | 85 | %hist -r 2 |
|
86 | 86 | """ |
@@ -150,36 +150,14 b' def doctest_hist_op():' | |||
|
150 | 150 | <...s instance at ...> |
|
151 | 151 | >>> |
|
152 | 152 | """ |
|
153 | ||
|
154 | def test_shist(): | |
|
155 | # Simple tests of ShadowHist class - test generator. | |
|
156 | import os, shutil, tempfile | |
|
157 | ||
|
158 | from IPython.utils import pickleshare | |
|
159 | from IPython.core.history import ShadowHist | |
|
160 | ||
|
161 | tfile = tempfile.mktemp('','tmp-ipython-') | |
|
162 | ||
|
163 | db = pickleshare.PickleShareDB(tfile) | |
|
164 | s = ShadowHist(db, get_ipython()) | |
|
165 | s.add('hello') | |
|
166 | s.add('world') | |
|
167 | s.add('hello') | |
|
168 | s.add('hello') | |
|
169 | s.add('karhu') | |
|
170 | ||
|
171 | yield nt.assert_equals,s.all(),[(1, 'hello'), (2, 'world'), (3, 'karhu')] | |
|
172 | ||
|
173 | yield nt.assert_equal,s.get(2),'world' | |
|
174 | ||
|
175 | shutil.rmtree(tfile) | |
|
176 | ||
|
153 | ||
|
177 | 154 | def test_macro(): |
|
178 | 155 | ip = get_ipython() |
|
179 | 156 | ip.history_manager.reset() # Clear any existing history. |
|
180 | 157 | cmds = ["a=1", "def b():\n return a**2", "print(a,b())"] |
|
181 | for cmd in cmds: | |
|
182 | ip.history_manager.store_inputs(cmd) | |
|
158 | for i, cmd in enumerate(cmds, start=1): | |
|
159 | ip.history_manager.store_inputs(i, cmd) | |
|
160 | print i, cmd | |
|
183 | 161 | ip.magic("macro test 1-3") |
|
184 | 162 | nt.assert_equal(ip.user_ns["test"].value, "\n".join(cmds)+"\n") |
|
185 | 163 |
General Comments 0
You need to be logged in to leave comments.
Login now