Skip to content

Reject party/role combinations the party does not hold for BudgetRole (OFBIZ-12371) - #1736

Open
karthikchundi-commits wants to merge 2 commits into
apache:trunkfrom
karthikchundi-commits:fix/budget-role-validation
Open

Reject party/role combinations the party does not hold for BudgetRole (OFBIZ-12371)#1736
karthikchundi-commits wants to merge 2 commits into
apache:trunkfrom
karthikchundi-commits:fix/budget-role-validation

Conversation

@karthikchundi-commits

Copy link
Copy Markdown
Contributor

Jira ticket

https://issues.apache.org/jira/browse/OFBIZ-12371

Depends on #1727

This PR depends on #1727 and should be reviewed/merged after it. It builds directly on top of that branch, which adds the checkPartyRoleExists service this PR wires up for createBudgetRole. Without #1727, the checkPartyRoleExists service referenced here doesn't exist yet.

Purpose and Description

Same bug shape as OFBIZ-12370/12372/12373 (fixed in #1727), one ticket over in the same family Pierre Smits filed: createBudgetRole has an unconditional ensurePartyRole invoke eca that silently fabricates a PartyRole record for whatever roleTypeId/partyId is submitted on the Budget Role page, with no validation that the party actually holds (or should hold) that role.

This wires the checkPartyRoleExists service added in #1727 as an in-validate eca on createBudgetRole, mirroring the exact same pattern already used there for createInvoiceRole/createBillingAccountRole/createFinAccountRole. Since in-validate runs before invoke, an invalid party/role combination is rejected before the existing ensurePartyRole eca ever fires - that eca is left untouched and becomes reachable only for combinations that are already valid.

Changes 🏗️

  • applications/accounting/servicedef/secas.xml: adds an in-validate eca on createBudgetRole calling checkPartyRoleExists, right before the existing invoke eca.
  • applications/accounting/src/test/groovy/org/apache/ofbiz/accounting/accounting/AutoAcctgBudgetTests.groovy: adds a positive-case test (DEMO_COMPANY + INTERNAL_ORGANIZATIO, a role the test party already legitimately holds per AccountingTestsData.xml) and a negative-case test (DEMO_COMPANY + CARRIER, a role it does not hold - must now be rejected, and must not fabricate a spurious PartyRole), following the exact pattern used for the other three role types in Reject party/role combinations the party does not hold (OFBIZ-12370, OFBIZ-12372, OFBIZ-12373) #1727.

Testing

  • Verified applications/accounting/servicedef/secas.xml against the real service-eca.xsd schema via xmllint --schema - validates cleanly.
  • Ran gradle compileTestGroovy (JDK 21) - compiles clean, including the new test methods.
  • This repo's pre-push hook (checkstyleMain checkstyleTest codenarcMain codenarcTest) ran clean on push - no violations.
  • I don't have a running OFBiz instance with a live database in this environment, so I could not execute the Groovy test suite itself end-to-end (only compile it) - same disclosed limitation as Reject party/role combinations the party does not hold (OFBIZ-12370, OFBIZ-12372, OFBIZ-12373) #1727.

Checklist

  • My code follows the code style of this project
  • I have updated the documentation accordingly (n/a - no user-facing docs for this internal validation)
  • I have read the CONTRIBUTING document
  • I have added tests to cover my changes

…OFBIZ-12372, OFBIZ-12373)

InvoiceRole, BillingAccountRole, and FinAccountRole all let a user submit
any partyId + roleTypeId combination with no validation that the party
actually holds that role. For InvoiceRole this hits the InvoiceRole/
PartyRole foreign key constraint and surfaces a raw SQL error. For
BillingAccountRole and FinAccountRole, an unconditional ensurePartyRole
eca instead silently fabricates a PartyRole record for the submitted
roleTypeId, regardless of whether it makes sense for that party.

Adds a small, reusable checkPartyRoleExists service (party component,
mirroring the existing ensureNaPartyRole helper) that looks up PartyRole
by (partyId, roleTypeId) and, if missing, fails with the same
PartyRoleAssociationRequired message already used for this exact class of
bug in createWorkEffortAndPartyAssign. Wires it as an in-validate eca on
createInvoiceRole, createBillingAccountRole, and createFinAccountRole, so
invalid combinations are rejected before the existing invoke-event
ensurePartyRole ecas ever run.

Adds regression tests: a negative case per ticket proving the
party/role combination is now rejected (and, for BillingAccountRole/
FinAccountRole, that no PartyRole is fabricated), plus a new
AutoAcctgBillingAccountTests suite since BillingAccountRole had no
existing test coverage.

Signed-off-by: Karth <karthik.chundi@gmail.com>
… (OFBIZ-12371)

Same bug shape already fixed for InvoiceRole/BillingAccountRole/
FinAccountRole: createBudgetRole's unconditional ensurePartyRole invoke
eca silently fabricates a PartyRole record for whatever roleTypeId is
submitted, with no validation that the party actually holds (or should
hold) that role.

Wires the existing checkPartyRoleExists service (added for the other
three role types) as an in-validate eca on createBudgetRole, so invalid
combinations are rejected before the invoke-event ensurePartyRole eca
ever runs. Adds a positive-case and negative-case regression test to
AutoAcctgBudgetTests, following the same pattern used for the other
three role types.

Depends on the checkPartyRoleExists service already added for
OFBIZ-12370/12372/12373 (open as apache#1727) - this
change is a no-op without it.

Signed-off-by: Karth <karthik.chundi@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant