"""
Tests autosuggestion using pexpect.
"""
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test.lldbpexpect import PExpectTest
def cursor_horizontal_abs(s):
return "\x1b[" + str(len(s) + 1) + "G"
class TestCase(PExpectTest):
ANSI_FAINT = "\x1b[2m"
ANSI_RESET = "\x1b[0m"
ANSI_RED = "\x1b[31m"
ANSI_CYAN = "\x1b[36m"
@skipIfAsan
@skipIfEditlineSupportMissing
def test_autosuggestion_add_spaces(self):
self.launch(
use_colors=True,
extra_args=[
"-o",
"settings set show-autosuggestion true",
"-o",
"settings set use-color true",
],
)
self.expect("help frame var")
self.expect("help frame info")
self.child.send("help frame v")
self.child.expect_exact(
cursor_horizontal_abs("(lldb) help frame ")
+ "v"
+ self.ANSI_FAINT
+ "ar"
+ self.ANSI_RESET
+ " "
)
self.quit()
@skipIfAsan
@skipIfEditlineSupportMissing
def test_autosuggestion(self):
self.launch(
use_colors=True,
extra_args=[
"-o",
"settings set show-autosuggestion true",
"-o",
"settings set use-color true",
],
)
ctrl_f = "\x06"
delete = chr(127)
frame_output_needle = "Syntax: frame <subcommand>"
self.expect("help frame", substrs=[frame_output_needle])
self.child.send("hel")
self.child.expect_exact(
cursor_horizontal_abs("(lldb) he")
+ "l"
+ self.ANSI_FAINT
+ "p frame"
+ self.ANSI_RESET
)
self.child.send(ctrl_f + "\n")
self.child.expect_exact(frame_output_needle)
self.child.send("hel" + ctrl_f + ctrl_f + "\n")
self.child.expect_exact(frame_output_needle)
self.child.send("hel\t" + ctrl_f + "\n")
self.child.expect_exact(frame_output_needle)
self.child.send("a1234" + 5 * delete + "hel" + ctrl_f + "\n")
self.child.expect_exact(frame_output_needle)
self.child.send("help x" + delete + ctrl_f + "\n")
self.child.expect_exact(frame_output_needle)
self.child.send("help frame variable\n")
self.child.send("help fr")
self.child.expect_exact(self.ANSI_FAINT + "ame variable" + self.ANSI_RESET)
self.child.send("\n")
apropos_output_needle = "Syntax: apropos <search-word>"
self.expect("help apropos", substrs=[apropos_output_needle])
self.child.send("hel")
self.child.expect_exact(
cursor_horizontal_abs("(lldb) he")
+ "l"
+ self.ANSI_FAINT
+ "p apropos"
+ self.ANSI_RESET
)
self.child.send(ctrl_f + "\n")
self.child.expect_exact(apropos_output_needle)
breakpoint_output_needle = "Syntax: breakpoint <subcommand>"
self.child.send(ctrl_f + "help breakpoint" + "\n")
self.child.expect_exact(breakpoint_output_needle)
self.quit()
@skipIfAsan
@skipIfEditlineSupportMissing
def test_autosuggestion_custom_ansi_prefix_suffix(self):
self.launch(
use_colors=True,
extra_args=[
"-o",
"settings set show-autosuggestion true",
"-o",
"settings set use-color true",
"-o",
"settings set show-autosuggestion-ansi-prefix ${ansi.fg.red}",
"-o",
"setting set show-autosuggestion-ansi-suffix ${ansi.fg.cyan}",
],
)
self.child.send("help frame variable\n")
self.child.send("help fr")
self.child.expect_exact(self.ANSI_RED + "ame variable" + self.ANSI_CYAN)
self.child.send("\n")
self.quit()