[Lldb-commits] [lldb] [lldb] Add test to document alias tab completion behaviour (PR #65760)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Fri Sep 8 06:59:50 PDT 2023
https://github.com/DavidSpickett created https://github.com/llvm/llvm-project/pull/65760:
While looking at https://github.com/llvm/llvm-project/issues/49528 I found that, happily, aliases can now be tab completed.
However, if there is a built-in match that will always be taken. Which is a bit surprising, though logical if we don't want people really messing up their commands I guess.
Meaning "b" tab completes to our built-in breakpoint alias, before it looks at any of the aliases. "bf" doesn't match "b", so it looks through the aliases.
I didn't find any tests for this in the obvious places, so this adds some.
>From bba43758d1cc7c62d353872adab9012371d63b11 Mon Sep 17 00:00:00 2001
From: David Spickett <david.spickett at linaro.org>
Date: Fri, 8 Sep 2023 13:56:12 +0000
Subject: [PATCH] [lldb] Add test to document alias tab completion behaviour
While looking at https://github.com/llvm/llvm-project/issues/49528
I found that, happily, aliases can now be tab completed.
However, if there is a built-in match that will always be taken.
Which is a bit surprising, though logical if we don't want people
really messing up their commands I guess.
Meaning "b" tab completes to our built-in breakpoint alias,
before it looks at any of the aliases. "bf" doesn't match "b",
so it looks through the aliases.
I didn't find any tests for this in the obvious places,
so this adds some.
---
.../completion/TestCompletion.py | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/lldb/test/API/functionalities/completion/TestCompletion.py b/lldb/test/API/functionalities/completion/TestCompletion.py
index df7c89032f29fa0..cc2a20dcd0dca76 100644
--- a/lldb/test/API/functionalities/completion/TestCompletion.py
+++ b/lldb/test/API/functionalities/completion/TestCompletion.py
@@ -622,6 +622,25 @@ def test_command_delete(self):
def test_command_unalias(self):
self.complete_from_to("command unalias ima", "command unalias image")
+ def test_command_aliases(self):
+ self.runCmd("command alias brkpt breakpoint")
+ # If there is an unambiguous completion from the built-in commands,
+ # we choose that.
+ self.complete_from_to("br", "breakpoint")
+ # Only if there is not, do we then look for an unambiguous completion
+ # from the user defined aliases.
+ self.complete_from_to("brk", "brkpt")
+
+ # Aliases are included when there's no exact match.
+ self.runCmd("command alias play breakpoint")
+ self.complete_from_to("pl", ["plugin", "platform", "play"])
+
+ # That list can also contain only aliases if there's no built-ins to
+ # match.
+ self.runCmd("command alias test_1 breakpoint")
+ self.runCmd("command alias test_2 breakpoint")
+ self.complete_from_to("test_", ["test_1", "test_2"])
+
def test_completion_description_commands(self):
"""Test descriptions of top-level command completions"""
self.check_completion_with_desc(
More information about the lldb-commits
mailing list