Spaces:
Runtime error
Runtime error
File size: 29,271 Bytes
8c486a8 d2dbaf9 8c486a8 4c52b20 8429075 8c486a8 5b99233 8c486a8 f549fda eaa2876 f549fda eaa2876 f549fda 307d729 dabed55 8429075 307d729 80ef9e0 7fedc25 80ef9e0 307d729 ca6fc4d 4c52b20 5b99233 8c486a8 d2dbaf9 8c486a8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 | """Tests for Builder implementations and SnapshotStore."""
import json
import tempfile
from pathlib import Path
import pytest
from open_range.protocols import BuildContext, FlagSpec, GoldenPathStep, SnapshotSpec
# ---------------------------------------------------------------------------
# TemplateOnlyBuilder
# ---------------------------------------------------------------------------
@pytest.mark.asyncio
async def test_template_builder_returns_snapshot_spec(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
ctx = BuildContext(seed=42, tier=1)
spec = await builder.build(tier1_manifest, ctx)
assert isinstance(spec, SnapshotSpec)
@pytest.mark.asyncio
async def test_template_builder_has_flags(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
ctx = BuildContext(seed=42, tier=1)
spec = await builder.build(tier1_manifest, ctx)
assert len(spec.flags) >= 1
assert all(f.value.startswith("FLAG{") for f in spec.flags)
@pytest.mark.asyncio
async def test_template_builder_has_golden_path(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
ctx = BuildContext(seed=42, tier=1)
spec = await builder.build(tier1_manifest, ctx)
assert len(spec.golden_path) >= 3
@pytest.mark.asyncio
async def test_template_builder_has_truth_graph(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
ctx = BuildContext(seed=42, tier=1)
spec = await builder.build(tier1_manifest, ctx)
assert len(spec.truth_graph.vulns) >= 1
@pytest.mark.asyncio
async def test_template_builder_respects_bug_families(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
ctx = BuildContext(seed=42, tier=1)
spec = await builder.build(tier1_manifest, ctx)
allowed = set(tier1_manifest["bug_families"])
for v in spec.truth_graph.vulns:
assert v.type in allowed
@pytest.mark.asyncio
async def test_template_builder_clamps_min_vulns_to_candidate_pool(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
manifest = {
**tier1_manifest,
"bug_families": ["sqli"],
"difficulty": {**tier1_manifest.get("difficulty", {}), "min_vulns": 2, "max_vulns": 2},
}
spec = await builder.build(manifest, BuildContext(seed=7, tier=1))
assert len(spec.truth_graph.vulns) == 1
assert all(v.type == "sqli" for v in spec.truth_graph.vulns)
@pytest.mark.asyncio
async def test_template_builder_fails_when_bug_family_has_no_template_match(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
manifest = {
**tier1_manifest,
"bug_families": ["totally_fake_bug_family"],
}
with pytest.raises(ValueError, match="No template vulnerabilities match manifest bug_families"):
await builder.build(manifest, BuildContext(seed=7, tier=1))
@pytest.mark.asyncio
async def test_template_builder_empty_bug_families_uses_default_pool(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
manifest = {
**tier1_manifest,
"bug_families": [],
"difficulty": {**tier1_manifest.get("difficulty", {}), "min_vulns": 1, "max_vulns": 1},
}
spec = await builder.build(manifest, BuildContext(seed=7, tier=1))
assert len(spec.truth_graph.vulns) == 1
@pytest.mark.asyncio
async def test_template_builder_avoids_previous_vulns(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
ctx = BuildContext(seed=0, tier=1, previous_vuln_classes=["sqli"])
spec = await builder.build(tier1_manifest, ctx)
# Should prefer non-sqli vulns when alternatives exist
vuln_types = [v.type for v in spec.truth_graph.vulns]
# Not guaranteed to avoid sqli if all alternatives exhausted, but should try
# Just verify the builder ran successfully
assert len(vuln_types) >= 1
@pytest.mark.asyncio
async def test_template_builder_live_admission_hints_skip_unreachable_weak_creds(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
manifest = {
**tier1_manifest,
"bug_families": ["weak_creds", "sqli"],
"difficulty": {**tier1_manifest.get("difficulty", {}), "min_vulns": 1, "max_vulns": 1},
}
ctx = BuildContext(
seed=3,
tier=1,
narrative_hints=["prefer_live_admission_compatible_vulns"],
)
spec = await builder.build(manifest, ctx)
assert [v.type for v in spec.truth_graph.vulns] == ["sqli"]
@pytest.mark.asyncio
async def test_template_builder_live_admission_vulns_have_executable_remediations(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
from open_range.validator.patchability import _looks_executable
builder = TemplateOnlyBuilder()
manifest = {
**tier1_manifest,
"bug_families": ["path_traversal", "sqli"],
"difficulty": {**tier1_manifest.get("difficulty", {}), "min_vulns": 2, "max_vulns": 2},
}
spec = await builder.build(
manifest,
BuildContext(
seed=4,
tier=1,
narrative_hints=["prefer_live_admission_compatible_vulns"],
),
)
assert {v.type for v in spec.truth_graph.vulns} == {"path_traversal", "sqli"}
assert all(_looks_executable(v.remediation) for v in spec.truth_graph.vulns)
assert len({flag.path for flag in spec.flags}) == len(spec.flags)
@pytest.mark.asyncio
async def test_template_builder_deterministic_with_seed(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
ctx1 = BuildContext(seed=123, tier=1)
ctx2 = BuildContext(seed=123, tier=1)
spec1 = await builder.build(tier1_manifest, ctx1)
spec2 = await builder.build(tier1_manifest, ctx2)
assert spec1.flags[0].value == spec2.flags[0].value
@pytest.mark.asyncio
async def test_template_builder_has_task_briefings(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
ctx = BuildContext(seed=42, tier=1)
spec = await builder.build(tier1_manifest, ctx)
assert spec.task.red_briefing != ""
assert spec.task.blue_briefing != ""
@pytest.mark.asyncio
async def test_template_builder_preserves_manifest_tier_and_difficulty(tier2_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
ctx = BuildContext(seed=42, tier=2)
spec = await builder.build(tier2_manifest, ctx)
assert spec.topology["tier"] == tier2_manifest["tier"]
assert spec.topology["difficulty"] == tier2_manifest["difficulty"]
@pytest.mark.asyncio
async def test_template_builder_emits_payload_files(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
ctx = BuildContext(seed=42, tier=1)
spec = await builder.build(tier1_manifest, ctx)
assert spec.files
assert any(key.startswith("web:/var/www/portal/") for key in spec.files)
assert any(key.endswith("/var/log/app/access.log") for key in spec.files)
@pytest.mark.asyncio
async def test_template_builder_uses_manifest_users(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
spec = await builder.build(tier1_manifest, BuildContext(seed=1, tier=1))
usernames = {user["username"] for user in spec.topology["users"]}
manifest_usernames = {user["username"] for user in tier1_manifest["users"]}
assert manifest_usernames.issubset(usernames)
@pytest.mark.asyncio
async def test_template_builder_uses_manifest_company_context(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
spec = await builder.build(tier1_manifest, BuildContext(seed=1, tier=1))
company = tier1_manifest["company"]
ldap_dn = ",".join(f"dc={part}" for part in company["domain"].split("."))
assert company["name"] in spec.task.red_briefing
assert company["name"] in spec.task.blue_briefing
assert ldap_dn in spec.files["web:/var/www/config.php"]
assert company["name"] in spec.files["web:/var/www/portal/index.php"]
@pytest.mark.asyncio
async def test_template_builder_credential_reuse_steps_use_runtime_contract(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
manifest = {
**tier1_manifest,
"bug_families": ["credential_reuse"],
"difficulty": {**tier1_manifest.get("difficulty", {}), "min_vulns": 1, "max_vulns": 1},
}
spec = await TemplateOnlyBuilder().build(manifest, BuildContext(seed=3, tier=1))
runtime = spec.topology.get("runtime_contract", {})
assert runtime
joined = "\n".join(step.command for step in spec.golden_path)
assert runtime["ldap_bind_dn"] in joined
assert runtime["credential_reuse_user"] in joined
assert runtime["credential_reuse_host"] in joined
assert "cn=webapp,dc=corp,dc=local" not in joined
assert "Svc!Ldap2024" not in joined
config_key = f"{runtime['web_host']}:{runtime['web_config_path']}"
config_payload = spec.files[config_key]
assert runtime["db_user"] in config_payload
assert runtime["db_password"] in config_payload
assert runtime["ldap_bind_dn"] in config_payload
assert runtime["ldap_bind_pw"] in config_payload
def test_render_payloads_use_runtime_contract_paths_and_db_name():
from open_range.builder.builder import render_template_payloads
from open_range.protocols import TruthGraph, Vulnerability
snapshot = SnapshotSpec(
topology={
"tier": 1,
"hosts": ["frontend", "database", "directory"],
"org_name": "OpenRange",
"domain": "corp.local",
"runtime_contract": {
"domain": "corp.local",
"web_host": "frontend",
"db_host": "database",
"ldap_host": "directory",
"web_doc_root": "/srv/http/portal",
"web_config_path": "/srv/http/config.php",
"db_name": "clinic_db",
"db_user": "svc_portal",
"db_password": "SvcPortal!123",
"ldap_bind_dn": "cn=svc_portal,dc=corp,dc=local",
"ldap_bind_pw": "SvcPortal!123",
"ldap_search_base_dn": "dc=corp,dc=local",
"credential_reuse_user": "svc_portal",
"credential_reuse_host": "database",
"credential_reuse_password": "SvcPortal!123",
},
},
truth_graph=TruthGraph(
vulns=[
Vulnerability(id="v1", type="path_traversal", host="frontend"),
Vulnerability(id="v2", type="idor", host="frontend"),
]
),
flags=[
FlagSpec(id="f1", value="FLAG{path}", path="/var/flags/path_flag.txt", host="frontend"),
FlagSpec(id="f2", value="FLAG{db}", path="db:flags.secrets.flag", host="database"),
],
golden_path=[],
)
files = render_template_payloads(snapshot)
assert "frontend:/srv/http/portal/index.php" in files
download = files["frontend:/srv/http/portal/download.php"]
assert 'readfile("/srv/http/config.php")' in download
assert "GRANT SELECT ON clinic_db.* TO 'leaked_user'@'%';" in files["db:sql"]
@pytest.mark.asyncio
async def test_template_builder_output_is_manifest_canonicalized(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
builder = TemplateOnlyBuilder()
spec = await builder.build(tier1_manifest, BuildContext(seed=1, tier=1))
assert "host_catalog" in spec.topology
assert "host_details" in spec.topology
assert "dependency_edges" in spec.topology
assert "principal_catalog" in spec.topology
def test_render_payloads_credential_reuse_not_coupled_to_path_traversal_flag():
from open_range.builder.builder import render_template_payloads
from open_range.protocols import TruthGraph, Vulnerability
snapshot = SnapshotSpec(
topology={"tier": 1, "hosts": ["web"], "org_name": "OpenRange", "domain": "corp.local"},
truth_graph=TruthGraph(
vulns=[Vulnerability(id="v1", type="credential_reuse", host="ldap")]
),
flags=[FlagSpec(id="f1", value="FLAG{cred_only}", path="/var/flags/flag1.txt", host="db")],
golden_path=[],
)
files = render_template_payloads(snapshot)
download = files["web:/var/www/portal/download.php"]
assert "config.php" in download
assert "FLAG{cred_only}" not in download
assert "flag1.txt" not in download
def test_render_payloads_path_traversal_keeps_flag_wiring():
from open_range.builder.builder import render_template_payloads
from open_range.protocols import TruthGraph, Vulnerability
snapshot = SnapshotSpec(
topology={"tier": 1, "hosts": ["web"], "org_name": "OpenRange", "domain": "corp.local"},
truth_graph=TruthGraph(
vulns=[Vulnerability(id="v1", type="path_traversal", host="web")]
),
flags=[FlagSpec(id="f1", value="FLAG{path}", path="/var/flags/path_flag.txt", host="web")],
golden_path=[],
)
files = render_template_payloads(snapshot)
download = files["web:/var/www/portal/download.php"]
assert "FLAG{path}" in download
assert "path_flag.txt" in download
@pytest.mark.asyncio
async def test_mutator_builds_child_snapshot_with_lineage(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
from open_range.builder.mutator import Mutator
builder = TemplateOnlyBuilder()
mutator = Mutator(builder)
root = await mutator.mutate(tier1_manifest, context=BuildContext(seed=1, tier=1))
child = await mutator.mutate(
tier1_manifest,
context=BuildContext(seed=2, tier=1),
parent_snapshot=root,
parent_snapshot_id="root_snap",
)
assert child.lineage.parent_snapshot_id == "root_snap"
assert child.lineage.generation_depth == 1
assert child.mutation_plan is not None
assert child.mutation_plan.parent_snapshot_id == "root_snap"
assert child.mutation_plan.ops
assert child.lineage.mutation_summary
@pytest.mark.asyncio
async def test_mutator_compiles_root_snapshot_from_manifest_graph(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
from open_range.builder.mutator import Mutator
root = await Mutator(TemplateOnlyBuilder()).mutate(
tier1_manifest,
context=BuildContext(seed=1, tier=1),
)
topology = root.topology
assert topology["host_details"]["web"]["services"]
assert topology["dependency_edges"]
assert topology["trust_edges"]
assert "principal_catalog" in topology
# After fixing tier1_basic.yaml, all trust_relationships reference
# users that exist in the users section, so there should be no
# trust-only principals.
assert not topology["manifest_normalization"]["trust_only_principals"]
@pytest.mark.asyncio
async def test_mutator_rebuilds_child_files_from_mutated_snapshot(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
from open_range.builder.mutator import Mutator
from open_range.protocols import MutationOp, MutationPlan
mutator = Mutator(TemplateOnlyBuilder())
parent = await mutator.mutate(tier1_manifest, context=BuildContext(seed=1, tier=1))
parent.files = {"web:/tmp/stale.txt": "stale\n"}
def forced_plan(**kwargs):
return MutationPlan(
parent_snapshot_id="root_snap",
ops=[
MutationOp(
mutation_id="noise1",
op_type="add_benign_noise",
target_selector={"location": "siem:/var/log/siem/custom.log"},
params={"location": "siem:/var/log/siem/custom.log"},
)
],
)
mutator._plan_mutations = forced_plan # type: ignore[method-assign]
child = await mutator.mutate(
tier1_manifest,
context=BuildContext(seed=2, tier=1),
parent_snapshot=parent,
parent_snapshot_id="root_snap",
)
assert "web:/tmp/stale.txt" not in child.files
assert "siem:/var/log/siem/custom.log" in child.files
@pytest.mark.asyncio
async def test_mutator_seed_vuln_adds_flag_task_path_and_payloads(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
from open_range.builder.mutator import Mutator
from open_range.protocols import MutationOp, MutationPlan, TruthGraph
mutator = Mutator(TemplateOnlyBuilder())
parent = await mutator.mutate(tier1_manifest, context=BuildContext(seed=1, tier=1))
parent.truth_graph = TruthGraph()
parent.flags = []
parent.golden_path = []
parent.evidence_spec = []
parent.task.success_conditions = []
parent.task.milestones = []
def forced_plan(**kwargs):
return MutationPlan(
parent_snapshot_id="root_snap",
ops=[
MutationOp(
mutation_id="seed_path_traversal",
op_type="seed_vuln",
target_selector={"host": "web"},
params={
"vuln_type": "path_traversal",
"template_id": "vuln_path_traversal",
"required_services": ["nginx", "php-fpm"],
},
)
],
)
mutator._plan_mutations = forced_plan # type: ignore[method-assign]
child = await mutator.mutate(
tier1_manifest,
context=BuildContext(seed=2, tier=1),
parent_snapshot=parent,
parent_snapshot_id="root_snap",
)
path_vulns = [v for v in child.truth_graph.vulns if v.type == "path_traversal"]
assert path_vulns
new_flag = child.flags[-1]
assert new_flag.value.endswith("_mut1}")
assert new_flag.path.endswith("_mut1.txt")
assert any(step.command.startswith("submit_flag ") and new_flag.value in step.command for step in child.golden_path)
assert {"type": "flag", "value": new_flag.value} in child.task.success_conditions
assert any(path_vulns[-1].injection_point in step.command for step in child.golden_path)
assert "web:/var/www/portal/download.php" in child.files
assert new_flag.value in child.files["web:/var/www/portal/download.php"]
@pytest.mark.asyncio
async def test_mutator_fails_fast_on_illegal_seed_vuln_family(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
from open_range.builder.mutator import Mutator
from open_range.protocols import MutationOp, MutationPlan
mutator = Mutator(TemplateOnlyBuilder())
parent = await mutator.mutate(tier1_manifest, context=BuildContext(seed=1, tier=1))
def forced_plan(**kwargs):
return MutationPlan(
parent_snapshot_id="root_snap",
ops=[
MutationOp(
mutation_id="seed_bad_family",
op_type="seed_vuln",
target_selector={"host": "web"},
params={"vuln_type": "totally_fake_bug", "required_services": ["nginx"]},
)
],
)
def should_not_apply(*args, **kwargs): # pragma: no cover - assertion path
raise AssertionError("_apply_plan should not run for illegal mutation plans")
mutator._plan_mutations = forced_plan # type: ignore[method-assign]
mutator._apply_plan = should_not_apply # type: ignore[method-assign]
with pytest.raises(ValueError, match="illegal family"):
await mutator.mutate(
tier1_manifest,
context=BuildContext(seed=2, tier=1),
parent_snapshot=parent,
parent_snapshot_id="root_snap",
)
@pytest.mark.asyncio
async def test_mutator_fails_fast_on_illegal_add_service_target(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
from open_range.builder.mutator import Mutator
from open_range.protocols import MutationOp, MutationPlan
mutator = Mutator(TemplateOnlyBuilder())
parent = await mutator.mutate(tier1_manifest, context=BuildContext(seed=1, tier=1))
def forced_plan(**kwargs):
return MutationPlan(
parent_snapshot_id="root_snap",
ops=[
MutationOp(
mutation_id="add_bad_service",
op_type="add_service",
target_selector={"host": "web"},
params={"service": "totally_fake_service"},
)
],
)
def should_not_apply(*args, **kwargs): # pragma: no cover - assertion path
raise AssertionError("_apply_plan should not run for illegal mutation plans")
mutator._plan_mutations = forced_plan # type: ignore[method-assign]
mutator._apply_plan = should_not_apply # type: ignore[method-assign]
with pytest.raises(ValueError, match="illegal service"):
await mutator.mutate(
tier1_manifest,
context=BuildContext(seed=2, tier=1),
parent_snapshot=parent,
parent_snapshot_id="root_snap",
)
@pytest.mark.asyncio
async def test_mutator_live_only_templates_exclude_weak_creds(tier1_manifest):
from open_range.builder.builder import TemplateOnlyBuilder
from open_range.builder.mutator import Mutator
mutator = Mutator(TemplateOnlyBuilder())
root = await mutator.mutate(
tier1_manifest,
context=BuildContext(seed=1, tier=1),
)
templates = mutator._compatible_vuln_templates( # type: ignore[attr-defined]
root,
BuildContext(
seed=2,
tier=1,
narrative_hints=["prefer_live_admission_compatible_vulns"],
),
)
assert templates
assert {template["type"] for template in templates}.issubset(
{"sqli", "path_traversal"}
)
# ---------------------------------------------------------------------------
# FileBuilder
# ---------------------------------------------------------------------------
@pytest.mark.asyncio
async def test_file_builder_loads_from_disk():
from open_range.builder.builder import FileBuilder
# Create a temp snapshot directory with a valid spec.json
with tempfile.TemporaryDirectory() as tmpdir:
snap_dir = f"{tmpdir}/test_snap"
import os
os.makedirs(snap_dir)
spec = SnapshotSpec(
topology={"hosts": ["web"]},
flags=[FlagSpec(id="f1", value="FLAG{file_test}", path="/f.txt", host="web")],
golden_path=[
GoldenPathStep(step=1, command="echo hi", expect_in_stdout="hi"),
],
)
# FileBuilder expects JSON with keys matching LLM output format
data = {
"topology": spec.topology,
"flags": [f.model_dump() for f in spec.flags],
"golden_path": [
{"step": s.step, "cmd": s.command, "expect_stdout": s.expect_in_stdout}
for s in spec.golden_path
],
"truth_graph": {"vulns": [], "exploit_chain": []},
"evidence_spec": {},
"npc_traffic": {"http_rate": 10},
"npc_personas": [],
"task": {"red_briefing": "Go.", "blue_briefing": "Watch."},
}
with open(f"{snap_dir}/spec.json", "w") as f:
json.dump(data, f)
builder = FileBuilder(snapshot_dir=tmpdir)
ctx = BuildContext(seed=0)
result = await builder.build({}, ctx)
assert isinstance(result, SnapshotSpec)
assert result.topology["hosts"] == ["web"]
@pytest.mark.asyncio
async def test_file_builder_missing_dir():
from open_range.builder.builder import FileBuilder
builder = FileBuilder(snapshot_dir="/nonexistent/path")
ctx = BuildContext()
with pytest.raises(FileNotFoundError):
await builder.build({}, ctx)
# ---------------------------------------------------------------------------
# SnapshotStore
# ---------------------------------------------------------------------------
@pytest.mark.asyncio
async def test_snapshot_store_store_and_select():
from open_range.builder.snapshot_store import SnapshotStore
with tempfile.TemporaryDirectory() as tmpdir:
store = SnapshotStore(store_dir=tmpdir)
spec = SnapshotSpec(
topology={"hosts": ["web"]},
flags=[FlagSpec(id="f1", value="FLAG{store}", path="/f.txt", host="web")],
)
sid = await store.store(spec, snapshot_id="test_snap")
assert sid == "test_snap"
loaded = await store.select(strategy="latest")
assert isinstance(loaded, SnapshotSpec)
assert loaded.flags[0].value == "FLAG{store}"
@pytest.mark.asyncio
async def test_snapshot_store_list():
from open_range.builder.snapshot_store import SnapshotStore
with tempfile.TemporaryDirectory() as tmpdir:
store = SnapshotStore(store_dir=tmpdir)
spec = SnapshotSpec(topology={"hosts": ["web"]})
await store.store(spec, snapshot_id="snap_a")
await store.store(spec, snapshot_id="snap_b")
listing = await store.list_snapshots()
assert len(listing) == 2
ids = {m["snapshot_id"] for m in listing}
assert "snap_a" in ids
assert "snap_b" in ids
@pytest.mark.asyncio
async def test_snapshot_store_repairs_missing_metadata_from_spec():
from open_range.builder.snapshot_store import SnapshotStore
with tempfile.TemporaryDirectory() as tmpdir:
store = SnapshotStore(store_dir=tmpdir)
spec = SnapshotSpec(topology={"hosts": ["web"]})
await store.store(spec, snapshot_id="snap_a")
metadata_path = Path(tmpdir) / "snap_a" / "metadata.json"
metadata_path.unlink()
listing = await store.list_snapshots()
assert len(listing) == 1
assert listing[0]["snapshot_id"] == "snap_a"
assert metadata_path.exists()
selected = await store.select_entry(strategy="latest")
assert selected.snapshot_id == "snap_a"
@pytest.mark.asyncio
async def test_snapshot_store_ignores_orphan_metadata_without_spec():
from open_range.builder.snapshot_store import SnapshotStore
with tempfile.TemporaryDirectory() as tmpdir:
store = SnapshotStore(store_dir=tmpdir)
spec = SnapshotSpec(topology={"hosts": ["web"]})
await store.store(spec, snapshot_id="snap_real")
orphan_dir = Path(tmpdir) / "orphan_meta"
orphan_dir.mkdir(parents=True, exist_ok=True)
(orphan_dir / "metadata.json").write_text(
json.dumps({"snapshot_id": "orphan_meta", "stored_at": 9999999999}),
encoding="utf-8",
)
listing = await store.list_snapshots()
ids = {meta["snapshot_id"] for meta in listing}
assert ids == {"snap_real"}
assert await store.count_entries() == 1
selected = await store.select_entry(strategy="latest")
assert selected.snapshot_id == "snap_real"
@pytest.mark.asyncio
async def test_snapshot_store_get_by_id():
from open_range.builder.snapshot_store import SnapshotStore
with tempfile.TemporaryDirectory() as tmpdir:
store = SnapshotStore(store_dir=tmpdir)
spec = SnapshotSpec(
topology={"hosts": ["db"]},
flags=[FlagSpec(id="f1", value="FLAG{get}", path="/f.txt", host="db")],
)
await store.store(spec, snapshot_id="my_snap")
loaded = await store.get("my_snap")
assert loaded.flags[0].value == "FLAG{get}"
@pytest.mark.asyncio
async def test_snapshot_store_get_missing_raises():
from open_range.builder.snapshot_store import SnapshotStore
with tempfile.TemporaryDirectory() as tmpdir:
store = SnapshotStore(store_dir=tmpdir)
with pytest.raises(FileNotFoundError):
await store.get("nonexistent")
@pytest.mark.asyncio
async def test_snapshot_store_select_empty_raises():
from open_range.builder.snapshot_store import SnapshotStore
with tempfile.TemporaryDirectory() as tmpdir:
store = SnapshotStore(store_dir=tmpdir)
with pytest.raises(FileNotFoundError):
await store.select()
@pytest.mark.asyncio
async def test_snapshot_store_random_select():
from open_range.builder.snapshot_store import SnapshotStore
with tempfile.TemporaryDirectory() as tmpdir:
store = SnapshotStore(store_dir=tmpdir)
for i in range(3):
spec = SnapshotSpec(topology={"hosts": [f"host_{i}"]})
await store.store(spec, snapshot_id=f"snap_{i}")
selected = await store.select(strategy="random")
assert isinstance(selected, SnapshotSpec)
|