7a0da7932b
Backwards Compatibility / Verify Encryption Constants (push) Waiting to run
Backwards Compatibility / PyPI Version Compatibility (push) Waiting to run
Backwards Compatibility / Database Migration Tests (push) Waiting to run
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-form] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-metrics] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-workflow] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-core] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-pages] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [history-news] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [library] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [link-analytics] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [mobile] (push) Blocked by required conditions
Docker Tests (Consolidated) / detect-changes (push) Waiting to run
Docker Tests (Consolidated) / Build Test Image (push) Waiting to run
Docker Tests (Consolidated) / All Pytest Tests + Coverage (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [accessibility] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [api-crud] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-login] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-pages] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-register] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-core] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-lifecycle] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [error-benchmark] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) (push) Blocked by required conditions
Docker Tests (Consolidated) / Accessibility Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / LLM Unit Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / LLM Example Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / Production Image Smoke Test (push) Blocked by required conditions
Docker Tests (Consolidated) / Infrastructure Tests (push) Blocked by required conditions
OSSF Scorecard / OSSF Security Scorecard Analysis (push) Waiting to run
OSV-Scanner (Scheduled) / scan-scheduled (push) Failing after 0s
Create Release / test-gate (push) Has been cancelled
Create Release / release-gate (push) Has been cancelled
Create Release / ci-gate (push) Has been cancelled
Create Release / version-check (push) Has been cancelled
Create Release / e2e-test-gate (push) Has been cancelled
Create Release / responsive-test-gate (push) Has been cancelled
Create Release / compat-test-gate (push) Has been cancelled
Create Release / compose-integration-gate (push) Has been cancelled
Create Release / vulture-gate (push) Has been cancelled
Create Release / build (push) Has been cancelled
Create Release / provenance (push) Has been cancelled
Create Release / prerelease-docker (push) Has been cancelled
Create Release / publish-docker (push) Has been cancelled
Create Release / create-release (push) Has been cancelled
Create Release / cleanup-changelog (push) Has been cancelled
Create Release / trigger-pypi (push) Has been cancelled
Create Release / monitor-pypi (push) Has been cancelled
Create Release / Clean up orphan prerelease tags and signatures (push) Has been cancelled
42 lines
1.7 KiB
Python
42 lines
1.7 KiB
Python
"""Static check: every FK in Base.metadata points at a real table+column.
|
|
|
|
Catches the R4 class of bug — ``ResearchStrategy.research_id`` declared
|
|
``ForeignKey("research.id")`` while the live code wrote UUID strings from
|
|
``research_history``. PRAGMA-OFF hid this for ~10 months; PRAGMA-ON in
|
|
v1.6.0 made every save fail.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from local_deep_research.database.models import Base
|
|
|
|
|
|
def test_every_fk_target_table_and_column_exists():
|
|
tables = {t.name: t for t in Base.metadata.sorted_tables}
|
|
problems: list[str] = []
|
|
for table in Base.metadata.sorted_tables:
|
|
for fk in table.foreign_keys:
|
|
target_table_name = fk.column.table.name
|
|
target_col_name = fk.column.name
|
|
target = tables.get(target_table_name)
|
|
if target is None:
|
|
problems.append(
|
|
f"{table.name}.{fk.parent.name} -> "
|
|
f"{target_table_name}.{target_col_name}: target table missing"
|
|
)
|
|
continue
|
|
if target_col_name not in target.columns:
|
|
problems.append(
|
|
f"{table.name}.{fk.parent.name} -> "
|
|
f"{target_table_name}.{target_col_name}: target column missing"
|
|
)
|
|
continue
|
|
target_col = target.columns[target_col_name]
|
|
if str(fk.parent.type) != str(target_col.type):
|
|
problems.append(
|
|
f"{table.name}.{fk.parent.name} ({fk.parent.type}) -> "
|
|
f"{target_table_name}.{target_col_name} ({target_col.type}): "
|
|
"type mismatch"
|
|
)
|
|
assert not problems, "FK declaration problems:\n " + "\n ".join(problems)
|