aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiroslav <ttahabatt@gmail.com>2018-07-19 16:56:34 +0300
committerMiroslav <ttahabatt@gmail.com>2018-07-19 16:56:34 +0300
commitdcb3de40b12bafd07979052647e71a172d55b360 (patch)
tree0b98fac9ed0c51d406999e24a5d85864938e76c6
parentffbd7c20e56ad65dc93de93129344a6e51d79344 (diff)
downloadmitmproxy-dcb3de40b12bafd07979052647e71a172d55b360.tar.gz
mitmproxy-dcb3de40b12bafd07979052647e71a172d55b360.tar.bz2
mitmproxy-dcb3de40b12bafd07979052647e71a172d55b360.zip
Some refactoring. New test case.
-rw-r--r--mitmproxy/tools/console/commander/commander.py17
-rw-r--r--mitmproxy/tools/console/statusbar.py3
-rw-r--r--test/mitmproxy/tools/console/test_commander.py27
3 files changed, 30 insertions, 17 deletions
diff --git a/mitmproxy/tools/console/commander/commander.py b/mitmproxy/tools/console/commander/commander.py
index fe21516a..e8550f86 100644
--- a/mitmproxy/tools/console/commander/commander.py
+++ b/mitmproxy/tools/console/commander/commander.py
@@ -160,7 +160,7 @@ class CommandBuffer:
class CommandHistory:
def __init__(self, master: mitmproxy.master.Master, size: int=30) -> None:
- self.history: collections.deque = collections.deque(
+ self.saved_commands: collections.deque = collections.deque(
[CommandBuffer(master, "")],
maxlen=size
)
@@ -168,27 +168,28 @@ class CommandHistory:
@property
def last_index(self):
- return len(self.history) - 1
+ return len(self.saved_commands) - 1
def get_next(self) -> typing.Optional[CommandBuffer]:
if self.index < self.last_index:
self.index = self.index + 1
- return self.history[self.index]
+ return self.saved_commands[self.index]
return None
def get_prev(self) -> typing.Optional[CommandBuffer]:
if self.index > 0:
self.index = self.index - 1
- return self.history[self.index]
+ return self.saved_commands[self.index]
return None
def add_command(self, command: CommandBuffer, execution: bool=False) -> None:
if self.index == self.last_index or execution:
- last_item_empty = not self.history[-1].text
- if self.history[-1].text == command.text or (last_item_empty and execution):
- self.history[-1] = copy.copy(command)
+ last_item = self.saved_commands[-1]
+ last_item_empty = not last_item.text
+ if last_item.text == command.text or (last_item_empty and execution):
+ self.saved_commands[-1] = copy.copy(command)
else:
- self.history.append(command)
+ self.saved_commands.append(command)
if not execution and self.index < self.last_index:
self.index += 1
if execution:
diff --git a/mitmproxy/tools/console/statusbar.py b/mitmproxy/tools/console/statusbar.py
index e0cbb05f..2d32f487 100644
--- a/mitmproxy/tools/console/statusbar.py
+++ b/mitmproxy/tools/console/statusbar.py
@@ -100,7 +100,8 @@ class ActionBar(urwid.WidgetWrap):
def sig_prompt_command(self, sender, partial=""):
signals.focus.send(self, section="footer")
- self._w = commander.CommandEdit(self.master, partial, self.command_history)
+ self._w = commander.CommandEdit(self.master, partial,
+ self.command_history)
self.prompting = commandexecutor.CommandExecutor(self.master)
def sig_prompt_onekey(self, sender, prompt, keys, callback, args=()):
diff --git a/test/mitmproxy/tools/console/test_commander.py b/test/mitmproxy/tools/console/test_commander.py
index d9daa673..b5e226fe 100644
--- a/test/mitmproxy/tools/console/test_commander.py
+++ b/test/mitmproxy/tools/console/test_commander.py
@@ -41,20 +41,31 @@ class TestCommandHistory:
commands = ["command1", "command2"]
history, tctx_master = self.fill_history(commands)
- history_commands = [buf.text for buf in history.history]
- assert history_commands == [""] + commands
+ saved_commands = [buf.text for buf in history.saved_commands]
+ assert saved_commands == [""] + commands
- # The history size is only 3. So, we forget the first one command,
- # when adding fourth command
+ # The history size is only 3. So, we forget the first
+ # one command, when adding fourth command
cbuf = commander.CommandBuffer(tctx_master, "command3")
history.add_command(cbuf)
- history_commands = [buf.text for buf in history.history]
- assert history_commands == commands + ["command3"]
+ saved_commands = [buf.text for buf in history.saved_commands]
+ assert saved_commands == commands + ["command3"]
# Commands with the same text are not repeated in the history one by one
history.add_command(cbuf)
- history_commands = [buf.text for buf in history.history]
- assert history_commands == commands + ["command3"]
+ saved_commands = [buf.text for buf in history.saved_commands]
+ assert saved_commands == commands + ["command3"]
+
+ # adding command in execution mode sets index at the beginning of the history
+ # and replace the last command buffer if it is empty or has the same text
+ cbuf = commander.CommandBuffer(tctx_master, "")
+ history.add_command(cbuf)
+ history.index = 0
+ cbuf = commander.CommandBuffer(tctx_master, "command4")
+ history.add_command(cbuf, True)
+ assert history.index == history.last_index
+ saved_commands = [buf.text for buf in history.saved_commands]
+ assert saved_commands == ["command2", "command3", "command4"]
def test_get_next(self):
commands = ["command1", "command2"]