use of com.google.security.zynamics.zylib.disassembly.IReference in project binnavi by google.
the class COperandTreeNodeTest method testAddReference.
@Test
public void testAddReference() throws CouldntSaveDataException {
final COperandTreeNode node = new COperandTreeNode(1, 1, "value", m_replacement, m_references, m_provider, module.getTypeManager(), module.getContent().getTypeInstanceContainer());
assertNotNull(node);
final INaviOperandTreeNodeListener listener = new CNaviOperandTreeNodeListenerAdapter();
node.addListener(listener);
final IReference reference = new CReference(new CAddress(0x2132321L), ReferenceType.DATA_STRING);
node.addReference(reference);
try {
node.addReference(null);
fail();
} catch (final NullPointerException e) {
}
try {
node.addReference(reference);
fail();
} catch (final IllegalArgumentException e) {
}
}
use of com.google.security.zynamics.zylib.disassembly.IReference in project binnavi by google.
the class COperandTreeNodeTest method testDeleteReference.
@Test
public void testDeleteReference() throws CouldntSaveDataException, CouldntDeleteException {
final COperandTreeNode node = new COperandTreeNode(1, 1, "value", m_replacement, m_references, m_provider, module.getTypeManager(), module.getContent().getTypeInstanceContainer());
assertNotNull(node);
final INaviOperandTreeNodeListener listener = new CNaviOperandTreeNodeListenerAdapter();
node.addListener(listener);
final IReference reference = new CReference(new CAddress(0x2132321L), ReferenceType.DATA_STRING);
node.addReference(reference);
assertEquals(2, node.getReferences().size());
node.deleteReference(reference);
assertEquals(1, node.getReferences().size());
try {
node.deleteReference(null);
fail();
} catch (final NullPointerException e) {
}
try {
node.deleteReference(reference);
fail();
} catch (final IllegalArgumentException e) {
}
}
use of com.google.security.zynamics.zylib.disassembly.IReference in project binnavi by google.
the class COperandTreeNodeTest method testMiscFunctions.
@Test
public void testMiscFunctions() throws CouldntSaveDataException {
final COperandTreeNode node = new COperandTreeNode(1, 1, "value", m_replacement, m_references, m_provider, module.getTypeManager(), module.getContent().getTypeInstanceContainer());
assertNotNull(node);
final INaviOperandTreeNodeListener listener = new CNaviOperandTreeNodeListenerAdapter();
node.addListener(listener);
final IReference reference = new CReference(new CAddress(0x2132321L), ReferenceType.DATA_STRING);
node.addReference(reference);
assertNotNull(node.getDisplayStyle());
assertEquals(1, node.getId());
assertNull(node.getOperand());
assertEquals("value", node.getValue());
node.setDisplayStyle(OperandDisplayStyle.UNSIGNED_HEXADECIMAL);
try {
node.setDisplayStyle(null);
fail();
} catch (final NullPointerException e) {
}
node.setDisplayStyle(OperandDisplayStyle.UNSIGNED_HEXADECIMAL);
node.setId(12345678);
node.removeListener(listener);
node.toString();
}
use of com.google.security.zynamics.zylib.disassembly.IReference in project binnavi by google.
the class InstructionTest method testReil.
@Test
public void testReil() throws InternalTranslationException, CouldntLoadDataException, LoadCancelledException {
final SQLProvider provider = new MockSqlProvider();
final CModule internalModule = new CModule(123, "Name", "Comment", new Date(), new Date(), "12345678123456781234567812345678", "1234567812345678123456781234567812345678", 55, 66, new CAddress(0x555), new CAddress(0x666), new DebuggerTemplate(1, "Mock Debugger", "localhaus", 88, provider), null, Integer.MAX_VALUE, false, provider);
internalModule.load();
final COperandTreeNode rootNode1 = new COperandTreeNode(1, IOperandTree.NODE_TYPE_REGISTER_ID, "eax", null, new ArrayList<IReference>(), provider, internalModule.getTypeManager(), internalModule.getContent().getTypeInstanceContainer());
final COperandTreeNode rootNode2 = new COperandTreeNode(1, IOperandTree.NODE_TYPE_REGISTER_ID, "ebx", null, new ArrayList<IReference>(), provider, internalModule.getTypeManager(), internalModule.getContent().getTypeInstanceContainer());
final COperandTree operand1 = new COperandTree(rootNode1, provider, internalModule.getTypeManager(), internalModule.getContent().getTypeInstanceContainer());
final COperandTree operand2 = new COperandTree(rootNode2, provider, internalModule.getTypeManager(), internalModule.getContent().getTypeInstanceContainer());
final List<COperandTree> operands = Lists.newArrayList(operand1, operand2);
final CInstruction internalInstruction = new CInstruction(false, internalModule, new CAddress(0x123), "mov", operands, new byte[] { 1, 2, 3 }, "x86-32", provider);
final Instruction instruction = new Instruction(internalInstruction);
instruction.getReilCode();
}
use of com.google.security.zynamics.zylib.disassembly.IReference in project binnavi by google.
the class InstructionTest method testCommentInitialization.
@Test
public void testCommentInitialization() throws CouldntLoadDataException, LoadCancelledException {
final SQLProvider provider = new MockSqlProvider();
final CModule internalModule = new CModule(123, "Name", "Comment", new Date(), new Date(), "12345678123456781234567812345678", "1234567812345678123456781234567812345678", 55, 66, new CAddress(0x555), new CAddress(0x666), new DebuggerTemplate(1, "Mock Debugger", "localhaus", 88, provider), null, Integer.MAX_VALUE, false, provider);
internalModule.load();
final COperandTreeNode rootNode1 = new COperandTreeNode(1, IOperandTree.NODE_TYPE_REGISTER_ID, "eax", null, new ArrayList<IReference>(), provider, internalModule.getTypeManager(), internalModule.getContent().getTypeInstanceContainer());
final COperandTreeNode rootNode2 = new COperandTreeNode(1, IOperandTree.NODE_TYPE_REGISTER_ID, "ebx", null, new ArrayList<IReference>(), provider, internalModule.getTypeManager(), internalModule.getContent().getTypeInstanceContainer());
final COperandTree operand1 = new COperandTree(rootNode1, provider, internalModule.getTypeManager(), internalModule.getContent().getTypeInstanceContainer());
final COperandTree operand2 = new COperandTree(rootNode2, provider, internalModule.getTypeManager(), internalModule.getContent().getTypeInstanceContainer());
final List<COperandTree> operands = Lists.newArrayList(operand1, operand2);
final CInstruction internalInstruction = new CInstruction(false, internalModule, new CAddress(0x123), "mov", operands, new byte[] { 1, 2, 3 }, "x86-32", provider);
final Instruction instruction = new Instruction(internalInstruction);
final MockInstructionListener listener = new MockInstructionListener();
instruction.addListener(listener);
final ArrayList<IComment> comment = Lists.<IComment>newArrayList(new CComment(null, CommonTestObjects.TEST_USER_1, null, "Hannes"));
instruction.initializeComment(comment);
assertEquals(comment, internalInstruction.getGlobalComment());
assertEquals(comment, instruction.getComment());
// TODO (timkornau): check if double messages are what we want here of rather not.
// assertEquals("InitializedComment;", listener.events);
instruction.removeListener(listener);
}
Aggregations