Spaces:
Sleeping
Sleeping
File size: 14,531 Bytes
7a658b7 | 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 | """Shared utilities for all ScenarioFamilyGenerator subclasses.
Provides deterministic fake-data helpers, template filler, neutral tool-output
builder, and the ``ArchetypedGenerator`` intermediate base that wires in
archetype loading from ``data_artifacts/clustering/<family>/archetypes.json``.
"""
from __future__ import annotations
import hashlib
import json
import random
from abc import abstractmethod
from pathlib import Path
from ci_triage_env.data.clustering.archetypes import Archetype
from ci_triage_env.data.generators.base import ScenarioFamilyGenerator
from ci_triage_env.schemas.scenario import (
FailureSummary,
ToolOutput,
)
# ---------------------------------------------------------------------------
# Sample pools β kept small but varied enough for realistic output
# ---------------------------------------------------------------------------
_FEATURES = [
"auth", "payment", "search", "cache", "api-gateway",
"notifications", "logging", "metrics", "rate-limiter",
]
_FIX_KEYWORDS = [
"null-check", "race-condition", "timeout", "memory-leak",
"index-bounds", "retry-logic", "deadlock",
]
_OWNERS = ["@alice", "@bob", "@carol", "@dave", "@eve", "@frank"]
_TEAMS = ["platform", "backend", "frontend", "infra", "data-eng", "reliability"]
_TEST_MODULES = [
"tests/unit/test_auth.py",
"tests/integration/test_api.py",
"tests/unit/test_cache.py",
"tests/e2e/test_checkout.py",
"tests/unit/test_worker.py",
"tests/unit/test_scheduler.py",
"tests/integration/test_db.py",
]
_TEST_FUNCS = [
"test_user_login",
"test_concurrent_update",
"test_api_response_code",
"test_cache_miss",
"test_checkout_flow",
"test_worker_retry",
"test_rate_limiter_burst",
"test_scheduler_dedup",
"test_db_transaction_rollback",
]
_BUGGY_CODE_SNIPPETS = [
(
"def compute_total(items):\n"
" total = None\n"
" for item in items:\n"
" total += item.price # AttributeError when items is empty\n"
" return total\n"
),
(
"class Cache:\n"
" def get(self, key):\n"
" return self._store[key] # KeyError not caught\n"
"\n"
" def set(self, key, value):\n"
" self._store[key] = value\n"
),
(
"async def handle_request(req):\n"
" data = await fetch_user(req.user_id)\n"
" return process(data['profile']) # KeyError: 'profile' after schema change\n"
),
(
"def merge_results(a, b):\n"
" merged = a\n"
" merged.update(b) # mutates `a` β caller surprised by aliasing\n"
" return merged\n"
),
]
_NEUTRAL_CODE_TEMPLATE = (
"def {func_name}(self):\n"
" result = self.client.fetch()\n"
" self.assertEqual(result.status, 200)\n"
" self.assertIsNotNone(result.data)\n"
)
# ---------------------------------------------------------------------------
# Core helpers
# ---------------------------------------------------------------------------
def fill_template(
template: str,
slot_distributions: dict[str, list[str]],
rng: random.Random,
) -> str:
"""Replace ``{SLOT}`` placeholders with random values from the distribution."""
out = template
for slot, values in slot_distributions.items():
placeholder = "{" + slot + "}"
while placeholder in out:
replacement = rng.choice(values) if values else f"<{slot}>"
out = out.replace(placeholder, replacement, 1)
return out
def fake_sha(rng: random.Random) -> str:
return "".join(rng.choice("0123456789abcdef") for _ in range(40))
def fake_short_sha(rng: random.Random) -> str:
return fake_sha(rng)[:8]
def fake_timestamp(rng: random.Random) -> str:
year = rng.randint(2024, 2025)
month = rng.randint(1, 12)
day = rng.randint(1, 28)
hour = rng.randint(0, 23)
minute = rng.randint(0, 59)
second = rng.randint(0, 59)
return f"{year}-{month:02d}-{day:02d}T{hour:02d}:{minute:02d}:{second:02d}Z"
def scenario_id_for(family: str, seed: int) -> str:
"""Deterministic scenario ID β does NOT consume rng state."""
digest = hashlib.sha1(f"{family}:{seed}".encode()).hexdigest()[:8]
return f"{family}-s{seed}-{digest}"
def infer_suite(test_name: str) -> str:
if "integration" in test_name or "e2e" in test_name:
return "integration"
if "bench" in test_name or "perf" in test_name:
return "benchmark"
return "unit"
def pick_test_name(rng: random.Random) -> str:
return f"{rng.choice(_TEST_MODULES)}::{rng.choice(_TEST_FUNCS)}"
def pick_module(test_name: str) -> str:
parts = test_name.rsplit("::", 1)
return parts[0] if parts else test_name
def make_failure_summary(
family: str,
rng: random.Random,
*,
test_name: str,
log_excerpt: str,
) -> FailureSummary:
branch = rng.choice(
[
"main",
"develop",
f"feature/{rng.choice(_FEATURES)}",
f"fix/{rng.choice(_FIX_KEYWORDS)}",
]
)
return FailureSummary(
test_name=test_name,
suite=infer_suite(test_name),
branch=branch,
last_passing_commit=fake_sha(rng),
initial_log_excerpt=log_excerpt[:400],
timestamp=fake_timestamp(rng),
)
def pick_owner(rng: random.Random) -> tuple[str, str]:
"""Return (owner_handle, team)."""
return rng.choice(_OWNERS), rng.choice(_TEAMS)
# ---------------------------------------------------------------------------
# Metric sample helpers
# ---------------------------------------------------------------------------
def _metric_sample(rng: random.Random, metric: str, *, elevated: bool = False) -> dict:
val = rng.uniform(0.5, 0.95) if elevated else rng.uniform(0.02, 0.25)
return {"t": fake_timestamp(rng), metric: round(val, 3), "ok": not elevated}
def _metric_samples(
rng: random.Random, metric: str, *, elevated: bool = False, n: int = 5
) -> list[dict]:
return [_metric_sample(rng, metric, elevated=elevated) for _ in range(n)]
# ---------------------------------------------------------------------------
# Neutral tool-output builder β covers all 11 tools
# ---------------------------------------------------------------------------
def build_base_outputs(
test_name: str,
branch: str,
rng: random.Random,
*,
log_lines: list[str] | None = None,
rerun_passes: bool = True,
) -> dict[str, ToolOutput]:
"""Return a dict covering every tool with *neutral* (non-signal) content.
Individual generators call this first, then merge in family-specific
overrides for the informative tools.
"""
if log_lines is None:
log_lines = [f"[INFO] Running {test_name}", "PASS 1 test ran"]
module = pick_module(test_name)
owner, team = pick_owner(rng)
func_name = test_name.rsplit("::", 1)[-1]
neutral_code = _NEUTRAL_CODE_TEMPLATE.format(func_name=func_name)
base: dict[str, ToolOutput] = {
# read_logs β all 5 scopes
"read_logs:full": ToolOutput(
tool_name="read_logs",
payload={"lines": log_lines, "truncated": False},
cost_units=0.001,
),
"read_logs:test": ToolOutput(
tool_name="read_logs",
payload={"lines": log_lines[-5:], "truncated": len(log_lines) > 5},
cost_units=0.001,
),
"read_logs:stderr": ToolOutput(
tool_name="read_logs",
payload={"lines": ["(empty)"], "truncated": False},
cost_units=0.001,
),
"read_logs:kernel": ToolOutput(
tool_name="read_logs",
payload={"lines": ["(no kernel messages)"], "truncated": False},
cost_units=0.001,
),
"read_logs:build": ToolOutput(
tool_name="read_logs",
payload={"lines": ["Build succeeded in 42s"], "truncated": False},
cost_units=0.001,
),
# inspect_test_code
f"inspect_test_code:{test_name}": ToolOutput(
tool_name="inspect_test_code",
payload={"source": neutral_code, "fixtures": []},
cost_units=0.002,
),
# run_diagnostic β all 4 probes (healthy)
"run_diagnostic:network": ToolOutput(
tool_name="run_diagnostic",
payload={"ok": True, "details": {"latency_ms": rng.randint(2, 15)}},
cost_units=0.005,
),
"run_diagnostic:disk": ToolOutput(
tool_name="run_diagnostic",
payload={"ok": True, "details": {"free_gb": round(rng.uniform(20, 200), 1)}},
cost_units=0.005,
),
"run_diagnostic:memory": ToolOutput(
tool_name="run_diagnostic",
payload={"ok": True, "details": {"available_gb": round(rng.uniform(4, 32), 1)}},
cost_units=0.005,
),
"run_diagnostic:cpu": ToolOutput(
tool_name="run_diagnostic",
payload={"ok": True, "details": {"load_avg_1m": round(rng.uniform(0.1, 1.5), 2)}},
cost_units=0.005,
),
# cluster_metrics β all 4 metrics (healthy)
"cluster_metrics:queue_depth": ToolOutput(
tool_name="cluster_metrics",
payload={"samples": _metric_samples(rng, "queue_depth")},
cost_units=0.003,
),
"cluster_metrics:node_health": ToolOutput(
tool_name="cluster_metrics",
payload={"samples": _metric_samples(rng, "node_health")},
cost_units=0.003,
),
"cluster_metrics:network_latency": ToolOutput(
tool_name="cluster_metrics",
payload={"samples": _metric_samples(rng, "network_latency")},
cost_units=0.003,
),
"cluster_metrics:disk_io": ToolOutput(
tool_name="cluster_metrics",
payload={"samples": _metric_samples(rng, "disk_io")},
cost_units=0.003,
),
# query_flake_history β mostly passing (stable test)
f"query_flake_history:{test_name}": ToolOutput(
tool_name="query_flake_history",
payload={
"failure_count": 1,
"pass_count": 99,
"recent_failures": [{"run_id": fake_short_sha(rng), "at": fake_timestamp(rng)}],
},
cost_units=0.002,
),
# recent_commits β innocuous changes
f"recent_commits:{branch}": ToolOutput(
tool_name="recent_commits",
payload={
"commits": [
{
"sha": fake_short_sha(rng),
"author": rng.choice(_OWNERS),
"msg": "docs: update README",
"files": ["README.md"],
},
{
"sha": fake_short_sha(rng),
"author": rng.choice(_OWNERS),
"msg": "chore: bump minor versions",
"files": ["pyproject.toml"],
},
]
},
cost_units=0.002,
),
"recent_commits:main": ToolOutput(
tool_name="recent_commits",
payload={
"commits": [
{
"sha": fake_short_sha(rng),
"author": rng.choice(_OWNERS),
"msg": "chore: ci fix",
"files": [".github/workflows/ci.yml"],
}
]
},
cost_units=0.002,
),
# check_owner
f"check_owner:{module}": ToolOutput(
tool_name="check_owner",
payload={
"owner": owner,
"team": team,
"contact": f"{owner.lstrip('@')}@company.com",
},
cost_units=0.001,
),
# actions β bare keys, pre-populated with defaults
"rerun_test": ToolOutput(
tool_name="rerun_test",
payload={
"results": [
{"passed": rerun_passes, "duration_s": round(rng.uniform(1, 30), 2)}
]
},
cost_units=0.01,
),
"quarantine_test": ToolOutput(
tool_name="quarantine_test",
payload={"quarantined": False, "ticket": ""},
cost_units=0.005,
),
"file_bug": ToolOutput(
tool_name="file_bug",
payload={"ticket_id": "N/A", "url": ""},
cost_units=0.005,
),
"ping_owner": ToolOutput(
tool_name="ping_owner",
payload={"delivered": False},
cost_units=0.002,
),
}
return base
# ---------------------------------------------------------------------------
# ArchetypedGenerator β intermediate base class
# ---------------------------------------------------------------------------
class ArchetypedGenerator(ScenarioFamilyGenerator):
"""Extends ScenarioFamilyGenerator with archetype-loading support.
Subclasses must implement ``_default_archetypes()`` as the offline fallback.
Archetypes are loaded lazily and cached for the lifetime of the instance.
"""
def __init__(self, archetypes_dir: Path | None = None) -> None:
self._archetypes_dir = archetypes_dir or Path("data_artifacts/clustering")
self._loaded: list[Archetype] | None = None
@abstractmethod
def _default_archetypes(self) -> list[Archetype]:
"""Hardcoded fallback archetypes used when no clustering data is on disk."""
def _get_archetypes(self) -> list[Archetype]:
if self._loaded is not None:
return self._loaded
path = self._archetypes_dir / self.family_name / "archetypes.json"
if path.exists():
try:
data = json.loads(path.read_text())
loaded = [Archetype.model_validate(d) for d in data]
if loaded:
self._loaded = loaded
return self._loaded
except Exception:
pass
self._loaded = self._default_archetypes()
return self._loaded
def _pick_archetype(self, rng: random.Random) -> Archetype:
return rng.choice(self._get_archetypes())
def _pick_buggy_code(self, rng: random.Random) -> str:
return rng.choice(_BUGGY_CODE_SNIPPETS)
|