Clean Access audit and test resources

This commit is contained in:
2026-07-21 03:16:32 +02:00
parent 01d082e552
commit e91935c03a
4 changed files with 6 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ from govoplan_access.backend.permissions.catalog import (
validate_tenant_permissions, validate_tenant_permissions,
role_templates_for_level, role_templates_for_level,
) )
from govoplan_core.tenancy.service import tenant_counts # re-exported compatibility helper from govoplan_core.tenancy.service import tenant_counts # noqa: F401 - re-exported compatibility helper
_TEMP_PASSWORD_ALPHABET = string.ascii_letters + string.digits + "-_!@#" _TEMP_PASSWORD_ALPHABET = string.ascii_letters + string.digits + "-_!@#"

View File

@@ -714,7 +714,7 @@ class ConfigurationSafetyFieldItem(BaseModel):
storage: str storage: str
ui_managed: bool ui_managed: bool
risk: Literal["low", "medium", "high", "destructive"] risk: Literal["low", "medium", "high", "destructive"]
secret_handling: Literal["none", "reference_only", "env_only"] = "none" secret_handling: Literal["none", "reference_only", "env_only"] = "none" # noqa: S105 - policy vocabulary.
required_scopes: list[str] = Field(default_factory=list) required_scopes: list[str] = Field(default_factory=list)
dry_run_required: bool = False dry_run_required: bool = False
validation_required: bool = True validation_required: bool = True

View File

@@ -200,7 +200,6 @@ from govoplan_access.backend.semantic import collect_external_function_roles, co
from govoplan_access.backend.security.sessions import collect_user_groups, collect_user_roles, collect_user_scopes from govoplan_access.backend.security.sessions import collect_user_groups, collect_user_roles, collect_user_scopes
from govoplan_core.db.session import get_session from govoplan_core.db.session import get_session
from govoplan_access.backend.permissions.catalog import ( from govoplan_access.backend.permissions.catalog import (
normalize_email,
permission_catalog as access_permission_catalog, permission_catalog as access_permission_catalog,
scopes_grant, scopes_grant,
) )

View File

@@ -22,12 +22,15 @@ class AdminBatchHelperTests(unittest.TestCase):
self.engine = create_engine("sqlite:///:memory:") self.engine = create_engine("sqlite:///:memory:")
Base.metadata.create_all(bind=self.engine) Base.metadata.create_all(bind=self.engine)
self.Session = sessionmaker(bind=self.engine) self.Session = sessionmaker(bind=self.engine)
self.session = self.Session()
def tearDown(self) -> None: def tearDown(self) -> None:
self.session.close()
Base.metadata.drop_all(bind=self.engine) Base.metadata.drop_all(bind=self.engine)
self.engine.dispose()
def test_access_admin_batch_maps_related_rows(self) -> None: def test_access_admin_batch_maps_related_rows(self) -> None:
session = self.Session() session = self.session
account = Account(id="account-1", email="ada@example.test", normalized_email="ada@example.test") account = Account(id="account-1", email="ada@example.test", normalized_email="ada@example.test")
user = User(id="user-1", tenant_id="tenant-1", account_id=account.id, email=account.email) user = User(id="user-1", tenant_id="tenant-1", account_id=account.id, email=account.email)
group = Group(id="group-1", tenant_id="tenant-1", slug="clerks", name="Clerks") group = Group(id="group-1", tenant_id="tenant-1", slug="clerks", name="Clerks")