diff options
author | Dimitry <dimitry@ethereum.org> | 2018-12-06 20:13:50 +0800 |
---|---|---|
committer | Dimitry <dimitry@ethereum.org> | 2018-12-06 20:13:50 +0800 |
commit | 94d06173305706e54cbf233f5f50204c3754d742 (patch) | |
tree | ddee284776eca64b096ed1a5857c6cb97099659a /test.py | |
parent | c3f71fb13d4f712d2c305c0093c52c8a8432bf16 (diff) | |
download | dexon-tests-94d06173305706e54cbf233f5f50204c3754d742.tar dexon-tests-94d06173305706e54cbf233f5f50204c3754d742.tar.gz dexon-tests-94d06173305706e54cbf233f5f50204c3754d742.tar.bz2 dexon-tests-94d06173305706e54cbf233f5f50204c3754d742.tar.lz dexon-tests-94d06173305706e54cbf233f5f50204c3754d742.tar.xz dexon-tests-94d06173305706e54cbf233f5f50204c3754d742.tar.zst dexon-tests-94d06173305706e54cbf233f5f50204c3754d742.zip |
more debug info on errors
Diffstat (limited to 'test.py')
-rwxr-xr-x | test.py | 28 |
1 files changed, 17 insertions, 11 deletions
@@ -137,15 +137,20 @@ def validateTestFile(testFile): def hashFile(fname): with open(fname ,"rb") as f: - k = sha3.keccak_256() - if fname.endswith(".json"): - s = json.dumps(json.load(f), sort_keys=True, separators=(',', ':')) - elif fname.endswith(".yml"): - s = json.dumps(yaml.load(f), sort_keys=True, separators=(',', ':')) - else: - _die("Do not know how to hash:", fname) - k.update(s.encode('utf-8')) - return k.hexdigest() + try: + k = sha3.keccak_256() + if fname.endswith(".json"): + s = json.dumps(json.load(f), sort_keys=True, separators=(',', ':')) + elif fname.endswith(".yml"): + s = json.dumps(yaml.load(f), sort_keys=True, separators=(',', ':')) + else: + _die("Do not know how to hash:", fname) + k.update(s.encode('utf-8')) + return { 'hash': k.hexdigest(), 'raw': s } + except Exception as e: + _logerror("Error getting hash of the yml/json:", fname) + _logerror("Exception: ", str(e)) + return { 'hash': 'error', 'raw': 'error' } def checkFilled(jsonFile): jsonTest = readFile(jsonFile) @@ -162,8 +167,9 @@ def checkFilled(jsonFile): if "_info" in jsonTest[test]: fillerSource = jsonTest[test]["_info"]["source"] fillerHash = jsonTest[test]["_info"]["sourceHash"] - if fillerHash != hashFile(fillerSource): - _logerror("Filler hash is different:", jsonFile) + resultHash = hashFile(fillerSource) + if fillerHash != resultHash['hash']: + _logerror("Filler hash is different:", jsonFile, " HashSrc: '", resultHash['raw'], "'") # Main # ==== |