зеркало из https://github.com/microsoft/CCF.git
109 строки
3.0 KiB
Python
109 строки
3.0 KiB
Python
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
# Licensed under the Apache 2.0 License.import test_suite
|
||
|
|
||
|
import e2e_args
|
||
|
import infra.ccf
|
||
|
import suite.test_suite as s
|
||
|
import suite.test_requirements as reqs
|
||
|
import time
|
||
|
import json
|
||
|
from enum import Enum
|
||
|
|
||
|
from loguru import logger as LOG
|
||
|
|
||
|
|
||
|
class TestStatus(Enum):
|
||
|
success = 1
|
||
|
failure = 2
|
||
|
skipped = 3
|
||
|
|
||
|
|
||
|
def run(args):
|
||
|
|
||
|
s.validate_tests_signature(s.tests)
|
||
|
|
||
|
if args.enforce_reqs is False:
|
||
|
LOG.warning("Test requirements will be ignored")
|
||
|
|
||
|
hosts = ["localhost", "localhost"]
|
||
|
network = infra.ccf.Network(hosts, args.debug_nodes, args.perf_nodes)
|
||
|
network.start_and_join(args)
|
||
|
|
||
|
LOG.info(f"Running {len(s.tests)} tests for {args.test_duration} seconds")
|
||
|
|
||
|
run_tests = {}
|
||
|
elapsed = args.test_duration
|
||
|
|
||
|
for i, test in enumerate(s.tests):
|
||
|
status = None
|
||
|
reason = None
|
||
|
|
||
|
if elapsed <= 0:
|
||
|
LOG.warning(f"Test duration time ({args.test_duration} seconds) is up!")
|
||
|
break
|
||
|
|
||
|
try:
|
||
|
LOG.debug(f"Running {s.test_name(test)}...")
|
||
|
test_time_before = time.time()
|
||
|
|
||
|
# Actually run the test
|
||
|
new_network = test(network, args)
|
||
|
status = TestStatus.success
|
||
|
|
||
|
except reqs.TestRequirementsNotMet as ce:
|
||
|
LOG.warning(f"Test requirements for {s.test_name(test)} not met")
|
||
|
status = TestStatus.skipped
|
||
|
reason = str(ce)
|
||
|
new_network = network
|
||
|
|
||
|
except Exception as e:
|
||
|
LOG.exception(f"Test {s.test_name(test)} failed")
|
||
|
status = TestStatus.failure
|
||
|
new_network = network
|
||
|
|
||
|
test_elapsed = time.time() - test_time_before
|
||
|
|
||
|
# Construct test report
|
||
|
run_tests[i] = {
|
||
|
"name": s.test_name(test),
|
||
|
"status": status.name,
|
||
|
"elapsed (s)": round(test_elapsed, 2),
|
||
|
}
|
||
|
|
||
|
if reason is not None:
|
||
|
run_tests[i]["reason"] = reason
|
||
|
|
||
|
# If the test function did not return a network, it is not possible to continue
|
||
|
if new_network is None:
|
||
|
raise ValueError(f"Network returned by {s.test_name(test)} is None")
|
||
|
|
||
|
# If the network was changed (e.g. recovery test), stop the previous network
|
||
|
# and use the new network from now on
|
||
|
if new_network != network:
|
||
|
network.stop_all_nodes()
|
||
|
network = new_network
|
||
|
|
||
|
LOG.debug(f"Test {s.test_name(test)} took {test_elapsed:.2f} secs")
|
||
|
|
||
|
# For now, if a test fails, the entire test suite if stopped
|
||
|
if status is TestStatus.failure:
|
||
|
break
|
||
|
|
||
|
elapsed -= test_elapsed
|
||
|
|
||
|
LOG.success(f"Ran {len(run_tests)}/{len(s.tests)} tests:")
|
||
|
LOG.success(f"\n{json.dumps(run_tests, indent=4)}")
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
|
||
|
def add(parser):
|
||
|
parser.add_argument(
|
||
|
"--test-duration", help="Duration of suite of tests (s)", type=int
|
||
|
)
|
||
|
|
||
|
args = e2e_args.cli_args(add)
|
||
|
args.package = args.app_script and "libluagenericenc" or "libloggingenc"
|
||
|
|
||
|
run(args)
|