feat(web): add owner assignment decision prep board

This commit is contained in:
Your Name
2026-05-24 10:54:10 +08:00
parent 62e1944157
commit 25ed16d8f9
8 changed files with 474 additions and 2 deletions

View File

@@ -346,6 +346,7 @@ def validate(root: Path) -> None:
"s2_95_iwooos_owner_response_formal_record_owner_assignment_preparation_board",
"s2_96_iwooos_owner_response_formal_record_owner_assignment_checklist_board",
"s2_97_iwooos_owner_response_formal_record_owner_assignment_outcome_board",
"s2_98_iwooos_owner_response_formal_record_owner_assignment_decision_preparation_board",
]
assert_equal(
"progress_delta_ledger.delta_ids",
@@ -590,6 +591,11 @@ def validate(root: Path) -> None:
[item["action_id"] for item in rollup["next_safe_actions"] if isinstance(item, dict)],
"show_iwooos_owner_response_formal_record_owner_assignment_outcome_board",
)
assert_contains(
"rollup.next_safe_actions.action_ids",
[item["action_id"] for item in rollup["next_safe_actions"] if isinstance(item, dict)],
"show_iwooos_owner_response_formal_record_owner_assignment_decision_preparation_board",
)
assert_contains(
"rollup.next_safe_actions.action_ids",
[item["action_id"] for item in rollup["next_safe_actions"] if isinstance(item, dict)],
@@ -7291,6 +7297,50 @@ def validate(root: Path) -> None:
iwooos_projection_page,
text,
)
assert_text_contains(
"iwooos_page.owner_response_formal_record_owner_assignment_decision_preparation_packets",
iwooos_projection_page,
"ownerResponseFormalRecordOwnerAssignmentDecisionPreparationPackets",
)
assert_text_contains(
"iwooos_page.owner_response_formal_record_owner_assignment_decision_preparation_testid",
iwooos_projection_page,
'data-testid="iwooos-owner-response-formal-record-owner-assignment-decision-preparation-board"',
)
assert_text_contains(
"iwooos_page.owner_response_formal_record_owner_assignment_decision_preparation_component",
iwooos_projection_page,
"OwnerResponseFormalRecordOwnerAssignmentDecisionPreparationBoard",
)
for text in [
"owner_response_formal_record_owner_assignment_decision_preparation_packet_count=8",
"owner_response_formal_record_owner_assignment_decision_preparation_ready_count=0",
"owner_response_formal_record_owner_assignment_decision_created_count=0",
"owner_response_formal_record_owner_assigned_count=0",
"owner_response_formal_record_created_count=0",
"owner_response_formal_record_approved_count=0",
"owner_response_formal_record_runtime_gate_count=0",
"owner_response_formal_record_owner_assignment_decision_preparation_only=true",
"owner_response_formal_record_owner_assignment_authorized=false",
"owner_response_formal_record_write_authorized=false",
"owner_response_formal_record_approval_authorized=false",
"owner_response_formal_record_execution_authorized=false",
"runtime_execution_authorized=false",
"active_runtime_gate_count=0",
"action_buttons_allowed=false",
"not_authorization=true",
"secret_value_collection_allowed=false",
"repo_creation_authorized=false",
"refs_sync_authorized=false",
"workflow_modification_authorized=false",
"github_primary_switch_authorized=false",
"gitea_disablement_authorized=false",
]:
assert_text_contains(
"iwooos_page.owner_response_formal_record_owner_assignment_decision_preparation_boundary",
iwooos_projection_page,
text,
)
for key in [
"title",
"subtitle",
@@ -8230,6 +8280,57 @@ def validate(root: Path) -> None:
list(web_messages_en["iwooos"]["ownerResponseFormalRecordOwnerAssignmentOutcomeBoard"]["items"].keys()),
key,
)
for key in [
"title",
"subtitle",
"packetLabel",
"requirementLabel",
"guardLabel",
"boundaryTitle",
"summary",
"items",
]:
assert_contains(
"web_messages.zh-TW.iwooos.ownerResponseFormalRecordOwnerAssignmentDecisionPreparationBoard",
list(web_messages_zh["iwooos"]["ownerResponseFormalRecordOwnerAssignmentDecisionPreparationBoard"].keys()),
key,
)
assert_contains(
"web_messages.en.iwooos.ownerResponseFormalRecordOwnerAssignmentDecisionPreparationBoard",
list(web_messages_en["iwooos"]["ownerResponseFormalRecordOwnerAssignmentDecisionPreparationBoard"].keys()),
key,
)
for key in ["packets", "ready", "decisions", "runtime"]:
assert_contains(
"web_messages.zh-TW.iwooos.ownerResponseFormalRecordOwnerAssignmentDecisionPreparationBoard.summary",
list(web_messages_zh["iwooos"]["ownerResponseFormalRecordOwnerAssignmentDecisionPreparationBoard"]["summary"].keys()),
key,
)
assert_contains(
"web_messages.en.iwooos.ownerResponseFormalRecordOwnerAssignmentDecisionPreparationBoard.summary",
list(web_messages_en["iwooos"]["ownerResponseFormalRecordOwnerAssignmentDecisionPreparationBoard"]["summary"].keys()),
key,
)
for key in [
"outcomeTracePacket",
"ownerIdentityPacket",
"scopeSnapshotPacket",
"authorityBoundaryPacket",
"evidenceReviewPacket",
"quarantineAndExceptionPacket",
"mutationRejectionPacket",
"runtimePrimaryGatePacket",
]:
assert_contains(
"web_messages.zh-TW.iwooos.ownerResponseFormalRecordOwnerAssignmentDecisionPreparationBoard.items",
list(web_messages_zh["iwooos"]["ownerResponseFormalRecordOwnerAssignmentDecisionPreparationBoard"]["items"].keys()),
key,
)
assert_contains(
"web_messages.en.iwooos.ownerResponseFormalRecordOwnerAssignmentDecisionPreparationBoard.items",
list(web_messages_en["iwooos"]["ownerResponseFormalRecordOwnerAssignmentDecisionPreparationBoard"]["items"].keys()),
key,
)
owner_summary = owner_rollup["summary"]
assert_equal("owner_rollup.total_received_response_count", owner_summary["total_received_response_count"], 0)