mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-27 21:05:33 +08:00
GP-6720: Add tests to catch forgotten version updates.
This commit is contained in:
+6
@@ -320,6 +320,12 @@ public class TraceRmiPythonClientTest extends AbstractGhidraHeadedDebuggerTest {
|
||||
waitFor(() -> tb.trace.getCurrentTransactionInfo() == null);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTomlVersionConsistency() throws IOException {
|
||||
List<String> toml = readToml("Debugger-rmi-trace");
|
||||
assertVersionMatchesApplication(parseVersionFromToml(toml));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testConnect() throws Exception {
|
||||
runThrowError(addr -> """
|
||||
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
/* ###
|
||||
* IP: GHIDRA
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package agent.dbgeng.rmi;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import ghidra.app.plugin.core.debug.gui.AbstractGhidraHeadedDebuggerTest;
|
||||
|
||||
public class DbgEngVersionTest extends AbstractGhidraHeadedDebuggerTest {
|
||||
|
||||
List<String> toml;
|
||||
|
||||
@Before
|
||||
public void read() throws IOException {
|
||||
toml = readToml("Debugger-agent-dbgeng");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTomlVersionConsistency() throws IOException {
|
||||
assertVersionMatchesApplication(parseVersionFromToml(toml));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTomlGhidratraceDepVersion() throws IOException {
|
||||
assertVersionMatchesApplication(parseGhidraTraceDepFromToml(toml));
|
||||
}
|
||||
}
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
/* ###
|
||||
* IP: GHIDRA
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package agent.drgn.rmi;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import ghidra.app.plugin.core.debug.gui.AbstractGhidraHeadedDebuggerTest;
|
||||
|
||||
public class DrgnVersionTest extends AbstractGhidraHeadedDebuggerTest {
|
||||
|
||||
List<String> toml;
|
||||
|
||||
@Before
|
||||
public void read() throws IOException {
|
||||
toml = readToml("Debugger-agent-drgn");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTomlVersionConsistency() throws IOException {
|
||||
assertVersionMatchesApplication(parseVersionFromToml(toml));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTomlGhidratraceDepVersion() throws IOException {
|
||||
assertVersionMatchesApplication(parseGhidraTraceDepFromToml(toml));
|
||||
}
|
||||
}
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
/* ###
|
||||
* IP: GHIDRA
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package agent.gdb.rmi;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import ghidra.app.plugin.core.debug.gui.AbstractGhidraHeadedDebuggerTest;
|
||||
|
||||
public class GdbVersionTest extends AbstractGhidraHeadedDebuggerTest {
|
||||
|
||||
List<String> toml;
|
||||
|
||||
@Before
|
||||
public void read() throws IOException {
|
||||
toml = readToml("Debugger-agent-gdb");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTomlVersionConsistency() throws IOException {
|
||||
assertVersionMatchesApplication(parseVersionFromToml(toml));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTomlGhidratraceDepVersion() throws IOException {
|
||||
assertVersionMatchesApplication(parseGhidraTraceDepFromToml(toml));
|
||||
}
|
||||
}
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
/* ###
|
||||
* IP: GHIDRA
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package agent.lldb.rmi;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import ghidra.app.plugin.core.debug.gui.AbstractGhidraHeadedDebuggerTest;
|
||||
|
||||
public class LldbVersionTest extends AbstractGhidraHeadedDebuggerTest {
|
||||
|
||||
List<String> toml;
|
||||
|
||||
@Before
|
||||
public void read() throws IOException {
|
||||
toml = readToml("Debugger-agent-lldb");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTomlVersionConsistency() throws IOException {
|
||||
assertVersionMatchesApplication(parseVersionFromToml(toml));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTomlGhidratraceDepVersion() throws IOException {
|
||||
assertVersionMatchesApplication(parseGhidraTraceDepFromToml(toml));
|
||||
}
|
||||
}
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
/* ###
|
||||
* IP: GHIDRA
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package agent.x64dbg.rmi;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import ghidra.app.plugin.core.debug.gui.AbstractGhidraHeadedDebuggerTest;
|
||||
|
||||
public class X64dbgVersionTest extends AbstractGhidraHeadedDebuggerTest {
|
||||
|
||||
List<String> toml;
|
||||
|
||||
@Before
|
||||
public void read() throws IOException {
|
||||
toml = readToml("Debugger-agent-x64dbg");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTomlVersionConsistency() throws IOException {
|
||||
assertVersionMatchesApplication(parseVersionFromToml(toml));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTomlGhidratraceDepVersion() throws IOException {
|
||||
assertVersionMatchesApplication(parseGhidraTraceDepFromToml(toml));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user