python: refactor tests, so it is possible to reuse print_insn_detail() of all archs
This commit is contained in:
parent
fc3636a0b8
commit
1098329f40
|
@ -1,10 +1,13 @@
|
|||
#!/usr/bin/env python
|
||||
from __future__ import print_function
|
||||
# Capstone Python bindings, by Nguyen Anh Quynnh <aquynh@gmail.com>
|
||||
|
||||
from __future__ import print_function
|
||||
from capstone import *
|
||||
import binascii
|
||||
import sys
|
||||
|
||||
from xprint import to_hex, to_x, to_x_32
|
||||
|
||||
_python3 = sys.version_info.major == 3
|
||||
|
||||
|
||||
|
@ -43,32 +46,6 @@ all_tests = (
|
|||
)
|
||||
|
||||
|
||||
def to_hex(s):
|
||||
if _python3:
|
||||
return " ".join("0x{0:02x}".format(c) for c in s) # <-- Python 3 is OK
|
||||
else:
|
||||
return " ".join("0x{0:02x}".format(ord(c)) for c in s)
|
||||
|
||||
def to_x(s):
|
||||
from struct import pack
|
||||
if not s: return '0'
|
||||
x = pack(">q", s)
|
||||
while x[0] in ('\0', 0): x = x[1:]
|
||||
if _python3:
|
||||
return "".join("{0:02x}".format(c) for c in x) # <-- Python 3 is OK
|
||||
else:
|
||||
return "".join("{0:02x}".format(ord(c)) for c in x)
|
||||
|
||||
def to_x_32(s):
|
||||
from struct import pack
|
||||
if not s: return '0'
|
||||
x = pack(">i", s)
|
||||
while x[0] in ('\0', 0): x = x[1:]
|
||||
if _python3:
|
||||
return "".join("{0:02x}".format(c) for c in x) # <-- Python 3 is OK
|
||||
else:
|
||||
return "".join("{0:02x}".format(ord(c)) for c in x)
|
||||
|
||||
# ## Test cs_disasm_quick()
|
||||
def test_cs_disasm_quick():
|
||||
for arch, mode, code, comment, syntax in all_tests:
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
#!/usr/bin/env python
|
||||
from __future__ import print_function
|
||||
|
||||
# Capstone Python bindings, by Nguyen Anh Quynnh <aquynh@gmail.com>
|
||||
|
||||
from __future__ import print_function
|
||||
from capstone import *
|
||||
from capstone.arm import *
|
||||
from test import to_hex, to_x, to_x_32
|
||||
from xprint import to_hex, to_x, to_x_32
|
||||
|
||||
|
||||
ARM_CODE = b"\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x02\x03\x0e\x00\x00\xa0\xe3\x02\x30\xc1\xe7\x00\x00\x53\xe3"
|
||||
ARM_CODE2 = b"\xd1\xe8\x00\xf0\xf0\x24\x04\x07\x1f\x3c\xf2\xc0\x00\x00\x4f\xf0\x00\x01\x46\x6c"
|
||||
|
@ -19,9 +20,8 @@ all_tests = (
|
|||
(CS_ARCH_ARM, CS_MODE_THUMB, THUMB_CODE2, "Thumb-2"),
|
||||
)
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
def print_insn_detail(insn):
|
||||
|
||||
def print_insn_detail(insn):
|
||||
# print address, mnemonic and operands
|
||||
print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
|
||||
|
||||
|
@ -70,6 +70,10 @@ def test_class():
|
|||
if not insn.cc in [ARM_CC_AL, ARM_CC_INVALID]:
|
||||
print("\tCode condition: %u" % insn.cc)
|
||||
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
|
||||
for (arch, mode, code, comment) in all_tests:
|
||||
print("*" * 16)
|
||||
print("Platform: %s" % comment)
|
||||
|
@ -86,5 +90,6 @@ def test_class():
|
|||
except CsError as e:
|
||||
print("ERROR: %s" % e)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
test_class()
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
# Capstone Python bindings, by Nguyen Anh Quynnh <aquynh@gmail.com>
|
||||
|
||||
from __future__ import print_function
|
||||
from capstone import *
|
||||
from capstone.arm64 import *
|
||||
from test import to_hex, to_x
|
||||
from xprint import to_hex, to_x
|
||||
|
||||
|
||||
ARM64_CODE = b"\x21\x7c\x02\x9b\x21\x7c\x00\x53\x00\x40\x21\x4b\xe1\x0b\x40\xb9\x20\x04\x81\xda\x20\x08\x02\x8b"
|
||||
|
||||
all_tests = (
|
||||
(CS_ARCH_ARM64, CS_MODE_ARM, ARM64_CODE, "ARM-64"),
|
||||
)
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
def print_insn_detail(insn):
|
||||
|
||||
def print_insn_detail(insn):
|
||||
# print address, mnemonic and operands
|
||||
print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
|
||||
|
||||
|
@ -59,6 +61,10 @@ def test_class():
|
|||
if insn.update_flags:
|
||||
print("\tUpdate-flags: True")
|
||||
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
|
||||
for (arch, mode, code, comment) in all_tests:
|
||||
print("*" * 16)
|
||||
print("Platform: %s" % comment)
|
||||
|
@ -75,5 +81,6 @@ def test_class():
|
|||
except CsError as e:
|
||||
print("ERROR: %s" % e)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
test_class()
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
from __future__ import print_function
|
||||
from capstone import *
|
||||
|
||||
|
||||
X86_CODE16 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00"
|
||||
X86_CODE32 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00"
|
||||
X86_CODE64 = b"\x55\x48\x8b\x05\xb8\x13\x00\x00"
|
||||
|
|
|
@ -4,7 +4,8 @@
|
|||
from __future__ import print_function
|
||||
from capstone import *
|
||||
import binascii
|
||||
from test import to_hex
|
||||
from xprint import to_hex
|
||||
|
||||
|
||||
X86_CODE16 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00"
|
||||
X86_CODE32 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00"
|
||||
|
|
|
@ -4,7 +4,8 @@
|
|||
from __future__ import print_function
|
||||
from capstone import *
|
||||
from capstone.mips import *
|
||||
from test import to_hex, to_x
|
||||
from xprint import to_hex, to_x
|
||||
|
||||
|
||||
MIPS_CODE = b"\x0C\x10\x00\x97\x00\x00\x00\x00\x24\x02\x00\x0c\x8f\xa2\x00\x00\x34\x21\x34\x56"
|
||||
MIPS_CODE2 = b"\x56\x34\x21\x34\xc2\x17\x01\x00"
|
||||
|
@ -14,9 +15,8 @@ all_tests = (
|
|||
(CS_ARCH_MIPS, CS_MODE_64 + CS_MODE_LITTLE_ENDIAN, MIPS_CODE2, "MIPS-64-EL (Little-endian)"),
|
||||
)
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
def print_insn_detail(insn):
|
||||
|
||||
def print_insn_detail(insn):
|
||||
# print address, mnemonic and operands
|
||||
print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
|
||||
|
||||
|
@ -43,6 +43,8 @@ def test_class():
|
|||
% (c, to_x(i.mem.disp)))
|
||||
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
for (arch, mode, code, comment) in all_tests:
|
||||
print("*" * 16)
|
||||
print("Platform: %s" % comment)
|
||||
|
|
|
@ -4,16 +4,15 @@
|
|||
from __future__ import print_function
|
||||
from capstone import *
|
||||
from capstone.ppc import *
|
||||
from test import to_x, to_hex, to_x_32
|
||||
from xprint import to_x, to_hex, to_x_32
|
||||
PPC_CODE = b"\x80\x20\x00\x00\x80\x3f\x00\x00\x10\x43\x23\x0e\xd0\x44\x00\x80\x4c\x43\x22\x02\x2d\x03\x00\x80\x7c\x43\x20\x14\x7c\x43\x20\x93\x4f\x20\x00\x21\x4c\xc8\x00\x21"
|
||||
|
||||
all_tests = (
|
||||
(CS_ARCH_PPC, CS_MODE_BIG_ENDIAN, PPC_CODE, "PPC-64"),
|
||||
)
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
def print_insn_detail(insn):
|
||||
|
||||
def print_insn_detail(insn):
|
||||
# print address, mnemonic and operands
|
||||
print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
|
||||
|
||||
|
@ -46,6 +45,10 @@ def test_class():
|
|||
if insn.update_cr0:
|
||||
print("\tUpdate-CR0: True")
|
||||
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
|
||||
for (arch, mode, code, comment) in all_tests:
|
||||
print("*" * 16)
|
||||
print("Platform: %s" % comment)
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
from __future__ import print_function
|
||||
from capstone import *
|
||||
import binascii
|
||||
from xprint import to_x, to_hex, to_x_32
|
||||
|
||||
from test import to_x, to_hex, to_x_32
|
||||
|
||||
X86_CODE32 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00\x00\x91\x92"
|
||||
RANDOM_CODE = b"\xed\x00\x00\x00\x00\x1a\x5a\x0f\x1f\xff\xc2\x09\x80\x00\x00\x00\x07\xf7\xeb\x2a\xff\xff\x7f\x57\xe3\x01\xff\xff\x7f\x57\xeb\x00\xf0\x00\x00\x24\xb2\x4f\x00\x78"
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
from __future__ import print_function
|
||||
from capstone import *
|
||||
from capstone.sparc import *
|
||||
from xprint import to_x, to_hex, to_x_32
|
||||
|
||||
from test import to_x, to_hex, to_x_32
|
||||
|
||||
SPARC_CODE = b"\x80\xa0\x40\x02\x85\xc2\x60\x08\x85\xe8\x20\x01\x81\xe8\x00\x00\x90\x10\x20\x01\xd5\xf6\x10\x16\x21\x00\x00\x0a\x86\x00\x40\x02\x01\x00\x00\x00\x12\xbf\xff\xff\x10\xbf\xff\xff\xa0\x02\x00\x09\x0d\xbf\xff\xff\xd4\x20\x60\x00\xd4\x4e\x00\x16\x2a\xc2\x80\x03"
|
||||
SPARCV9_CODE = b"\x81\xa8\x0a\x24\x89\xa0\x10\x20\x89\xa0\x1a\x60\x89\xa0\x00\xe0"
|
||||
|
@ -16,9 +16,8 @@ all_tests = (
|
|||
(CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN+CS_MODE_V9, SPARCV9_CODE, "SparcV9"),
|
||||
)
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
def print_insn_detail(insn):
|
||||
|
||||
def print_insn_detail(insn):
|
||||
# print address, mnemonic and operands
|
||||
print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
|
||||
|
||||
|
@ -49,6 +48,10 @@ def test_class():
|
|||
if insn.hint:
|
||||
print("\tBranch hint: %u" % insn.hint)
|
||||
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
|
||||
for (arch, mode, code, comment) in all_tests:
|
||||
print("*" * 16)
|
||||
print("Platform: %s" % comment)
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
from __future__ import print_function
|
||||
from capstone import *
|
||||
from capstone.systemz import *
|
||||
from xprint import to_x, to_hex, to_x_32
|
||||
|
||||
from test import to_x, to_hex, to_x_32
|
||||
|
||||
SYSZ_CODE = b"\xed\x00\x00\x00\x00\x1a\x5a\x0f\x1f\xff\xc2\x09\x80\x00\x00\x00\x07\xf7\xeb\x2a\xff\xff\x7f\x57\xe3\x01\xff\xff\x7f\x57\xeb\x00\xf0\x00\x00\x24\xb2\x4f\x00\x78"
|
||||
|
||||
|
@ -14,9 +14,8 @@ all_tests = (
|
|||
(CS_ARCH_SYSZ, 0, SYSZ_CODE, "SystemZ"),
|
||||
)
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
def print_insn_detail(insn):
|
||||
|
||||
def print_insn_detail(insn):
|
||||
# print address, mnemonic and operands
|
||||
print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
|
||||
|
||||
|
@ -53,6 +52,10 @@ def test_class():
|
|||
if insn.cc:
|
||||
print("\tConditional code: %u" % insn.cc)
|
||||
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
|
||||
for (arch, mode, code, comment) in all_tests:
|
||||
print("*" * 16)
|
||||
print("Platform: %s" %comment)
|
||||
|
|
|
@ -4,7 +4,8 @@
|
|||
from __future__ import print_function
|
||||
from capstone import *
|
||||
from capstone.x86 import *
|
||||
from test import to_hex, to_x, to_x_32
|
||||
from xprint import to_hex, to_x, to_x_32
|
||||
|
||||
|
||||
X86_CODE64 = b"\x55\x48\x8b\x05\xb8\x13\x00\x00"
|
||||
X86_CODE16 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00\x05\x23\x01\x00\x00\x36\x8b\x84\x91\x23\x01\x00\x00\x41\x8d\x84\x39\x89\x67\x00\x00\x8d\x87\x89\x67\x00\x00\xb4\xc6"
|
||||
|
@ -17,15 +18,14 @@ all_tests = (
|
|||
(CS_ARCH_X86, CS_MODE_64, X86_CODE64, "X86 64 (Intel syntax)", 0),
|
||||
)
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
|
||||
def print_insn_detail(mode, insn):
|
||||
def print_string_hex(comment, str):
|
||||
print(comment, end=' '),
|
||||
for c in str:
|
||||
print("0x%02x" % c, end=''),
|
||||
print()
|
||||
|
||||
def print_insn_detail(mode, insn):
|
||||
# print address, mnemonic and operands
|
||||
print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
|
||||
|
||||
|
@ -90,6 +90,9 @@ def test_class():
|
|||
print("\t\t\toperands[%u].mem.disp: 0x%s" % (c, to_x(i.mem.disp)))
|
||||
|
||||
|
||||
# ## Test class Cs
|
||||
def test_class():
|
||||
|
||||
for (arch, mode, code, comment, syntax) in all_tests:
|
||||
print("*" * 16)
|
||||
print("Platform: %s" % comment)
|
||||
|
|
|
@ -0,0 +1,35 @@
|
|||
#!/usr/bin/env python
|
||||
# Capstone Python bindings, by Nguyen Anh Quynnh <aquynh@gmail.com>
|
||||
|
||||
from __future__ import print_function
|
||||
import sys
|
||||
_python3 = sys.version_info.major == 3
|
||||
|
||||
|
||||
def to_hex(s):
|
||||
if _python3:
|
||||
return " ".join("0x{0:02x}".format(c) for c in s) # <-- Python 3 is OK
|
||||
else:
|
||||
return " ".join("0x{0:02x}".format(ord(c)) for c in s)
|
||||
|
||||
|
||||
def to_x(s):
|
||||
from struct import pack
|
||||
if not s: return '0'
|
||||
x = pack(">q", s)
|
||||
while x[0] in ('\0', 0): x = x[1:]
|
||||
if _python3:
|
||||
return "".join("{0:02x}".format(c) for c in x) # <-- Python 3 is OK
|
||||
else:
|
||||
return "".join("{0:02x}".format(ord(c)) for c in x)
|
||||
|
||||
|
||||
def to_x_32(s):
|
||||
from struct import pack
|
||||
if not s: return '0'
|
||||
x = pack(">i", s)
|
||||
while x[0] in ('\0', 0): x = x[1:]
|
||||
if _python3:
|
||||
return "".join("{0:02x}".format(c) for c in x) # <-- Python 3 is OK
|
||||
else:
|
||||
return "".join("{0:02x}".format(ord(c)) for c in x)
|
Loading…
Reference in New Issue