-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: verwerkingssoort 'I' on case roles are processed as 'T' if …
…the role is not present on the case (#285) * fix: add organisatorischeEenheid translation * test: add OEH test * refacter: delete now finds by identification and deletes all that match * Add: Zaak not found error detection * refactor: ZdsZaak's existence can now be checked * refactor: RolCheck goes one way not both * Fix: added Check Test and commented out some soap elements * Fix: extra empty check * Refactor: add authentiek to zaak * Fix: check was wrong on authentiek and * Add: check tests (verwerkingsoort="I") * save with correct soapui settings * test: add two object updateZaak testcases for role delete, add and delete+add * additional role testcases * refactor: merge oud en nieuw and changed logic to pass extra testcases * test: fix "'VI''TT'" test and add 'WI' test * refactor: delete now throws eror if mutiple rolls are found to delete * fix: change object count check * refactor: cover more edgecases when merging * refactor: group rollen at merge * resolve regression test failures --------- Co-authored-by: MLenterman <[email protected]>
- Loading branch information
1 parent
4bb2da2
commit 1ec7016
Showing
19 changed files
with
5,704 additions
and
671 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
src/main/configurations/Translate/Configuration_CheckZgwRol.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<Module xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../ibisdoc.xsd"> | ||
<Adapter name="CheckZgwRol" | ||
active="${CheckZgwRol.Active}" | ||
description=""> | ||
|
||
<Receiver name="CheckZgwRol"> | ||
<JavaListener name="CheckZgwRol"/> | ||
</Receiver> | ||
|
||
<Pipeline> | ||
<Exits> | ||
<Exit name="exists" state="SUCCESS"/> | ||
<Exit name="NOTFOUND" state="SUCCESS" code="404" /> | ||
<Exit name="EXCEPTION" state="ERROR"/> | ||
</Exits> | ||
|
||
<XsltPipe name="CheckRol" | ||
styleSheetName="UpdateZaak_LK01/xsl/CheckZgwRol.xslt" | ||
getInputFromSessionKey="originalMessage"> | ||
<Param name="role" sessionKey="originalMessage" type="DOMDOC"/> | ||
<Param name="roles" sessionKey="ZdsWasZaakRol" type="DOMDOC"/> | ||
<Forward name="success" path="CheckForTrue" /> | ||
<Forward name="error" path="EXCEPTION" /> | ||
</XsltPipe> | ||
|
||
<XmlIfPipe name="CheckForTrue" | ||
xpathExpression="/Check/true" | ||
> | ||
<Forward name="then" path="exists"/> | ||
<Forward name="else" path="NOTFOUND"/> | ||
</XmlIfPipe> | ||
</Pipeline> | ||
</Adapter> | ||
</Module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.