Files
Andry Ogorodnik b3fca62496 Enhancing the local variables displaying
This patch is for displaying "local variables" as a root node,
and kids are local variables themselves, represented in the
variables view's "regular way"

For eng/ide/gnatstudio#529
2025-04-23 09:23:47 +00:00

48 lines
1.5 KiB
Python

"""
Commands with arguments (for example: next 4) should properly update the
Variables view.
"""
import GPS
from gs_utils.internal.utils import *
VALUE_COLUMN = 1
@run_test_driver
def test_driver():
buf = GPS.EditorBuffer.get(GPS.File("main.adb"))
buf.current_view().goto(buf.at(6, 1))
GPS.execute_action("debug set line breakpoint")
GPS.execute_action("Build & Debug Number 1")
yield hook("debugger_started")
yield wait_idle()
GPS.execute_action("open debugger variables window")
yield wait_for_mdi_child("Variables")
view = GPS.MDI.get("Variables")
tree = get_widgets_by_type(Gtk.TreeView, view.pywidget())[0]
model = tree.get_model()
# Add the variable Foo
debug = GPS.Debugger.get()
yield wait_until_not_busy(debug)
# Run and verify the value
debug.send("run")
yield wait_until_not_busy(debug)
debug.send("graph display Foo")
yield wait_until_not_busy(debug)
gps_assert(dump_tree_model(model, VALUE_COLUMN), ["1"], "Wrong value after break")
# Check the next command alone
debug.send("next")
yield wait_until_not_busy(debug)
gps_assert(dump_tree_model(model, VALUE_COLUMN), ["2"], "Wrong value after break")
# Check the next command with an argument
debug.send("next 4")
yield wait_until_not_busy(debug)
gps_assert(dump_tree_model(model, VALUE_COLUMN), ["6"], "Wrong value after break")
# Clean the Variables view between different debugger runs
GPS.execute_action("debug tree clear")