- Integrated a new API endpoint for fetching the widget catalog in the Dashboard-Lab. - Updated the dashboard layout schema to utilize the widget catalog for dynamic widget management. - Refactored DashboardLabPage and PilotVizPage to leverage the new widget rendering system. - Removed deprecated widget metadata from the frontend, streamlining the widget management process. - Bumped app_dashboard version to 1.1.0 to reflect the new features and improvements.
26 lines
872 B
Python
26 lines
872 B
Python
"""Widget-Katalog: Konsistenz (IDs, Default-Layout, Katalog-Response)."""
|
|
|
|
from dashboard_layout_schema import default_layout_dict
|
|
from widget_catalog import ALLOWED_WIDGET_IDS, WIDGET_CATALOG, catalog_response
|
|
|
|
|
|
def test_catalog_ids_unique_and_match_allowed():
|
|
ids = [e["id"] for e in WIDGET_CATALOG]
|
|
assert len(ids) == len(set(ids))
|
|
assert frozenset(ids) == ALLOWED_WIDGET_IDS
|
|
|
|
|
|
def test_default_layout_follows_catalog_order():
|
|
d = default_layout_dict()
|
|
assert d["version"] == 1
|
|
got = [w["id"] for w in d["widgets"]]
|
|
assert got == [e["id"] for e in WIDGET_CATALOG]
|
|
assert all(w["enabled"] is True for w in d["widgets"])
|
|
|
|
|
|
def test_catalog_response_shape():
|
|
r = catalog_response()
|
|
assert r["catalog_version"] == 1
|
|
assert len(r["widgets"]) == len(WIDGET_CATALOG)
|
|
assert {w["id"] for w in r["widgets"]} == ALLOWED_WIDGET_IDS
|