2021-07-09 06:15:32 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# The purpose of this script is to compare a list of file names that were accessed during testing
|
2021-09-25 05:58:35 +00:00
|
|
|
# against all the file names in the consensus-spec-tests repository. It then checks to see which files
|
2021-07-09 06:15:32 +00:00
|
|
|
# were not accessed and returns an error if any non-intentionally-ignored files are detected.
|
|
|
|
#
|
|
|
|
# The ultimate goal is to detect any accidentally-missed spec tests.
|
|
|
|
|
|
|
|
import os
|
2021-09-24 04:55:21 +00:00
|
|
|
import re
|
2021-07-09 06:15:32 +00:00
|
|
|
import sys
|
|
|
|
|
|
|
|
# First argument should the path to a file which contains a list of accessed file names.
|
|
|
|
accessed_files_filename = sys.argv[1]
|
|
|
|
|
2021-09-25 05:58:35 +00:00
|
|
|
# Second argument should be the path to the consensus-spec-tests directory.
|
2021-07-09 06:15:32 +00:00
|
|
|
tests_dir_filename = sys.argv[2]
|
|
|
|
|
2021-09-25 05:58:35 +00:00
|
|
|
# If any of the file names found in the consensus-spec-tests directory *starts with* one of the
|
2021-09-24 04:55:21 +00:00
|
|
|
# following regular expressions, we will assume they are to be ignored (i.e., we are purposefully
|
|
|
|
# *not* running the spec tests).
|
2021-07-09 06:15:32 +00:00
|
|
|
excluded_paths = [
|
2021-09-28 04:20:06 +00:00
|
|
|
# Eth1Block and PowBlock
|
2021-07-09 06:15:32 +00:00
|
|
|
#
|
|
|
|
# Intentionally omitted, as per https://github.com/sigp/lighthouse/issues/1835
|
2021-09-24 04:55:21 +00:00
|
|
|
"tests/.*/.*/ssz_static/Eth1Block/",
|
2021-09-28 04:20:06 +00:00
|
|
|
"tests/.*/.*/ssz_static/PowBlock/",
|
2022-08-17 02:36:38 +00:00
|
|
|
# light_client
|
|
|
|
"tests/.*/.*/light_client",
|
2021-07-09 06:15:32 +00:00
|
|
|
# LightClientStore
|
2021-09-24 04:55:21 +00:00
|
|
|
"tests/.*/.*/ssz_static/LightClientStore",
|
2021-07-09 06:15:32 +00:00
|
|
|
# LightClientUpdate
|
2021-09-24 04:55:21 +00:00
|
|
|
"tests/.*/.*/ssz_static/LightClientUpdate",
|
2021-07-09 06:15:32 +00:00
|
|
|
# LightClientSnapshot
|
2022-01-19 00:24:19 +00:00
|
|
|
"tests/.*/.*/ssz_static/LightClientSnapshot",
|
2022-08-17 02:36:38 +00:00
|
|
|
# LightClientBootstrap
|
|
|
|
"tests/.*/.*/ssz_static/LightClientBootstrap",
|
|
|
|
# LightClientOptimistic
|
|
|
|
"tests/.*/.*/ssz_static/LightClientOptimistic",
|
|
|
|
# LightClientFinalityUpdate
|
|
|
|
"tests/.*/.*/ssz_static/LightClientFinalityUpdate",
|
2022-07-28 09:43:41 +00:00
|
|
|
# Capella tests are disabled for now.
|
|
|
|
"tests/.*/capella",
|
2022-01-19 00:24:19 +00:00
|
|
|
# One of the EF researchers likes to pack the tarballs on a Mac
|
2022-08-19 04:27:21 +00:00
|
|
|
".*\.DS_Store.*",
|
|
|
|
# More Mac weirdness.
|
2022-10-12 23:40:42 +00:00
|
|
|
"tests/mainnet/bellatrix/operations/deposit/pyspec_tests/deposit_with_previous_fork_version__valid_ineffective/._meta.yaml",
|
|
|
|
# bls tests are moved to bls12-381-tests directory
|
|
|
|
"tests/general/phase0/bls",
|
|
|
|
# some bls tests are not included now
|
|
|
|
"bls12-381-tests/deserialization_G1",
|
|
|
|
"bls12-381-tests/deserialization_G2",
|
|
|
|
"bls12-381-tests/hash_to_G2"
|
2021-07-09 06:15:32 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
def normalize_path(path):
|
2021-09-24 04:55:21 +00:00
|
|
|
return path.split("consensus-spec-tests/")[1]
|
2021-07-09 06:15:32 +00:00
|
|
|
|
|
|
|
# Determine the list of filenames which were accessed during tests.
|
|
|
|
passed = set()
|
|
|
|
for line in open(accessed_files_filename, 'r').readlines():
|
|
|
|
file = normalize_path(line.strip().strip('"'))
|
|
|
|
passed.add(file)
|
|
|
|
|
|
|
|
missed = set()
|
|
|
|
accessed_files = 0
|
|
|
|
excluded_files = 0
|
|
|
|
|
|
|
|
# Iterate all files in the tests directory, ensure that all files were either accessed
|
|
|
|
# or intentionally missed.
|
|
|
|
for root, dirs, files in os.walk(tests_dir_filename):
|
2021-09-24 04:55:21 +00:00
|
|
|
for name in files:
|
|
|
|
name = normalize_path(os.path.join(root, name))
|
|
|
|
if name not in passed:
|
|
|
|
excluded = False
|
|
|
|
for excluded_path_regex in excluded_paths:
|
|
|
|
if re.match(excluded_path_regex, name):
|
|
|
|
excluded = True
|
|
|
|
break
|
|
|
|
if excluded:
|
|
|
|
excluded_files += 1
|
|
|
|
else:
|
|
|
|
print(name)
|
|
|
|
missed.add(name)
|
|
|
|
else:
|
|
|
|
accessed_files += 1
|
2021-07-09 06:15:32 +00:00
|
|
|
|
|
|
|
# Exit with an error if there were any files missed.
|
|
|
|
assert len(missed) == 0, "{} missed files".format(len(missed))
|
|
|
|
|
|
|
|
print("Accessed {} files ({} intentionally excluded)".format(accessed_files, excluded_files))
|