McRogueFace/tests/run_tests.py
John McCardle a46667df6f test(snippets): the docs site's 130 code samples are now part of the test suite
The samples published on mcrogueface.github.io were executed by nothing at all.
Each carried a machine-readable header -- objects=[...] verified=0.2.8@b6720f6
status=ok -- and every one of those fields was hand-typed. 130 snippets asserted
"status=ok" while no run had ever confirmed it. This is the same failure mode as
the 82 rotted tests in 112f357, at a larger scale and with no gate whatsoever.

The samples now live here, in the engine repo, so that breaking the API breaks the
build. The site pulls them from tests/snippets/ rather than keeping a copy to rot
in parallel (build_library.py, site-side).

They are display scripts: each builds a scene and stops. They deliberately do NOT
call sys.exit(), because they must stay copy-pasteable -- a reader who pastes one
into their game should get a running scene, not an interpreter that quits. Since
#350 that also makes them un-runnable on their own, so _harness.py is chained as a
second --exec to supply the ending the snippet must not have. Chaining rather than
exec()-ing the source is deliberate: the snippet travels the same path a real
user's script travels, and nothing has to read the file -- which is how the first
draft of this harness tripped over #378 and mistook three healthy snippets for
broken ones.

A snippet passes only if it runs clean AND leaves a scene with something in it.
Not raising is not enough: a sample whose body silently no-ops still renders as
code on the docs site, and would still be wrong.

tools/stamp_snippets.py makes the header a measurement instead of a claim: status
comes from an actual run, verified from the engine that ran it, and objects is
derived from the source intersected with what the engine exports -- so a snippet
that starts using a new type gets tagged for it without anyone remembering to. It
immediately found tags the humans had missed (062 uses Transition, Key and
InputState; the hand-written header listed none of them). --check is the CI gate.

The gate earned its keep on the first run, catching #379 (fixed here): configuring
default_transition before the first scene activation made the engine transition
FROM the internal "uitest" bootstrap scene, which is not a PyScene and has no
Python wrapper -- so mcrfpy.current_scene reported None for the transition's full
duration, immediately after the user had assigned it. A transition with nothing
meaningful to transition from now changes scene immediately. Scene-to-scene
transitions still report the outgoing scene until they complete.

Suite: 468/468 (336 + 130 snippets + 2 regressions).

closes #379
2026-07-14 18:29:37 -04:00

307 lines
11 KiB
Python

#!/usr/bin/env python3
"""
McRogueFace Test Runner
Runs all headless tests and reports results.
Usage:
python3 tests/run_tests.py # Run all tests
python3 tests/run_tests.py unit # Run only unit tests
python3 tests/run_tests.py -v # Verbose output (show failure details)
python3 tests/run_tests.py --checksums # Show screenshot checksums
python3 tests/run_tests.py --timeout=30 # Custom timeout
python3 tests/run_tests.py --sanitizer # Detect ASan/UBSan errors in output
python3 tests/run_tests.py --valgrind # Run tests under Valgrind memcheck
Environment variables:
MCRF_BUILD_DIR Build directory (default: ../build)
MCRF_LIB_DIR Library directory for LD_LIBRARY_PATH (default: ../__lib)
MCRF_TIMEOUT_MULTIPLIER Multiply per-test timeout (default: 1, use 50 for valgrind)
"""
import os
import subprocess
import sys
import time
import hashlib
import re
from pathlib import Path
# Configuration — respect environment overrides for debug/sanitizer builds
TESTS_DIR = Path(__file__).parent
BUILD_DIR = Path(os.environ.get('MCRF_BUILD_DIR', str(TESTS_DIR.parent / "build")))
LIB_DIR = Path(os.environ.get('MCRF_LIB_DIR', str(TESTS_DIR.parent / "__lib")))
MCROGUEFACE = BUILD_DIR / "mcrogueface"
DEFAULT_TIMEOUT = 10 # seconds per test
# Sanitizer error patterns to scan for in stderr
SANITIZER_PATTERNS = [
re.compile(r'ERROR: AddressSanitizer'),
re.compile(r'ERROR: LeakSanitizer'),
re.compile(r'runtime error:'), # UBSan
re.compile(r'ERROR: ThreadSanitizer'),
]
# Test directories to run (in order)
TEST_DIRS = ['unit', 'integration', 'regression', 'demo', 'snippets']
# tests/snippets/ holds the code samples published on mcrogueface.github.io. They live
# here, in the engine repo, so that breaking the API breaks the build -- the docs site
# pulls them from here rather than keeping its own copy to rot in parallel. Before this,
# 130 snippets were executed by nothing at all and carried a hand-typed "status=ok"
# header that no run had ever verified.
#
# They are display scripts with no sys.exit(), because they must stay copy-pasteable, so
# _harness.py is chained as a second --exec to supply the ending (see its docstring).
SNIPPET_HARNESS = 'tests/snippets/_harness.py'
# #372: tests/demo/ was never run by anything, so the demo screens -- which CLAUDE.md
# points at as the canonical API-usage examples -- silently bitrotted until they could
# not even import. Smoke-gate the entry point that exercises screens/base.py and every
# wired DemoScreen, so "read the demos for correct usage" stays true.
#
# An allowlist, not a glob: the other scripts under tests/demo/ are standalone
# showcases that are not part of the demo_main path (see the follow-up issue for
# adopting them). Demos render, so they need a longer timeout than a unit test.
DEMO_SMOKE_TESTS = ['demo_main.py']
DEMO_TIMEOUT = 60 # seconds
# ANSI colors
GREEN = '\033[92m'
RED = '\033[91m'
YELLOW = '\033[93m'
RESET = '\033[0m'
BOLD = '\033[1m'
def get_screenshot_checksum(test_dir):
"""Get checksums of test-generated PNG files in build directory."""
checksums = {}
for png in BUILD_DIR.glob("test_*.png"):
with open(png, 'rb') as f:
checksums[png.name] = hashlib.md5(f.read()).hexdigest()[:8]
return checksums
def check_sanitizer_output(output):
"""Check output for sanitizer error messages. Returns list of matches."""
errors = []
for pattern in SANITIZER_PATTERNS:
matches = pattern.findall(output)
if matches:
errors.extend(matches)
return errors
def run_test(test_path, verbose=False, timeout=DEFAULT_TIMEOUT,
sanitizer_mode=False, valgrind_mode=False):
"""Run a single test and return (passed, duration, output, sanitizer_errors)."""
start = time.time()
# Clean any existing screenshots
for png in BUILD_DIR.glob("test_*.png"):
png.unlink()
# Set up environment with library path
env = os.environ.copy()
existing_ld = env.get('LD_LIBRARY_PATH', '')
env['LD_LIBRARY_PATH'] = f"{LIB_DIR}:{existing_ld}" if existing_ld else str(LIB_DIR)
# Build the command
cmd = []
valgrind_log = None
if valgrind_mode:
valgrind_log = BUILD_DIR / f"valgrind-{test_path.stem}.log"
supp_file = TESTS_DIR.parent / "sanitizers" / "valgrind-mcrf.supp"
cmd.extend([
'valgrind',
'--tool=memcheck',
'--leak-check=full',
'--error-exitcode=42',
f'--log-file={valgrind_log}',
])
if supp_file.exists():
cmd.append(f'--suppressions={supp_file}')
cmd.extend([str(MCROGUEFACE), '--headless', '--exec', str(test_path)])
# A snippet has no ending of its own; chain the harness to supply one.
if test_path.parent.name == 'snippets':
cmd.extend(['--exec', str(TESTS_DIR / 'snippets' / '_harness.py')])
try:
result = subprocess.run(
cmd,
capture_output=True,
text=True,
timeout=timeout,
cwd=str(BUILD_DIR),
env=env
)
duration = time.time() - start
passed = result.returncode == 0
output = result.stdout + result.stderr
# An uncaught exception is never a pass. Exit code alone was not enough:
# a script that raised during setup registered no timers, was auto-exited 0
# by the engine, and was scored PASS -- 59 tests sat rotted this way, their
# assertions never once executing. (#341/#350/#372)
if 'Traceback (most recent call last)' in output:
passed = False
# Check for PASS/FAIL in output
if 'FAIL' in output and 'PASS' not in output.split('FAIL')[-1]:
passed = False
# Check for sanitizer errors in output
sanitizer_errors = []
if sanitizer_mode:
sanitizer_errors = check_sanitizer_output(output)
if sanitizer_errors:
passed = False
# Check valgrind results
if valgrind_mode:
if result.returncode == 42:
passed = False
if valgrind_log and valgrind_log.exists():
vg_output = valgrind_log.read_text()
# Extract error summary
error_lines = [l for l in vg_output.split('\n')
if 'ERROR SUMMARY' in l or 'definitely lost' in l
or 'Invalid' in l]
sanitizer_errors.extend(error_lines[:5])
output += f"\n--- Valgrind log: {valgrind_log} ---\n"
output += '\n'.join(error_lines)
return passed, duration, output, sanitizer_errors
except subprocess.TimeoutExpired:
return False, timeout, "TIMEOUT", []
except Exception as e:
return False, 0, str(e), []
def find_tests(directory):
"""Find all test files in a directory."""
test_dir = TESTS_DIR / directory
if not test_dir.exists():
return []
if directory == 'demo':
# #372: allowlisted entry points only -- see DEMO_SMOKE_TESTS.
return [test_dir / name for name in DEMO_SMOKE_TESTS if (test_dir / name).exists()]
# Leading underscore = support file, not a test (tests/snippets/_harness.py).
return sorted(p for p in test_dir.glob("*.py") if not p.name.startswith('_'))
def main():
verbose = '-v' in sys.argv or '--verbose' in sys.argv
show_checksums = '--checksums' in sys.argv
sanitizer_mode = '--sanitizer' in sys.argv
valgrind_mode = '--valgrind' in sys.argv
# Parse --timeout=N
timeout = DEFAULT_TIMEOUT
for arg in sys.argv[1:]:
if arg.startswith('--timeout='):
try:
timeout = int(arg.split('=')[1])
except ValueError:
pass
# Apply timeout multiplier from environment
timeout_multiplier = float(os.environ.get('MCRF_TIMEOUT_MULTIPLIER', '1'))
effective_timeout = timeout * timeout_multiplier
# Determine which directories to test
dirs_to_test = []
for arg in sys.argv[1:]:
if arg in TEST_DIRS:
dirs_to_test.append(arg)
if not dirs_to_test:
dirs_to_test = TEST_DIRS
# Header
mode_str = ""
if sanitizer_mode:
mode_str = f" {YELLOW}[ASan/UBSan]{RESET}"
elif valgrind_mode:
mode_str = f" {YELLOW}[Valgrind]{RESET}"
print(f"{BOLD}McRogueFace Test Runner{RESET}{mode_str}")
print(f"Build: {BUILD_DIR}")
print(f"Testing: {', '.join(dirs_to_test)} (timeout: {effective_timeout:.0f}s)")
print("=" * 60)
results = {'pass': 0, 'fail': 0, 'total_time': 0}
failures = []
for test_dir in dirs_to_test:
tests = find_tests(test_dir)
if not tests:
continue
print(f"\n{BOLD}{test_dir}/{RESET} ({len(tests)} tests)")
for test_path in tests:
test_name = test_path.name
# Demos render several scenes; they need more headroom than a unit test.
test_timeout = (DEMO_TIMEOUT * timeout_multiplier
if test_dir == 'demo' else effective_timeout)
passed, duration, output, san_errors = run_test(
test_path, verbose, test_timeout,
sanitizer_mode=sanitizer_mode,
valgrind_mode=valgrind_mode
)
results['total_time'] += duration
if passed:
results['pass'] += 1
status = f"{GREEN}PASS{RESET}"
else:
results['fail'] += 1
status = f"{RED}FAIL{RESET}"
failures.append((test_dir, test_name, output, san_errors))
# Get screenshot checksums if any were generated
checksum_str = ""
if show_checksums:
checksums = get_screenshot_checksum(BUILD_DIR)
if checksums:
checksum_str = f" [{', '.join(f'{k}:{v}' for k,v in checksums.items())}]"
# Show sanitizer error indicator
san_str = ""
if san_errors:
san_str = f" {RED}[SANITIZER]{RESET}"
print(f" {status} {test_name} ({duration:.2f}s){checksum_str}{san_str}")
if verbose and not passed:
print(f" Output: {output[:200]}...")
if san_errors:
for err in san_errors[:3]:
print(f" {RED}>> {err}{RESET}")
# Summary
print("\n" + "=" * 60)
total = results['pass'] + results['fail']
pass_rate = (results['pass'] / total * 100) if total > 0 else 0
print(f"{BOLD}Results:{RESET} {results['pass']}/{total} passed ({pass_rate:.1f}%)")
print(f"{BOLD}Time:{RESET} {results['total_time']:.2f}s")
if valgrind_mode:
print(f"{BOLD}Valgrind logs:{RESET} {BUILD_DIR}/valgrind-*.log")
if failures:
print(f"\n{RED}{BOLD}Failures:{RESET}")
for test_dir, test_name, output, san_errors in failures:
print(f" {test_dir}/{test_name}")
if san_errors:
for err in san_errors[:3]:
print(f" {RED}>> {err}{RESET}")
if verbose:
# Show last few lines of output
lines = output.strip().split('\n')[-5:]
for line in lines:
print(f" {line}")
sys.exit(0 if results['fail'] == 0 else 1)
if __name__ == '__main__':
main()