111 lines
3.1 KiB
Python
111 lines
3.1 KiB
Python
import unittest
|
|
import sys
|
|
import shutil
|
|
import tempfile
|
|
import os
|
|
import hashlib
|
|
import subprocess
|
|
import json
|
|
import time
|
|
|
|
#logging.basicConfig(filename = "test.log",
|
|
# format = "%(asctime)s: %(name)s:%(levelname)s: %(message)s",
|
|
# level = logging.DEBUG)
|
|
|
|
class IntegrationTest(unittest.TestCase):
|
|
def setUp(self):
|
|
# Create a temporary directory
|
|
self.test_dir = tempfile.mkdtemp()
|
|
|
|
def tearDown(self):
|
|
# Remove the directory after the test
|
|
shutil.rmtree(self.test_dir)
|
|
|
|
def _getDumpParams(self, jsonf):
|
|
self.assertTrue(os.path.exists(jsonf))
|
|
|
|
c = open(jsonf, 'r').read()
|
|
return json.loads(c)
|
|
|
|
def _loadVisitedSet(self, visited):
|
|
|
|
self.assertTrue(os.path.exists(visited))
|
|
vitems = open(visited, 'r').read().splitlines()
|
|
|
|
vitems = map(lambda x: int(x[2:], 16), vitems)
|
|
|
|
return set(vitems)
|
|
|
|
def _runWithTimeout(self, procargs, timeout=600):
|
|
|
|
with open(os.path.join(os.pardir, "logfile"), "w") as output:
|
|
#with open(os.path.join(os.pardir, "/dev/stdout"), "w") as output:
|
|
po = subprocess.Popen(procargs, stdout=output)
|
|
secs_used = 0
|
|
|
|
while po.poll() is None and secs_used < timeout:
|
|
time.sleep(1)
|
|
sys.stderr.write("~")
|
|
secs_used += 1
|
|
|
|
self.assertTrue(secs_used < timeout)
|
|
sys.stderr.write("\n")
|
|
|
|
def _runManticore(self, dumpname):
|
|
|
|
dirname = os.path.dirname(__file__)
|
|
dumpdir = os.path.abspath(os.path.join(dirname, 'memdumps', dumpname))
|
|
|
|
self.assertTrue(os.path.exists(dumpdir))
|
|
|
|
jsonfile = os.path.join(dumpdir, 'args.json')
|
|
|
|
params = self._getDumpParams(jsonfile)
|
|
|
|
workspace = os.path.join(self.test_dir, 'ws_{}'.format(dumpname))
|
|
logfile = os.path.join(workspace, "output.log")
|
|
|
|
dumpfile = os.path.join(dumpdir, params['dump'])
|
|
|
|
args = ['python', '-m', 'manticore', '--timeout', '400', '--workspace', workspace, dumpfile]
|
|
|
|
os.mkdir(workspace)
|
|
|
|
for k,v in params.iteritems():
|
|
if k.startswith("--"):
|
|
args.extend([k, v.format(dumpdir=dumpdir, workspace=workspace)])
|
|
self._runWithTimeout(args, logfile)
|
|
|
|
efile = os.path.join(dumpdir, params['expected'])
|
|
expected = self._loadVisitedSet(efile)
|
|
|
|
afile = os.path.join(workspace, params['actual'])
|
|
actual = self._loadVisitedSet(afile)
|
|
|
|
self.assertGreaterEqual(actual, expected)
|
|
|
|
def testSimpleParse(self):
|
|
self._runManticore("simple_parse")
|
|
|
|
def testSimpleDeref(self):
|
|
self._runManticore("simple_bad_deref")
|
|
|
|
def testSimpleBufferOverflow(self):
|
|
self._runManticore("simple_buffer_overflow")
|
|
|
|
# generate too many states on memory concretization
|
|
#def testSimpleFpu(self):
|
|
# self._runManticore("simple_fpu")
|
|
|
|
# too slow processing REP SCASD
|
|
@unittest.skip('TODO')
|
|
def testWin32API(self):
|
|
self._runManticore("win32_api_test")
|
|
|
|
def testAPIInterception(self):
|
|
self._runManticore("api_interception")
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|
|
|