feat: add governed cross-module reporting

This commit is contained in:
2026-08-02 05:29:38 +02:00
parent eba35edd3c
commit 0abcc2455e
21 changed files with 2497 additions and 38 deletions
+7 -1
View File
@@ -14,9 +14,15 @@ class ReportingManifestTests(unittest.TestCase):
self.assertEqual("@govoplan/reporting-webui", manifest.frontend.package_name)
self.assertIsNotNone(manifest.route_factory)
self.assertIsNotNone(manifest.migration_spec)
self.assertEqual(4, len(manifest.provides_interfaces))
self.assertEqual(5, len(manifest.provides_interfaces))
self.assertEqual(1, len(manifest.search_sources))
self.assertIn("dataflow", manifest.optional_dependencies)
self.assertIn("policy", manifest.optional_dependencies)
self.assertEqual("/reports", manifest.nav_items[0].path)
self.assertEqual(
{"/reports", "/reporting"},
{route.path for route in manifest.frontend.routes},
)
self.assertIn(
"report execution and publication evidence",
manifest.architecture.owned_concepts,