-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Record state count info in manifest, check during CI (#122)
Signed-off-by: Andrew Helwer <[email protected]>
- Loading branch information
Showing
9 changed files
with
545 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
""" | ||
Records the number of unique & total states encountered by TLC for each small | ||
model where that info is not present, then writes it to the manifest.json. | ||
""" | ||
|
||
from argparse import ArgumentParser | ||
import logging | ||
from os.path import dirname, normpath | ||
from subprocess import CompletedProcess, TimeoutExpired | ||
import tla_utils | ||
|
||
parser = ArgumentParser(description='Updates manifest.json with unique & total model states for each small model.') | ||
parser.add_argument('--tools_jar_path', help='Path to the tla2tools.jar file', required=True) | ||
parser.add_argument('--tlapm_lib_path', help='Path to the TLA+ proof manager module directory; .tla files should be in this directory', required=True) | ||
parser.add_argument('--community_modules_jar_path', help='Path to the CommunityModules-deps.jar file', required=True) | ||
parser.add_argument('--manifest_path', help='Path to the tlaplus/examples manifest.json file', required=True) | ||
args = parser.parse_args() | ||
|
||
logging.basicConfig(level=logging.INFO) | ||
|
||
tools_jar_path = normpath(args.tools_jar_path) | ||
tlapm_lib_path = normpath(args.tlapm_lib_path) | ||
community_jar_path = normpath(args.community_modules_jar_path) | ||
manifest_path = normpath(args.manifest_path) | ||
examples_root = dirname(manifest_path) | ||
|
||
def check_model(module_path, model): | ||
module_path = tla_utils.from_cwd(examples_root, module_path) | ||
model_path = tla_utils.from_cwd(examples_root, model['path']) | ||
logging.info(model_path) | ||
hard_timeout_in_seconds = 60 | ||
tlc_result = tla_utils.check_model( | ||
tools_jar_path, | ||
module_path, | ||
model_path, | ||
tlapm_lib_path, | ||
community_jar_path, | ||
model['mode'], | ||
hard_timeout_in_seconds | ||
) | ||
match tlc_result: | ||
case CompletedProcess(): | ||
expected_result = model['result'] | ||
actual_result = tla_utils.resolve_tlc_exit_code(tlc_result.returncode) | ||
if expected_result != actual_result: | ||
logging.error(f'Model {model_path} expected result {expected_result} but got {actual_result}') | ||
logging.error(tlc_result.stdout) | ||
return False | ||
state_count_info = tla_utils.extract_state_count_info(tlc_result.stdout) | ||
if state_count_info is None: | ||
logging.error("Failed to find state info in TLC output") | ||
logging.error(tlc_result.stdout) | ||
return False | ||
logging.info(f'States (distinct, total, depth): {state_count_info}') | ||
model['distinctStates'], model['totalStates'], model['stateDepth'] = state_count_info | ||
return True | ||
case TimeoutExpired(): | ||
logging.error(f'{model_path} hit hard timeout of {hard_timeout_in_seconds} seconds') | ||
logging.error(tlc_result.output.decode('utf-8')) | ||
return False | ||
case _: | ||
logging.error(f'Unhandled TLC result type {type(tlc_result)}: {tlc_result}') | ||
return False | ||
|
||
# Ensure longest-running modules go first | ||
manifest = tla_utils.load_json(manifest_path) | ||
small_models = sorted( | ||
[ | ||
(module['path'], model, tla_utils.parse_timespan(model['runtime'])) | ||
for spec in manifest['specifications'] | ||
for module in spec['modules'] | ||
for model in module['models'] | ||
if model['size'] == 'small' | ||
and tla_utils.is_state_count_valid(model) | ||
and ( | ||
'distinctStates' not in model | ||
or 'totalStates' not in model | ||
or 'stateDepth' not in model | ||
) | ||
# This model is nondeterministic due to use of the Random module | ||
and model['path'] != 'specifications/SpanningTree/SpanTreeRandom.cfg' | ||
], | ||
key = lambda m: m[2], | ||
reverse=True | ||
) | ||
|
||
for module_path, model, _ in small_models: | ||
success = check_model(module_path, model) | ||
if not success: | ||
exit(1) | ||
tla_utils.write_json(manifest, manifest_path) | ||
|
||
exit(0) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.