"""
Test that the 'gui' displays long lines/names correctly without overruns.
"""
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test.lldbpexpect import PExpectTest
class GuiViewLargeCommandTest(PExpectTest):
@skipIfAsan
@skipIfCursesSupportMissing
@skipIfRemote
@expectedFailureNetBSD
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
def test_gui(self):
self.build()
self.launch(executable=self.getBuildArtifact("a.out"), dimensions=(100, 80))
self.expect(
'br set -f main.c -p "// Break here"', substrs=["Breakpoint 1", "address ="]
)
self.expect("run", substrs=["stop reason ="])
escape_key = chr(27).encode()
left_key = chr(27) + "OD"
right_key = chr(27) + "OC"
ctrl_l = chr(12)
self.child.sendline("gui")
self.child.expect_exact("Sources")
self.child.expect_exact(
"int a_variable_with_a_very_looooooooooooooooooooooooooo" + chr(27)
)
self.child.expect_exact("int shortvar = 1;" + chr(27))
self.child.expect_exact("<<< Thread 1: breakpoint 1.1" + chr(27))
self.child.expect_exact("Variables")
self.child.expect_exact(
"(int) a_variable_with_a_very_looooooooooooooooooooooooooooooo" + chr(27)
)
self.child.expect_exact("(int) shortvar = 1" + chr(27))
self.child.send(right_key)
self.child.send(right_key)
self.child.send(ctrl_l)
self.child.expect_exact(
"int a_variable_with_a_very_looooooooooooooooooooooooooooo" + chr(27)
)
self.child.send(left_key)
self.child.send(left_key)
self.child.send(ctrl_l)
self.child.expect_exact(
"int a_variable_with_a_very_looooooooooooooooooooooooooo" + chr(27)
)
self.child.send(escape_key)
self.expect_prompt()
self.quit()