File size: 16,229 Bytes
284922d 3ac27dc | 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 | """Exhaustive offline tests for the Learning & Knowledge Engine."""
from datetime import datetime
from unittest.mock import MagicMock
from synthra.core.catalog import DatasetCatalog
from synthra.core.domain import (
AlphaCandidate,
Campaign,
CampaignStatus,
Experiment,
Hypothesis,
HypothesisStatus,
Region,
SimulationRequest,
SimulationResult,
Universe,
)
from synthra.execution.runner import SimulationRunner
from synthra.learning import (
ExpressionScorer,
FeedbackGenerator,
HistoryTracker,
HypothesisSelector,
LearningRecord,
LearningRepository,
ResultAnalyzer,
jaccard_similarity,
normalize_expression,
)
from synthra.memory import (
AlphaCandidateRepository,
CampaignRepository,
DatabaseManager,
ExperimentRepository,
HypothesisRepository,
)
from synthra.research.generator import ExpressionGenerator
from synthra.research.hypothesis import HypothesisGenerator, MockLLMProvider
from synthra.research.mutator import MutationEngine
from synthra.research.orchestrator import ResearchOrchestrator
from synthra.research.planner import Planner
from synthra.research.ranking import CandidateRanker
from synthra.research.validator import Validator
# ---------------------------------------------------------------------------
# Result Analyzer Tests
# ---------------------------------------------------------------------------
def test_result_analyzer_classifies_metrics() -> None:
"""Verify that ResultAnalyzer correctly identifies success/failure reasons."""
analyzer = ResultAnalyzer()
# Case 1: Bad stats
fail_res = SimulationResult(
sharpe=0.2,
fitness=0.1,
margin=-0.02,
turnover=0.85,
coverage=0.75,
simulated_at=datetime.utcnow(),
)
failures, successes = analyzer.analyze(fail_res)
assert "weak Sharpe" in failures
assert "poor fitness" in failures
assert "negative margin" in failures
assert "turnover too high" in failures
assert "coverage too low" in failures
assert len(successes) == 0
# Case 2: Good stats
pass_res = SimulationResult(
sharpe=1.8,
fitness=2.2,
margin=0.08,
turnover=0.03,
coverage=0.98,
simulated_at=datetime.utcnow(),
)
failures, successes = analyzer.analyze(pass_res)
assert len(failures) == 0
assert "strong Sharpe" in successes
assert "excellent fitness" in successes
assert "high coverage" in successes
assert "low turnover" in successes
# ---------------------------------------------------------------------------
# Similarity Detection Tests
# ---------------------------------------------------------------------------
def test_expression_normalization() -> None:
"""Verify expression normalizer removes spacing, cased characters, and numbers."""
expr1 = "ts_mean(close, 20) / open"
expr2 = "TS_MEAN( close, 5 ) / open"
assert normalize_expression(expr1) == "ts_mean(close,#)/open"
assert normalize_expression(expr2) == "ts_mean(close,#)/open"
def test_jaccard_token_similarity() -> None:
"""Verify Jaccard token similarity behaves correctly over expressions."""
expr1 = "ts_mean(close, 20) / open"
expr2 = "ts_mean(close, 10) / open"
expr3 = "rank(ts_sum(volume, 5))"
# Minimal difference (only numbers are ignored in tokens) -> High similarity
sim_12 = jaccard_similarity(expr1, expr2)
assert sim_12 == 1.0
# Complete difference -> Low similarity
sim_13 = jaccard_similarity(expr1, expr3)
assert sim_13 < 0.2
# ---------------------------------------------------------------------------
# Feedback Mapping Tests
# ---------------------------------------------------------------------------
def test_feedback_generator_creates_records() -> None:
"""Verify FeedbackGenerator maps backtest outcomes to a LearningRecord."""
generator = FeedbackGenerator()
req = SimulationRequest(
expression="ts_mean(close, 20) / open",
region=Region.US,
universe=Universe.TOP2000,
delay=1,
decay=0,
neutralization="SUBINDUSTRY",
)
res = SimulationResult(
sharpe=1.5,
fitness=1.8,
margin=0.06,
turnover=0.12,
coverage=0.97,
simulated_at=datetime.utcnow(),
)
record = generator.generate_record(
req, res, datasets=["pv"], operators=["ts_mean", "delay"]
)
assert isinstance(record, LearningRecord)
assert record.expression == req.expression
assert record.datasets == ["pv"]
assert record.operators == ["ts_mean", "delay"]
assert record.delay == 1
assert record.neutralization == "SUBINDUSTRY"
assert record.universe == "TOP2000"
assert record.region == "US"
assert record.sharpe == 1.5
assert record.fitness == 1.8
assert record.success is True
assert len(record.failure_reasons) == 0
# ---------------------------------------------------------------------------
# Selector Tests
# ---------------------------------------------------------------------------
def test_hypothesis_selector_decisions() -> None:
"""Verify HypothesisSelector evaluates records and routes actions correctly."""
selector = HypothesisSelector()
# Helper function to generate records
def make_record(sharpe: float, success: bool) -> LearningRecord:
return LearningRecord(
expression="expr",
datasets=["pv"],
operators=["ts_mean"],
delay=1,
neutralization="SUBINDUSTRY",
universe="TOP2000",
region="US",
sharpe=sharpe,
fitness=1.0,
margin=0.05,
turnover=0.1,
coverage=0.9,
success=success,
)
# 1. Mutate decision (high Sharpe, successful)
recs_mutate = [make_record(1.5, True), make_record(1.3, True)]
assert selector.evaluate_hypothesis(recs_mutate) == "mutate"
# 2. Retire decision (low Sharpe, failed)
recs_retire = [make_record(0.2, False)]
assert selector.evaluate_hypothesis(recs_retire) == "retire"
# 3. Regenerate decision (moderate Sharpe, mixed success)
recs_regen = [make_record(0.8, True), make_record(0.9, False)]
assert selector.evaluate_hypothesis(recs_regen) == "regenerate"
# ---------------------------------------------------------------------------
# Scorer Tests
# ---------------------------------------------------------------------------
def test_expression_scorer_evaluation() -> None:
"""Verify Scorer scores expressions, penalizing similarity to history."""
rec = LearningRecord(
expression="ts_mean(close, 20) / open",
datasets=["pv"],
operators=["ts_mean"],
delay=1,
neutralization="SUBINDUSTRY",
universe="TOP2000",
region="US",
sharpe=1.2,
fitness=1.5,
margin=0.05,
turnover=0.10,
coverage=0.95,
success=True,
)
scorer = ExpressionScorer(history=[rec])
res = SimulationResult(
sharpe=1.4,
fitness=1.6,
margin=0.06,
turnover=0.08,
coverage=0.96,
simulated_at=datetime.utcnow(),
)
# Score a novel expression (high novelty, no penalty)
score_novel = scorer.score_expression("rank(ts_sum(volume, 5))", res)
# Score a highly similar expression (low novelty, high similarity penalty)
score_similar = scorer.score_expression("ts_mean(close, 10) / open", res)
assert score_novel > score_similar
# ---------------------------------------------------------------------------
# History Tracker and Repository Tests
# ---------------------------------------------------------------------------
def test_history_tracker_saves_entities(
db_manager: DatabaseManager,
campaign_repo: CampaignRepository,
hypothesis_repo: HypothesisRepository,
experiment_repo: ExperimentRepository,
candidate_repo: AlphaCandidateRepository,
) -> None:
"""Verify HistoryTracker persists Campaigns, Hypotheses, Experiments, Candidates."""
tracker = HistoryTracker(db_manager=db_manager)
campaign = Campaign(
id="CMP-0001",
name="Test",
region=Region.US,
universe=Universe.TOP2000,
budget_limit=100.0,
)
tracker.record_campaign(campaign)
assert campaign_repo.get_by_id("CMP-0001") is not None
hypothesis = Hypothesis(
id="HYP-0001",
campaign_id="CMP-0001",
rationale="Momentum signals are predictive in price-volume.",
target_variable="returns",
datasets=["pv"],
operators=["ts_mean"],
status=HypothesisStatus.DRAFT,
)
tracker.record_hypothesis(hypothesis)
assert hypothesis_repo.get_by_id("HYP-0001") is not None
req = SimulationRequest(
expression="close",
region=Region.US,
universe=Universe.TOP2000,
)
experiment = Experiment(
id="EXP-0001",
campaign_id="CMP-0001",
hypothesis_id="HYP-0001",
expression="close",
request=req,
)
tracker.record_experiment(experiment)
assert experiment_repo.get_by_id("EXP-0001") is not None
candidate = AlphaCandidate(
id="AST-0001",
experiment_id="EXP-0001",
hypothesis_id="HYP-0001",
campaign_id="CMP-0001",
expression="close",
result=SimulationResult(
sharpe=1.0,
fitness=1.0,
margin=0.01,
turnover=0.1,
coverage=0.9,
simulated_at=datetime.utcnow(),
),
)
tracker.record_candidate(candidate)
assert candidate_repo.get_by_id("AST-0001") is not None
def test_learning_repository_persistence(db_manager: DatabaseManager) -> None:
"""Verify LearningRepository correctly inserts and queries LearningRecords."""
repo = LearningRepository(db_manager=db_manager)
record = LearningRecord(
expression="ts_mean(close, 20)",
datasets=["pv"],
operators=["ts_mean"],
delay=1,
neutralization="SUBINDUSTRY",
universe="TOP2000",
region="US",
sharpe=1.5,
fitness=2.0,
margin=0.05,
turnover=0.04,
coverage=0.98,
success=True,
failure_reasons=[],
success_reasons=["strong Sharpe"],
)
repo.add_record(record)
records = repo.get_all_records()
assert len(records) == 1
assert records[0].expression == "ts_mean(close, 20)"
assert records[0].success_reasons == ["strong Sharpe"]
# ---------------------------------------------------------------------------
# Orchestrator Integration Test
# ---------------------------------------------------------------------------
def test_orchestrator_learning_integration(
db_manager: DatabaseManager,
campaign_repo: CampaignRepository,
hypothesis_repo: HypothesisRepository,
experiment_repo: ExperimentRepository,
candidate_repo: AlphaCandidateRepository,
catalog: DatasetCatalog,
) -> None:
"""Verify autonomous campaign loop with full history and learning integration."""
validator = Validator(catalog=catalog)
mock_llm = MockLLMProvider()
tracker = HistoryTracker(db_manager=db_manager)
feedback_gen = FeedbackGenerator()
learning_repo = LearningRepository(db_manager=db_manager)
# Scorer uses a mock/empty history
scorer = ExpressionScorer(history=[])
planner = Planner(catalog=catalog)
hypothesis_gen = HypothesisGenerator(llm_provider=mock_llm)
expression_gen = ExpressionGenerator(
llm_provider=mock_llm, catalog=catalog, validator=validator
)
mutator = MutationEngine(catalog=catalog)
ranker = CandidateRanker()
# Mock SimulationRunner
mock_sim_runner = MagicMock(spec=SimulationRunner)
mock_sim_runner.run.return_value = SimulationResult(
sharpe=1.6,
fitness=2.2,
margin=0.07,
turnover=0.04,
coverage=0.99,
simulated_at=datetime.utcnow(),
)
orchestrator = ResearchOrchestrator(
planner=planner,
hypothesis_generator=hypothesis_gen,
expression_generator=expression_gen,
validator=validator,
mutation_engine=mutator,
simulation_runner=mock_sim_runner,
ranker=ranker,
feedback_generator=feedback_gen,
learning_repository=learning_repo,
history_tracker=tracker,
scorer=scorer,
)
campaign = Campaign(
id="CMP-0001",
name="Momentum anomaly campaign",
region=Region.US,
universe=Universe.TOP2000,
budget_limit=5000.0,
status=CampaignStatus.ACTIVE,
created_at=datetime.utcnow(),
)
candidates = orchestrator.execute_campaign(campaign, max_hypotheses_per_task=1)
assert len(candidates) > 0
# Ensure history tracker recorded entities
assert campaign_repo.get_by_id("CMP-0001") is not None
assert len(learning_repo.get_all_records()) > 0
def test_scorer_operator_dataset_mutation_ranking(db_manager: DatabaseManager) -> None:
"""Verify operator, dataset, and mutation scoring and mutation ranking logic."""
from synthra.learning import ExpressionScorer, LearningRecord
from synthra.learning.repository import LearningRepository
from synthra.research.evolution.lineage import LineageTracker
# Ensure expression_lineages table exists
LineageTracker(db_manager)
# Pre-populate database with some learning records
repo = LearningRepository(db_manager)
rec1 = LearningRecord(
expression="ts_mean(close, 20)",
datasets=["market_data"],
operators=["ts_mean"],
delay=1,
neutralization="SUBINDUSTRY",
universe="TOP2000",
region="US",
sharpe=1.8,
fitness=2.2,
margin=0.08,
turnover=0.04,
coverage=0.98,
success=True,
)
rec2 = LearningRecord(
expression="delay(open, 5)",
datasets=["fundamental_data"],
operators=["delay"],
delay=1,
neutralization="SUBINDUSTRY",
universe="TOP2000",
region="US",
sharpe=0.5,
fitness=0.8,
margin=0.02,
turnover=0.1,
coverage=0.9,
success=False,
)
repo.add_record(rec1)
repo.add_record(rec2)
# Pre-populate lineage and simulation logs to test mutation scores
with db_manager.transaction() as conn:
conn.execute(
"""
INSERT OR REPLACE INTO expression_lineages (
expression, parent_id, generation, mutation_type, campaign_id, hypothesis_id, origin
) VALUES (?, ?, ?, ?, ?, ?, ?)
""",
("ts_mean(close, 20)", "parent", 1, "operator_replacement", "CMP-0001", "HYP-0001", "mutated")
)
conn.execute(
"""
INSERT OR REPLACE INTO expression_lineages (
expression, parent_id, generation, mutation_type, campaign_id, hypothesis_id, origin
) VALUES (?, ?, ?, ?, ?, ?, ?)
""",
("delay(open, 5)", "parent", 1, "parameter_tuning", "CMP-0001", "HYP-0001", "mutated")
)
scorer = ExpressionScorer(db_manager=db_manager)
# Check scores
assert scorer.get_operator_score("ts_mean") == 1.8
assert scorer.get_operator_score("delay") == 0.5
assert scorer.get_dataset_score("market_data") == 1.8
assert scorer.get_dataset_score("fundamental_data") == 0.5
assert scorer.get_mutation_score("operator_replacement") == 1.8
assert scorer.get_mutation_score("parameter_tuning") == 0.5
# Check ranking
req1 = SimulationRequest(
expression="ts_mean(close, 20)",
region=Region.US,
universe=Universe.TOP2000,
)
req2 = SimulationRequest(
expression="delay(open, 5)",
region=Region.US,
universe=Universe.TOP2000,
)
ranked = scorer.rank_mutations([req2, req1], dataset_name="market_data", operators=["ts_mean"])
# req1 should be ranked higher than req2 because of superior dataset/operator/mutation scores
assert ranked[0].expression == "ts_mean(close, 20)"
|