f27b4bc1ec
Always SSR records summary on embed shell (including settings/risk/env), and refresh total/win-rate/PL ratio via account_snapshot so soft-nav cannot leave the strip blank. Co-authored-by: Cursor <cursoragent@cursor.com>
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
from lib.instance.instance_embed_context_lib import embed_render_plan, trade_records_summary
|
|
|
|
|
|
def test_embed_fragment_trade_is_light():
|
|
plan = embed_render_plan("trade", "fragment")
|
|
assert plan.exchange_capitals is False
|
|
assert plan.records_rows is False
|
|
assert plan.records_summary is False
|
|
assert plan.orders is True
|
|
assert plan.key_history is False
|
|
|
|
|
|
def test_embed_shell_trade_summary_only():
|
|
plan = embed_render_plan("trade", "shell")
|
|
assert plan.exchange_capitals is True
|
|
assert plan.records_summary is True
|
|
assert plan.records_rows is False
|
|
|
|
|
|
def test_embed_shell_settings_still_loads_header_summary():
|
|
plan = embed_render_plan("settings", "shell")
|
|
assert plan.records_summary is True
|
|
assert plan.records_rows is False
|
|
plan_risk = embed_render_plan("risk_policy", "shell")
|
|
assert plan_risk.records_summary is True
|
|
|
|
|
|
def test_embed_records_page_loads_rows():
|
|
plan = embed_render_plan("records", "fragment")
|
|
assert plan.records_rows is True
|
|
|
|
|
|
def test_full_page_unchanged():
|
|
plan = embed_render_plan("trade", None)
|
|
assert plan.records_rows is True
|
|
assert plan.exchange_capitals is True
|