nimbus-eth2/scripts/run_ssz_fuzzing_test.nims

41 lines
1.2 KiB
Plaintext
Raw Normal View History

2020-05-19 17:48:52 +00:00
import os except dirExists
import strformat, confutils
2020-06-11 16:41:43 +00:00
import testutils/fuzzing_engines
2020-05-19 17:48:52 +00:00
const
gitRoot = thisDir() / ".."
fixturesDir = gitRoot / "vendor" / "nim-eth2-scenarios" / "tests-v1.0.1" / "mainnet" / "phase0" / "ssz_static"
2020-05-19 17:48:52 +00:00
fuzzingTestsDir = gitRoot / "tests" / "fuzzing"
fuzzingCorpusesDir = fuzzingTestsDir / "corpus"
cli do (testname {.argument.}: string,
2020-06-11 16:41:43 +00:00
fuzzer = defaultFuzzingEngine):
2020-05-19 17:48:52 +00:00
if not dirExists(fixturesDir):
echo "Please run `make test` first in order to download the consensus spec ETH2 test vectors"
2020-05-19 17:48:52 +00:00
quit 1
if not dirExists(fixturesDir / testname):
echo testname, " is not a recognized SSZ type name (type names are case-sensitive)"
quit 1
let corpusDir = fuzzingCorpusesDir / testname
rmDir corpusDir
mkDir corpusDir
var inputIdx = 0
template nextInputName: string =
inc inputIdx
"input" & $inputIdx
for file in walkDirRec(fixturesDir / testname):
if splitFile(file).ext == ".ssz":
# TODO Can we create hard links here?
cpFile file, corpusDir / nextInputName()
let testProgram = fuzzingTestsDir / &"ssz_decode_{testname}.nim"
2020-06-11 16:41:43 +00:00
exec &"""ntu fuzz --fuzzer={fuzzer} --corpus="{corpusDir}" "{testProgram}" """