Two decisions taken with the operator: stdlib HTML driver instead of Playwright (F-0004), and a deterministic discovery runtime instead of a live model. Both sit behind interfaces so the alternatives drop in later. - html.py: stdlib DOM parse and query - agentic.py: DiscoveryRuntime (agentic arm, ignores data-td by construction) and RecordedSelectorRuntime (control arm, uses the strongest identifier the page offers) - browser.py: per-actor sessions over real HTTP, constructed per call so no actor inherits another's connection state - cost/nondeterminism metrics recorded from the first run F-0005 (CONCEPT_DRIFT): the H-001 result is a narrowing. Where test ids are preserved, discovery 9/9 and recorded selectors 9/9 - the semantic action buys nothing. Where they are dropped, discovery 2/3 and recorded 0/3. The concept model presents semantic actions as generally superior; the evidence says conditionally superior. M21 and M22 added mid-task: the deciding side of the axis was N=1. M22 (field names renamed) defeats the heuristic and is the first concrete evidence that a live model would add capability, not just cost. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Assistant: claude-code Assistant-Model: opus Assistant-Process: 1629012@bnt-lap001 Assistant-Session: 78d4fb13-8a1e-474b-87a3-9b9261c49a39
88 lines
3.3 KiB
Python
88 lines
3.3 KiB
Python
"""The agentic realization scenario: one semantic action, on a real surface.
|
|
|
|
Scope is deliberately one action. `grant_access(Bob, R, READ)` is realized
|
|
through the browser UI by an actor runtime that must *find* the control, while
|
|
everything else — setup, revocation, and every oracle — stays deterministic.
|
|
|
|
That split is the design: agentic flexibility at the realization layer only,
|
|
deterministic truth everywhere else.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import threading
|
|
from contextlib import contextmanager
|
|
|
|
from testdriver import (
|
|
Actor, Cast, DirectDriver, Oracle, Scenario, SemanticAction, StateObserver,
|
|
Step, VerificationAsset, World,
|
|
)
|
|
from testdriver.browser import BrowserDriver, Session, record_baseline_selectors
|
|
from testdriver.agentic import DiscoveryRuntime
|
|
from lab.http_api import serve
|
|
from lab.mutations import ObservationChannel, build_lab
|
|
from scenarios.alice_bob_carol import RESOURCE, USE_CASE
|
|
|
|
BROWSER = frozenset({"browser"})
|
|
|
|
|
|
@contextmanager
|
|
def lab_server(*mutations: str):
|
|
"""A live lab on a free port. The surface is real HTTP, not a function call."""
|
|
app, tokens = build_lab(*mutations)
|
|
app.request(tokens["alice"], "create_resource",
|
|
resource_id=RESOURCE, content="the secret")
|
|
server = serve(app)
|
|
thread = threading.Thread(target=server.serve_forever, daemon=True)
|
|
thread.start()
|
|
base_url = f"http://127.0.0.1:{server.server_address[1]}"
|
|
try:
|
|
yield app, tokens, base_url
|
|
finally:
|
|
server.shutdown()
|
|
server.server_close()
|
|
|
|
|
|
def baseline_recordings() -> dict[str, str]:
|
|
"""Capture the control arm's selectors once, against the unmutated surface."""
|
|
with lab_server() as (app, tokens, base_url):
|
|
session = Session(base_url, tokens["alice"])
|
|
_, html = session.get(f"/resources/{RESOURCE}/view")
|
|
return record_baseline_selectors(html)
|
|
|
|
|
|
def build_agentic(app, tokens, base_url, runtime=None):
|
|
"""One agentic step; deterministic oracles unchanged."""
|
|
cast = Cast()
|
|
for name in ("alice", "bob", "carol"):
|
|
cast.add(Actor(name, name.title(), credentials={"token": tokens[name]}))
|
|
|
|
world = World(id="w-browser", sut=app, sut_version=app.version, cast=cast)
|
|
|
|
scenario = Scenario(
|
|
id="sc-grant-via-browser",
|
|
use_case=USE_CASE,
|
|
variant=f"browser/{'+'.join(app.applied_mutations) or 'baseline'}",
|
|
watches=(), # filled from the reference scenario below
|
|
steps=(
|
|
Step("s2-grant", "alice", SemanticAction(
|
|
"grant_access",
|
|
{"subject_id": "bob", "permission": "READ"},
|
|
permitted_surfaces=BROWSER,
|
|
postcondition=lambda obs: obs["state_permission:bob:R"] == "READ",
|
|
)),
|
|
),
|
|
)
|
|
from scenarios.alice_bob_carol import build as build_reference
|
|
_, _, reference_observer, _, _ = build_reference()
|
|
scenario = Scenario(
|
|
id=scenario.id, use_case=scenario.use_case, steps=scenario.steps,
|
|
watches=reference_observer.watches, variant=scenario.variant,
|
|
)
|
|
|
|
driver = BrowserDriver(base_url, tokens, runtime or DiscoveryRuntime(), RESOURCE)
|
|
observer = StateObserver(ObservationChannel(app), scenario.watches)
|
|
asset = VerificationAsset(
|
|
id="va-grant-via-browser", scenario=scenario, maturity="T1"
|
|
)
|
|
return world, driver, observer, asset, Oracle()
|