From 2ac3fe7b1b3bb80adb2e32933649f20eefa38f16 Mon Sep 17 00:00:00 2001 From: dragonmacher <48328597+dragonmacher@users.noreply.github.com> Date: Fri, 15 Nov 2024 13:09:38 -0500 Subject: [PATCH] test fixes --- .../ghidra/app/plugin/core/diff/DiffTest.java | 31 ++++++------------- 1 file changed, 9 insertions(+), 22 deletions(-) diff --git a/Ghidra/Features/ProgramDiff/src/test.slow/java/ghidra/app/plugin/core/diff/DiffTest.java b/Ghidra/Features/ProgramDiff/src/test.slow/java/ghidra/app/plugin/core/diff/DiffTest.java index fc5da4e097..ae3723456a 100644 --- a/Ghidra/Features/ProgramDiff/src/test.slow/java/ghidra/app/plugin/core/diff/DiffTest.java +++ b/Ghidra/Features/ProgramDiff/src/test.slow/java/ghidra/app/plugin/core/diff/DiffTest.java @@ -35,8 +35,6 @@ import docking.widgets.fieldpanel.FieldPanel; import docking.widgets.fieldpanel.support.FieldLocation; import docking.widgets.tab.GTabPanel; import ghidra.app.cmd.data.CreateDataCmd; -import ghidra.app.events.ProgramLocationPluginEvent; -import ghidra.app.events.ProgramSelectionPluginEvent; import ghidra.app.plugin.core.progmgr.MultiTabPlugin; import ghidra.app.util.viewer.field.OpenCloseField; import ghidra.app.util.viewer.listingpanel.ListingModel; @@ -208,8 +206,7 @@ public class DiffTest extends DiffTestAdapter { assertNotNull(nextDiff); assertTrue(nextDiff.isEnabled()); - tool.firePluginEvent(new ProgramLocationPluginEvent("test", - new ProgramLocation(program, addr("1004c61")), program)); + goTo(tool, program, "1004c61"); assertEquals(addr("1004c61"), getDiffAddress()); assertEquals(cb.getCurrentSelection(), new ProgramSelection()); @@ -230,8 +227,7 @@ public class DiffTest extends DiffTestAdapter { assertNotNull(nextDiff); assertTrue(nextDiff.isEnabled()); - tool.firePluginEvent(new ProgramLocationPluginEvent("test", - new ProgramLocation(program, addr("100f3ff")), program)); + goTo(tool, program, "100f3ff"); assertEquals(addr("100f3ff"), getDiffAddress()); assertEquals(cb.getCurrentSelection(), new ProgramSelection()); @@ -252,8 +248,7 @@ public class DiffTest extends DiffTestAdapter { assertNotNull(nextDiff); assertTrue(nextDiff.isEnabled()); - tool.firePluginEvent(new ProgramLocationPluginEvent("test", - new ProgramLocation(program, addr("1004c61")), program)); + goTo(tool, program, "1004c61"); assertEquals(addr("1004c61"), getDiffAddress()); assertEquals(cb.getCurrentSelection(), new ProgramSelection()); @@ -263,8 +258,7 @@ public class DiffTest extends DiffTestAdapter { assertEquals(cb.getCurrentSelection(), new ProgramSelection(addr("100415a"), addr("100415a"))); - tool.firePluginEvent(new ProgramLocationPluginEvent("test", - new ProgramLocation(program, addr("1002055")), program)); + goTo(tool, program, "1002055"); assertEquals(addr("1002055"), getDiffAddress()); invokeLater(prevDiff); @@ -284,8 +278,7 @@ public class DiffTest extends DiffTestAdapter { assertNotNull(diffDetails); assertTrue(diffDetails.isEnabled()); - tool.firePluginEvent(new ProgramLocationPluginEvent("test", - new ProgramLocation(program, addr("1004c61")), program)); + goTo(tool, program, "1004c61"); assertEquals(addr("1004c61"), getDiffAddress()); assertEquals(cb.getCurrentSelection(), new ProgramSelection()); @@ -335,8 +328,7 @@ public class DiffTest extends DiffTestAdapter { assertNotNull(diffDetails); assertTrue(diffDetails.isEnabled()); - tool.firePluginEvent(new ProgramLocationPluginEvent("test", - new ProgramLocation(program, addr("100")), program)); + goTo(tool, program, "100"); assertEquals(addr("100"), getDiffAddress()); invokeLater(diffDetails); @@ -353,11 +345,8 @@ public class DiffTest extends DiffTestAdapter { assertTrue(info.indexOf("Bookmark Diffs") == -1); assertEquals(addr("100"), getDiffAddress()); - tool.firePluginEvent(new ProgramLocationPluginEvent("test", - new ProgramLocation(program, addr("1001014")), program)); + goTo(tool, program, "1001014"); assertEquals(addr("1001014"), getDiffAddress()); - invokeLater(diffDetails); - waitForSwing(); assertEquals(true, isDiffDetailsDisplayed()); // Check where there are no differences @@ -406,10 +395,8 @@ public class DiffTest extends DiffTestAdapter { diffAs.addRange(addr("1002304"), addr("1002304")); diffAs.addRange(addr("1002306"), addr("1002306")); - tool.firePluginEvent( - new ProgramSelectionPluginEvent("test", new ProgramSelection(as), program)); - tool.firePluginEvent(new ProgramLocationPluginEvent("test", - new ProgramLocation(program, addr("1001000")), program)); + makeSelection(tool, program, as); + goTo(tool, program, "1001000"); assertTrue(setPgm2Selection.isEnabled()); invokeLater(setPgm2Selection);