More CMIS scoring optimization

This commit is contained in:
2026-05-13 23:42:56 +02:00
parent 852b45c158
commit b11c9189e4
7 changed files with 775 additions and 52 deletions

View File

@@ -59,6 +59,13 @@ def test_governed_authoring_profile_allows_selected_write_actions() -> None:
assert profile.decide_action(CMISAction.APPLY_ACL, context).reason == "cmis_operation_not_implemented"
def test_compat_tck_profile_allows_bulk_update_for_browser_binding_maturity() -> None:
profile = CMISAccessProfile.compat_tck()
context = _context()
assert profile.decide_action(CMISAction.BULK_UPDATE_PROPERTIES, context).allowed is True
def test_profiles_hide_denied_sensitivities_without_partial_exposure() -> None:
profile = CMISAccessProfile.readonly_browser()
context = _context()