Security analysis tool for EVM bytecode. Supports smart contracts built for Ethereum, Hedera, Quorum, Vechain, Roostock, Tron and other EVM-compatible blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
mythril/tests/integration_tests/transient_storage_test.py

31 lines
886 B

import pytest
from utils import output_of
from tests import PROJECT_DIR, TESTDATA
MYTH = str(PROJECT_DIR / "myth")
input_files = [
("transient.sol", False),
("transient_bug.sol", True),
("transient_bug_2.sol", True),
("transient_recursive.sol", True),
]
@pytest.mark.parametrize("file_name, expected_has_bug", input_files)
def test_positive_solc_settings(file_name, expected_has_bug):
file_path = str(TESTDATA / "input_contracts" / file_name)
# Call the function you want to test
command = f"python3 {MYTH} analyze {file_path} -mExceptions --solv 0.8.25"
actual_output = output_of(command)
# Assertion
if expected_has_bug:
assert "An assertion violation was triggered" in actual_output
else:
assert (
"The analysis was completed successfully. No issues were detected"
in actual_output
)