From 00f4284c9bb5a106751cad9d2912c96390d6f262 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Wed, 4 Dec 2024 13:56:42 +0100 Subject: [PATCH 01/31] ci: add larva autorun workflow --- .github/workflows/run-larva-scenarios.yml | 69 +++++++++++++++++++ .../resources/StageSpecifics_LOC.properties | 2 +- 2 files changed, 70 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/run-larva-scenarios.yml diff --git a/.github/workflows/run-larva-scenarios.yml b/.github/workflows/run-larva-scenarios.yml new file mode 100644 index 000000000..6e1859e7a --- /dev/null +++ b/.github/workflows/run-larva-scenarios.yml @@ -0,0 +1,69 @@ +name: Run Larva Scenarios + +on: + workflow_call: + inputs: + APP_VERSION: + type: string + required: true + +jobs: + run-larva-scenarios: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #4.1.7 + + - name: Download Docker tar + uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 #4.1.8 + with: + name: build-docker-image + + - name: Load Docker tar + shell: bash + run: | + docker load --input image.tar + docker image ls -a + + - name: Start Application + run: | + docker run -d --name morcoreintegration -p 8080:8080 -e dtap.stage=LOC wearefrank/morcoreintegration:${{ inputs.APP_VERSION }} + timeout-minutes: 2 + + - name: Wait for Application to be Healthy + run: | + start_time=$(date +%s) + timeout=60 + while true; do + if [ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:8080/iaf/api/server/health)" == "200" ]; then + echo "Application is healthy." + break + fi + current_time=$(date +%s) + elapsed_time=$((current_time - start_time)) + if [ $elapsed_time -ge $timeout ]; then + echo "Application did not become healthy within $timeout seconds. Failing the job." + exit 1 + fi + echo "Waiting for application to be healthy..." + sleep 5 + done + timeout-minutes: 2 + + - name: Trigger Larva Tool + run: | + curl -X POST 'http://localhost:8080/iaf/larva/index.jsp' \ + --header 'Content-Type: application/x-www-form-urlencoded' \ + --data-urlencode 'scenariosrootdirectory=/opt/frank/testtool' \ + --data-urlencode 'waitbeforecleanup=100' \ + --data-urlencode 'loglevel=WRONG_PIPELINE_MESSAGES_PREPARED_FOR_DIFF' \ + --data-urlencode 'execute=/opt/frank/testtool' \ + --data-urlencode 'submit=start' > results.html + + - name: Check if all scenarios passed + run: | + if ! grep -q 'All scenarios passed' results.html; then + echo "Not all scenarios passed. Failing the job." + cat results.html + exit 1 + fi \ No newline at end of file diff --git a/src/main/resources/StageSpecifics_LOC.properties b/src/main/resources/StageSpecifics_LOC.properties index bf2afbaba..f6b7d806f 100644 --- a/src/main/resources/StageSpecifics_LOC.properties +++ b/src/main/resources/StageSpecifics_LOC.properties @@ -9,4 +9,4 @@ # And enabling this will cause the unit test to occasionally fail... zgw.baseurl=http://localhost:8000/ -stub4testtool.configuration=false \ No newline at end of file +stub4testtool.configuration=true \ No newline at end of file From c2de17a3147a2e5c8181dcf5190ab2e4c24b2844 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Wed, 4 Dec 2024 15:23:15 +0100 Subject: [PATCH 02/31] add temp workflow --- .github/workflows/run-larva-scenarios.yml | 2 +- .github/workflows/tempWorkflow.yml | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/tempWorkflow.yml diff --git a/.github/workflows/run-larva-scenarios.yml b/.github/workflows/run-larva-scenarios.yml index 6e1859e7a..f67cc538d 100644 --- a/.github/workflows/run-larva-scenarios.yml +++ b/.github/workflows/run-larva-scenarios.yml @@ -27,7 +27,7 @@ jobs: - name: Start Application run: | - docker run -d --name morcoreintegration -p 8080:8080 -e dtap.stage=LOC wearefrank/morcoreintegration:${{ inputs.APP_VERSION }} + docker compose -f ./docker-compose.zaakbrug.dev.yml up --build --force-recreate timeout-minutes: 2 - name: Wait for Application to be Healthy diff --git a/.github/workflows/tempWorkflow.yml b/.github/workflows/tempWorkflow.yml new file mode 100644 index 000000000..fcbf0f2f0 --- /dev/null +++ b/.github/workflows/tempWorkflow.yml @@ -0,0 +1,12 @@ +name: Test Larva Workflow + +on: + push: + branches: + - main + +jobs: + test-larva-scenarios: + uses: ./.github/workflows/run-larva-scenarios.yml + with: + APP_VERSION: "1.0.0" From 378a6c1cb078b6e4bd0c3863389a1aea29c514ed Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Wed, 4 Dec 2024 15:44:41 +0100 Subject: [PATCH 03/31] check ci change --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 965024ad0..44010893a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,10 @@ on: - master jobs: + test-larva-scenarios: + uses: ./.github/workflows/run-larva-scenarios.yml + with: + APP_VERSION: "1.0.0" version-next: runs-on: ubuntu-latest permissions: From 58bc77f60bd112f08645ba049a9be3ca7f371a62 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Wed, 4 Dec 2024 15:53:17 +0100 Subject: [PATCH 04/31] move ci in order --- .github/workflows/ci.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44010893a..ad13f176a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,10 +7,6 @@ on: - master jobs: - test-larva-scenarios: - uses: ./.github/workflows/run-larva-scenarios.yml - with: - APP_VERSION: "1.0.0" version-next: runs-on: ubuntu-latest permissions: @@ -46,6 +42,14 @@ jobs: upload-sarif-to-security: false run-frank-till-healthy-enabled: false + test-larva-scenarios: + needs: + - version-next + - ci + uses: ./.github/workflows/run-larva-scenarios.yml + with: + APP_VERSION: "1.0.0" + run-soapui-tests: runs-on: ubuntu-latest needs: From 2e55a6667f063cd8d394641d668f4c785ed12b27 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Thu, 5 Dec 2024 09:58:34 +0100 Subject: [PATCH 05/31] docker instead of compose --- .github/workflows/run-larva-scenarios.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-larva-scenarios.yml b/.github/workflows/run-larva-scenarios.yml index f67cc538d..2365d2fce 100644 --- a/.github/workflows/run-larva-scenarios.yml +++ b/.github/workflows/run-larva-scenarios.yml @@ -27,7 +27,7 @@ jobs: - name: Start Application run: | - docker compose -f ./docker-compose.zaakbrug.dev.yml up --build --force-recreate + docker run -d --name zaakbrug -p 8080:8080 -e dtap.stage=LOC wearefrank/zaakbrug:1.22.5 timeout-minutes: 2 - name: Wait for Application to be Healthy From ed9d594298923f913067e403a6c2736644351d1a Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Thu, 5 Dec 2024 10:51:35 +0100 Subject: [PATCH 06/31] reuse docker compose from ci --- .github/workflows/run-larva-scenarios.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-larva-scenarios.yml b/.github/workflows/run-larva-scenarios.yml index 2365d2fce..253aa6aa2 100644 --- a/.github/workflows/run-larva-scenarios.yml +++ b/.github/workflows/run-larva-scenarios.yml @@ -27,7 +27,7 @@ jobs: - name: Start Application run: | - docker run -d --name zaakbrug -p 8080:8080 -e dtap.stage=LOC wearefrank/zaakbrug:1.22.5 + docker compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml up -d timeout-minutes: 2 - name: Wait for Application to be Healthy From 0f5ce7b195598aaefe7f66ce2b5e391ca536fee8 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Thu, 5 Dec 2024 11:00:39 +0100 Subject: [PATCH 07/31] retry docker-compose --- .github/workflows/run-larva-scenarios.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-larva-scenarios.yml b/.github/workflows/run-larva-scenarios.yml index 253aa6aa2..d0e443083 100644 --- a/.github/workflows/run-larva-scenarios.yml +++ b/.github/workflows/run-larva-scenarios.yml @@ -27,7 +27,7 @@ jobs: - name: Start Application run: | - docker compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml up -d + docker compose -f ./docker-compose.zaakbrug.dev.yml up -d timeout-minutes: 2 - name: Wait for Application to be Healthy From 093c533c081af610cedb84252c855646a6d6173b Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Thu, 5 Dec 2024 11:05:34 +0100 Subject: [PATCH 08/31] increase timeout --- .github/workflows/run-larva-scenarios.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-larva-scenarios.yml b/.github/workflows/run-larva-scenarios.yml index d0e443083..262033eef 100644 --- a/.github/workflows/run-larva-scenarios.yml +++ b/.github/workflows/run-larva-scenarios.yml @@ -33,7 +33,7 @@ jobs: - name: Wait for Application to be Healthy run: | start_time=$(date +%s) - timeout=60 + timeout=120 while true; do if [ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:8080/iaf/api/server/health)" == "200" ]; then echo "Application is healthy." From 43c4756a05e2cf7af4d74e0be104f3e95aeb1d06 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Fri, 6 Dec 2024 11:25:02 +0100 Subject: [PATCH 09/31] refactor: set version to latest --- .github/workflows/run-larva-scenarios.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-larva-scenarios.yml b/.github/workflows/run-larva-scenarios.yml index 262033eef..bd626d445 100644 --- a/.github/workflows/run-larva-scenarios.yml +++ b/.github/workflows/run-larva-scenarios.yml @@ -27,7 +27,7 @@ jobs: - name: Start Application run: | - docker compose -f ./docker-compose.zaakbrug.dev.yml up -d + docker run -d --name zaakbrug -p 8080:8080 -e dtap.stage=LOC wearefrank/zaakbrug timeout-minutes: 2 - name: Wait for Application to be Healthy From 41c69250e4fff2f5bbf18e905720de18cc0f5f30 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Fri, 6 Dec 2024 11:41:00 +0100 Subject: [PATCH 10/31] remove excess file --- .github/workflows/tempWorkflow.yml | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 .github/workflows/tempWorkflow.yml diff --git a/.github/workflows/tempWorkflow.yml b/.github/workflows/tempWorkflow.yml deleted file mode 100644 index fcbf0f2f0..000000000 --- a/.github/workflows/tempWorkflow.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Test Larva Workflow - -on: - push: - branches: - - main - -jobs: - test-larva-scenarios: - uses: ./.github/workflows/run-larva-scenarios.yml - with: - APP_VERSION: "1.0.0" From dd09fff6e0e13b1201fc2b169ce298354ccad762 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Fri, 6 Dec 2024 13:13:11 +0100 Subject: [PATCH 11/31] change ci order --- .github/workflows/ci.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad13f176a..8e5b870c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,14 +42,6 @@ jobs: upload-sarif-to-security: false run-frank-till-healthy-enabled: false - test-larva-scenarios: - needs: - - version-next - - ci - uses: ./.github/workflows/run-larva-scenarios.yml - with: - APP_VERSION: "1.0.0" - run-soapui-tests: runs-on: ubuntu-latest needs: @@ -117,3 +109,12 @@ jobs: with: name: reports-soapui-testreports path: ./*/reports + + test-larva-scenarios: + needs: + - version-next + - ci + - run-soapui-tests + uses: ./.github/workflows/run-larva-scenarios.yml + with: + APP_VERSION: "1.0.0" \ No newline at end of file From 287bf442303c8c449d7f843ba4e34ac7c11ef6f4 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Fri, 6 Dec 2024 15:48:21 +0100 Subject: [PATCH 12/31] undo stage change --- src/main/resources/StageSpecifics_LOC.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/StageSpecifics_LOC.properties b/src/main/resources/StageSpecifics_LOC.properties index f6b7d806f..bf2afbaba 100644 --- a/src/main/resources/StageSpecifics_LOC.properties +++ b/src/main/resources/StageSpecifics_LOC.properties @@ -9,4 +9,4 @@ # And enabling this will cause the unit test to occasionally fail... zgw.baseurl=http://localhost:8000/ -stub4testtool.configuration=true \ No newline at end of file +stub4testtool.configuration=false \ No newline at end of file From f0623b450b7b0c5cd50134eb3ca4d14bf11ce53e Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Mon, 9 Dec 2024 11:06:59 +0100 Subject: [PATCH 13/31] attempt failed test trigger --- .../out.xml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml b/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml index 9bddfa534..3f4b88f44 100644 --- a/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml +++ b/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml @@ -1,12 +1,3 @@ - ZK2024-00194 - Aanvraag omgevingsvergunning - 20240920 - 20240920 - (Nog) niet - J - - openbaar - - \ No newline at end of file + \ No newline at end of file From f312b8b529e730bbba716e54748388b844b37874 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Mon, 9 Dec 2024 11:25:02 +0100 Subject: [PATCH 14/31] add more failed tests --- src/test/testtool/EnrichEntity/Regression/out.xml | 2 +- .../testtool/SelectZdsRoles/SelectZdsRoles/in.xml | 2 +- .../SelectZdsRoles/SelectZdsRoles/out.xml | 2 +- src/test/testtool/ZgwRol/ZgwRol/in.xml | 15 +-------------- src/test/testtool/ZgwRol/ZgwRol/out.xml | 6 +----- 5 files changed, 5 insertions(+), 22 deletions(-) diff --git a/src/test/testtool/EnrichEntity/Regression/out.xml b/src/test/testtool/EnrichEntity/Regression/out.xml index 5d2c449dd..b5f4030a6 100644 --- a/src/test/testtool/EnrichEntity/Regression/out.xml +++ b/src/test/testtool/EnrichEntity/Regression/out.xml @@ -6,7 +6,7 @@ ZK2024-00194 Aanvraag omgevingsvergunning 20240920 - 20240920 + 1234567890 (Nog) niet J diff --git a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml index ada26ac9d..98d71fe5c 100644 --- a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml +++ b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml @@ -15,7 +15,7 @@ - 111111110 + 123456789 J Precies diff --git a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml index 0ac595efb..69904bbf1 100644 --- a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml +++ b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml @@ -3,7 +3,7 @@ - 111111110 + 23456789 J Precies diff --git a/src/test/testtool/ZgwRol/ZgwRol/in.xml b/src/test/testtool/ZgwRol/ZgwRol/in.xml index 674b0c8ca..03cdc610a 100644 --- a/src/test/testtool/ZgwRol/ZgwRol/in.xml +++ b/src/test/testtool/ZgwRol/ZgwRol/in.xml @@ -6,20 +6,7 @@ J Precies - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - + P diff --git a/src/test/testtool/ZgwRol/ZgwRol/out.xml b/src/test/testtool/ZgwRol/ZgwRol/out.xml index ed31c31d2..a1534fe9e 100644 --- a/src/test/testtool/ZgwRol/ZgwRol/out.xml +++ b/src/test/testtool/ZgwRol/ZgwRol/out.xml @@ -8,9 +8,5 @@ 111111110 J Precies - P - Pietje - m - 1901-01-01 - + P \ No newline at end of file From 5d704d38117a651f4a2c8d87cac5467f72621218 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Mon, 9 Dec 2024 13:18:48 +0100 Subject: [PATCH 15/31] force logging --- .github/workflows/run-larva-scenarios.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-larva-scenarios.yml b/.github/workflows/run-larva-scenarios.yml index bd626d445..f966b0431 100644 --- a/.github/workflows/run-larva-scenarios.yml +++ b/.github/workflows/run-larva-scenarios.yml @@ -62,8 +62,8 @@ jobs: - name: Check if all scenarios passed run: | + cat results.html if ! grep -q 'All scenarios passed' results.html; then echo "Not all scenarios passed. Failing the job." - cat results.html exit 1 fi \ No newline at end of file From a971abb42fcd10ef30154fc207efb6043e1e855d Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Mon, 9 Dec 2024 13:34:02 +0100 Subject: [PATCH 16/31] force more test failures --- .../ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt | 2 +- .../Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt | 2 +- .../Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt | 2 +- .../ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt | 2 +- .../ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt index 5855595d4..4aad2ed18 100644 --- a/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt +++ b/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt @@ -1 +1 @@ -nld \ No newline at end of file +nlddsds \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt index 2c4c454fd..059e33b58 100644 --- a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt +++ b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt @@ -1 +1 @@ -en \ No newline at end of file +endsds \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt index d5f5c2a19..86a8418bd 100644 --- a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt +++ b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt @@ -1 +1 @@ -nl \ No newline at end of file +nldsds \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt index 2c4c454fd..059e33b58 100644 --- a/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt +++ b/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt @@ -1 +1 @@ -en \ No newline at end of file +endsds \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt index d5f5c2a19..86a8418bd 100644 --- a/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt +++ b/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt @@ -1 +1 @@ -nl \ No newline at end of file +nldsds \ No newline at end of file From 4f1cd85727173c3122afa60dd9070d41d1fb6f8f Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Mon, 9 Dec 2024 13:58:27 +0100 Subject: [PATCH 17/31] force another failure --- .../context.xml | 14 -------------- .../in.xml | 10 +--------- .../out.xml | 2 +- 3 files changed, 2 insertions(+), 24 deletions(-) diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml index 54e58f92a..069de05d5 100644 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml @@ -1,20 +1,6 @@ - 823288444 - N - Gemeente Súdwest-Fryslân - - Eenmanszaak - - 0091200000046730 - J - Sneek - Marktstraat - Marktstraat - 8601CR - 15 diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml index c077bc014..866ca7ee7 100644 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml @@ -1,15 +1,7 @@ ${extraElementen:kvkNummer} - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator + chrijvingGeneriek>initiator Initiator:Gemeente Súdwest-Fryslân http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml index 93524b964..2fd2bb231 100644 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml @@ -9,7 +9,7 @@ niet_natuurlijk_persoon Initiator - initiator + adgwaygd Initiator:Gemeente Súdwest-Fryslân http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 \ No newline at end of file From 1ba5d19ca5ad2f385654c5c736de57b19f7e4750 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Mon, 9 Dec 2024 14:28:19 +0100 Subject: [PATCH 18/31] change startup --- .github/workflows/run-larva-scenarios.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-larva-scenarios.yml b/.github/workflows/run-larva-scenarios.yml index f966b0431..89870915e 100644 --- a/.github/workflows/run-larva-scenarios.yml +++ b/.github/workflows/run-larva-scenarios.yml @@ -27,7 +27,7 @@ jobs: - name: Start Application run: | - docker run -d --name zaakbrug -p 8080:8080 -e dtap.stage=LOC wearefrank/zaakbrug + docker compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml up -d timeout-minutes: 2 - name: Wait for Application to be Healthy @@ -62,8 +62,8 @@ jobs: - name: Check if all scenarios passed run: | - cat results.html if ! grep -q 'All scenarios passed' results.html; then echo "Not all scenarios passed. Failing the job." + cat results.html exit 1 fi \ No newline at end of file From 6f00db116b1b095055715ea8b48983bfbcfa3429 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Mon, 9 Dec 2024 14:29:26 +0100 Subject: [PATCH 19/31] change order --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e5b870c8..4e65bd34e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,9 +42,18 @@ jobs: upload-sarif-to-security: false run-frank-till-healthy-enabled: false + test-larva-scenarios: + needs: + - version-next + - ci + uses: ./.github/workflows/run-larva-scenarios.yml + with: + APP_VERSION: "1.0.0" + run-soapui-tests: runs-on: ubuntu-latest needs: + - test-larva-scenarios - version-next - ci steps: @@ -108,13 +117,4 @@ jobs: if: always() with: name: reports-soapui-testreports - path: ./*/reports - - test-larva-scenarios: - needs: - - version-next - - ci - - run-soapui-tests - uses: ./.github/workflows/run-larva-scenarios.yml - with: - APP_VERSION: "1.0.0" \ No newline at end of file + path: ./*/reports \ No newline at end of file From 4805710bb9acb6fe9bba1366d1dd3eb465e3ebd3 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Mon, 9 Dec 2024 14:35:29 +0100 Subject: [PATCH 20/31] force log --- .github/workflows/run-larva-scenarios.yml | 2 +- .../Alpha2ShouldReturnAlpha3t.properties | 12 -- .../Alpha2ShouldReturnAlpha3t/out.txt | 1 - ...hAlpha3bValueShouldReturnAlpha2.properties | 12 -- .../out.txt | 1 - ...hAlpha3tValueShouldReturnAlpha2.properties | 12 -- .../out.txt | 1 - .../Alpha3bShouldReturnAlpha2.properties | 12 -- .../Alpha3bShouldReturnAlpha2/out.txt | 1 - .../Alpha3tShouldReturnAlpha2.properties | 12 -- .../Alpha3tShouldReturnAlpha2/out.txt | 1 - ...ramShouldResultInUnchangedInput.properties | 10 - .../in.xml | 12 -- .../out.xml | 3 - .../EnrichEntity/Regression.properties | 13 -- .../testtool/EnrichEntity/Regression/With.xml | 18 -- .../testtool/EnrichEntity/Regression/in.xml | 11 - .../testtool/EnrichEntity/Regression/out.xml | 28 --- ...ramShouldResultInUnchangedInput.properties | 10 - .../in.xml | 12 -- .../out.xml | 12 -- .../Regression.properties | 13 -- .../Regression/With.xml | 42 ---- .../Regression/in.xml | 11 - .../Regression/out.xml | 46 ---- ...nInputShouldResultInEmptyResult.properties | 10 - .../in.xml | 14 -- .../out.txt | 0 .../FilterBaseZdsZaak/Regression.properties | 10 - .../FilterBaseZdsZaak/Regression/in.xml | 200 ----------------- .../FilterBaseZdsZaak/Regression/out.xml | 7 - ...lueOverridesStartingWithKeyRoot.properties | 12 -- .../ValueOverrides.xml | 25 --- .../out.xml | 21 -- .../SelectZdsRoles/SelectZdsRoles.properties | 13 -- .../SelectZdsRoles/RolMapping.xml | 31 --- .../SelectZdsRoles/SelectZdsRoles/in.xml | 201 ----------------- .../SelectZdsRoles/SelectZdsRoles/out.xml | 188 ---------------- ...dentificatieShouldResultInMatch.properties | 15 -- .../MatchWithZdsRol.xml | 15 -- .../in.xml | 20 -- .../out.xml | 18 -- ...nlyInn.nnpIdShouldResultInMatch.properties | 15 -- .../MatchWithZdsRol.xml | 15 -- .../in.xml | 20 -- .../out.xml | 18 -- ...KerngegevensShouldResultInMatch.properties | 15 -- .../MatchWithZdsRol.xml | 15 -- .../in.xml | 18 -- .../out.xml | 18 -- ...rngegevensShouldResultInNoMatch.properties | 14 -- .../MatchWithZdsRol.xml | 15 -- .../in.xml | 18 -- .../out.xml | 1 - ...rngegevensShouldResultInNoMatch.properties | 14 -- .../MatchWithZdsRol.xml | 15 -- .../in.xml | 16 -- .../out.xml | 1 - ...gOnlyInp.bsnShouldResultInMatch.properties | 15 -- .../MatchWithZdsRol.xml | 15 -- .../in.xml | 20 -- .../out.xml | 18 -- .../Regression.properties | 14 -- .../Regression/MatchWithZdsRol.xml | 16 -- .../Regression/in.xml | 204 ------------------ .../Regression/out.xml | 18 -- ...ferentRoleShouldResultInNoMatch.properties | 14 -- .../MatchWithZdsRol.xml | 16 -- .../in.xml | 21 -- .../out.xml | 1 - ...eWithShouldResultInInputContext.properties | 11 - .../in.xml | 15 -- .../out.xml | 15 -- ...ShouldMergeWithDefaultCondition.properties | 14 -- .../in.xml | 15 -- .../mergeWith.xml | 8 - .../out.xml | 16 -- .../ApplyValueOverrides.properties | 19 -- .../ApplyValueOverrides/ValueOverrides.xml | 20 -- .../ValueOverrides/ApplyValueOverrides/in.xml | 23 -- .../ApplyValueOverrides/mergeWith.xml | 8 - .../ApplyValueOverrides/out.xml | 24 --- ...OverridesZgwToZdsExtraElementen.properties | 14 -- .../context.xml | 15 -- .../in.xml | 15 -- .../out.xml | 3 - ...ShouldMergeWithDefaultCondition.properties | 17 -- .../ValueOverrides.xml | 1 - .../in.xml | 15 -- .../mergeWith.xml | 8 - .../out.xml | 16 -- ...ontextSourcedFromExtraElementen.properties | 14 -- .../context.xml | 15 -- .../in.xml | 15 -- .../out.xml | 14 -- ...ShouldUseEmptyInputContextValue.properties | 19 -- .../ValueOverrides.xml | 1 - .../in.xml | 5 - .../mergeWith.xml | 1 - .../out.xml | 5 - ...ilShouldUseNilInputContextValue.properties | 19 -- .../ValueOverrides.xml | 1 - .../in.xml | 5 - .../mergeWith.xml | 1 - .../out.xml | 5 - ...ContextsAndIgnoreValueOverrides.properties | 19 -- .../ValueOverrides.xml | 7 - .../in.xml | 23 -- .../mergeWith.xml | 12 -- .../out.xml | 29 --- ...ntInContextsShouldNotThrowError.properties | 19 -- .../ValueOverrides.xml | 7 - .../in.xml | 15 -- .../mergeWith.xml | 8 - .../out.xml | 16 -- ...ldResultInPreValueOverrideValue.properties | 17 -- .../PreValueOverridesContext.xml | 15 -- .../context.xml | 11 - .../in.xml | 7 - .../out.xml | 15 -- ...ementShouldResultInEmptyElement.properties | 17 -- .../PreValueOverridesContext.xml | 15 -- .../context.xml | 27 --- .../in.xml | 15 -- .../out.xml | 15 -- ...ldResultInPreValueOverrideValue.properties | 17 -- .../PreValueOverridesContext.xml | 15 -- .../context.xml | 27 --- .../in.xml | 15 -- .../out.xml | 15 -- ...ShouldResultInExtraElementValue.properties | 17 -- .../PreValueOverridesContext.xml | 15 -- .../context.xml | 27 --- .../in.xml | 15 -- .../out.xml | 15 -- ...ValuesWithExtraElementenContext.properties | 17 -- .../PreValueOverridesContext.xml | 15 -- .../context.xml | 27 --- .../in.xml | 15 -- .../out.xml | 15 -- ...tShouldUseMergeWithContextValue.properties | 17 -- .../ValueOverrides.xml | 6 - .../in.xml | 3 - .../mergeWith.xml | 5 - .../out.xml | 5 - ...yShouldUseMergeWithContextValue.properties | 19 -- .../ValueOverrides.xml | 6 - .../in.xml | 5 - .../mergeWith.xml | 5 - .../out.xml | 5 - ...lShouldUseMergeWithContextValue.properties | 17 -- .../ValueOverrides.xml | 6 - .../in.xml | 3 - .../mergeWith.xml | 5 - .../out.xml | 5 - ...EmptyShouldUseInputContextValue.properties | 19 -- .../ValueOverrides.xml | 6 - .../in.xml | 5 - .../mergeWith.xml | 5 - .../out.xml | 5 - ...lueOverridesDepthFirstUnflatten.properties | 14 -- .../ValueOverrides.xml | 21 -- .../ValueOverridesDepthFirstUnflatten/out.xml | 8 - src/test/testtool/ZgwRol/ZgwRol.properties | 16 -- .../testtool/ZgwRol/ZgwRol/RolMapping.xml | 31 --- .../testtool/ZgwRol/ZgwRol/ZgwRolTypen.xml | 38 ---- src/test/testtool/ZgwRol/ZgwRol/in.xml | 21 -- src/test/testtool/ZgwRol/ZgwRol/out.xml | 12 -- 168 files changed, 1 insertion(+), 3008 deletions(-) delete mode 100644 src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t.properties delete mode 100644 src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt delete mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2.properties delete mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt delete mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2.properties delete mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt delete mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2.properties delete mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt delete mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2.properties delete mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt delete mode 100644 src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput.properties delete mode 100644 src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/in.xml delete mode 100644 src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml delete mode 100644 src/test/testtool/EnrichEntity/Regression.properties delete mode 100644 src/test/testtool/EnrichEntity/Regression/With.xml delete mode 100644 src/test/testtool/EnrichEntity/Regression/in.xml delete mode 100644 src/test/testtool/EnrichEntity/Regression/out.xml delete mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput.properties delete mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/in.xml delete mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/out.xml delete mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression.properties delete mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/With.xml delete mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/in.xml delete mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/out.xml delete mode 100644 src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult.properties delete mode 100644 src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/in.xml delete mode 100644 src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/out.txt delete mode 100644 src/test/testtool/FilterBaseZdsZaak/Regression.properties delete mode 100644 src/test/testtool/FilterBaseZdsZaak/Regression/in.xml delete mode 100644 src/test/testtool/FilterBaseZdsZaak/Regression/out.xml delete mode 100644 src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.properties delete mode 100644 src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/ValueOverrides.xml delete mode 100644 src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/out.xml delete mode 100644 src/test/testtool/SelectZdsRoles/SelectZdsRoles.properties delete mode 100644 src/test/testtool/SelectZdsRoles/SelectZdsRoles/RolMapping.xml delete mode 100644 src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml delete mode 100644 src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch.properties delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/MatchWithZdsRol.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/in.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/out.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch.properties delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/MatchWithZdsRol.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/in.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/out.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch.properties delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/MatchWithZdsRol.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/in.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/out.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch.properties delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/in.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/out.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch.properties delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/in.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/out.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch.properties delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/MatchWithZdsRol.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/in.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/out.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression.properties delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/MatchWithZdsRol.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/in.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/out.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch.properties delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/MatchWithZdsRol.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/in.xml delete mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/out.xml delete mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext.properties delete mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/in.xml delete mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/out.xml delete mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition.properties delete mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/in.xml delete mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml delete mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/out.xml delete mode 100644 src/test/testtool/ValueOverrides/ApplyValueOverrides.properties delete mode 100644 src/test/testtool/ValueOverrides/ApplyValueOverrides/ValueOverrides.xml delete mode 100644 src/test/testtool/ValueOverrides/ApplyValueOverrides/in.xml delete mode 100644 src/test/testtool/ValueOverrides/ApplyValueOverrides/mergeWith.xml delete mode 100644 src/test/testtool/ValueOverrides/ApplyValueOverrides/out.xml delete mode 100644 src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen.properties delete mode 100644 src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/context.xml delete mode 100644 src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/in.xml delete mode 100644 src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/out.xml delete mode 100644 src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition.properties delete mode 100644 src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/ValueOverrides.xml delete mode 100644 src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/in.xml delete mode 100644 src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml delete mode 100644 src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/out.xml delete mode 100644 src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen.properties delete mode 100644 src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/context.xml delete mode 100644 src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/in.xml delete mode 100644 src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/out.xml delete mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue.properties delete mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/ValueOverrides.xml delete mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/in.xml delete mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/mergeWith.xml delete mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/out.xml delete mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue.properties delete mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/ValueOverrides.xml delete mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/in.xml delete mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/mergeWith.xml delete mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/out.xml delete mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides.properties delete mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/ValueOverrides.xml delete mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/in.xml delete mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/mergeWith.xml delete mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/out.xml delete mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError.properties delete mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/ValueOverrides.xml delete mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/in.xml delete mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/mergeWith.xml delete mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/out.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue.properties delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement.properties delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/PreValueOverridesContext.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/context.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/in.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/out.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue.properties delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/context.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/in.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/out.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue.properties delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/PreValueOverridesContext.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/context.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/in.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/out.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext.properties delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/PreValueOverridesContext.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/context.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/in.xml delete mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/out.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue.properties delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/ValueOverrides.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/in.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/mergeWith.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/out.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue.properties delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/ValueOverrides.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/in.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/mergeWith.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/out.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue.properties delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/ValueOverrides.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/in.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/mergeWith.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/out.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue.properties delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/ValueOverrides.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/in.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/mergeWith.xml delete mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/out.xml delete mode 100644 src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten.properties delete mode 100644 src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/ValueOverrides.xml delete mode 100644 src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/out.xml delete mode 100644 src/test/testtool/ZgwRol/ZgwRol.properties delete mode 100644 src/test/testtool/ZgwRol/ZgwRol/RolMapping.xml delete mode 100644 src/test/testtool/ZgwRol/ZgwRol/ZgwRolTypen.xml delete mode 100644 src/test/testtool/ZgwRol/ZgwRol/in.xml delete mode 100644 src/test/testtool/ZgwRol/ZgwRol/out.xml diff --git a/.github/workflows/run-larva-scenarios.yml b/.github/workflows/run-larva-scenarios.yml index 89870915e..00df02b2d 100644 --- a/.github/workflows/run-larva-scenarios.yml +++ b/.github/workflows/run-larva-scenarios.yml @@ -62,8 +62,8 @@ jobs: - name: Check if all scenarios passed run: | + cat results.html if ! grep -q 'All scenarios passed' results.html; then echo "Not all scenarios passed. Failing the job." - cat results.html exit 1 fi \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t.properties b/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t.properties deleted file mode 100644 index c5f78ee85..000000000 --- a/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t.properties +++ /dev/null @@ -1,12 +0,0 @@ -scenario.description = Alpha2ShouldReturnAlpha3t' - -include =../common.properties - -zaakbrug.Alpha2ShouldReturnAlpha3t.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.Alpha2ShouldReturnAlpha3t.filename = Translate/Common/xsl/GetISO639Code.xslt - -step1.zaakbrug.Alpha2ShouldReturnAlpha3t.read = ${configurations.directory}/Translate/ISO639.xml -step1.zaakbrug.Alpha2ShouldReturnAlpha3t.read.param1.name = Alpha2 -step1.zaakbrug.Alpha2ShouldReturnAlpha3t.read.param1.value = nl -step2.zaakbrug.Alpha2ShouldReturnAlpha3t.write = Alpha2ShouldReturnAlpha3t/out.txt - diff --git a/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt deleted file mode 100644 index 4aad2ed18..000000000 --- a/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt +++ /dev/null @@ -1 +0,0 @@ -nlddsds \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2.properties b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2.properties deleted file mode 100644 index 3883ccf56..000000000 --- a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2.properties +++ /dev/null @@ -1,12 +0,0 @@ -scenario.description = Alpha3WithAlpha3bValueShouldReturnAlpha2' - -include =../common.properties - -zaakbrug.Alpha3WithAlpha3bValueShouldReturnAlpha2.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.Alpha3WithAlpha3bValueShouldReturnAlpha2.filename = Translate/Common/xsl/GetISO639Code.xslt - -step1.zaakbrug.Alpha3WithAlpha3bValueShouldReturnAlpha2.read = ${configurations.directory}/Translate/ISO639.xml -step1.zaakbrug.Alpha3WithAlpha3bValueShouldReturnAlpha2.read.param1.name = Alpha3 -step1.zaakbrug.Alpha3WithAlpha3bValueShouldReturnAlpha2.read.param1.value = eng -step2.zaakbrug.Alpha3WithAlpha3bValueShouldReturnAlpha2.write = Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt - diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt deleted file mode 100644 index 059e33b58..000000000 --- a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt +++ /dev/null @@ -1 +0,0 @@ -endsds \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2.properties b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2.properties deleted file mode 100644 index 8aa9131df..000000000 --- a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2.properties +++ /dev/null @@ -1,12 +0,0 @@ -scenario.description = Alpha3WithAlpha3tValueShouldReturnAlpha2' - -include =../common.properties - -zaakbrug.Alpha3WithAlpha3tValueShouldReturnAlpha2.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.Alpha3WithAlpha3tValueShouldReturnAlpha2.filename = Translate/Common/xsl/GetISO639Code.xslt - -step1.zaakbrug.Alpha3WithAlpha3tValueShouldReturnAlpha2.read = ${configurations.directory}/Translate/ISO639.xml -step1.zaakbrug.Alpha3WithAlpha3tValueShouldReturnAlpha2.read.param1.name = Alpha3 -step1.zaakbrug.Alpha3WithAlpha3tValueShouldReturnAlpha2.read.param1.value = nld -step2.zaakbrug.Alpha3WithAlpha3tValueShouldReturnAlpha2.write = Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt - diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt deleted file mode 100644 index 86a8418bd..000000000 --- a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt +++ /dev/null @@ -1 +0,0 @@ -nldsds \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2.properties b/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2.properties deleted file mode 100644 index 5ff634525..000000000 --- a/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2.properties +++ /dev/null @@ -1,12 +0,0 @@ -scenario.description = Alpha3bShouldReturnAlpha2' - -include =../common.properties - -zaakbrug.Alpha3bShouldReturnAlpha2.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.Alpha3bShouldReturnAlpha2.filename = Translate/Common/xsl/GetISO639Code.xslt - -step1.zaakbrug.Alpha3bShouldReturnAlpha2.read = ${configurations.directory}/Translate/ISO639.xml -step1.zaakbrug.Alpha3bShouldReturnAlpha2.read.param1.name = Alpha3b -step1.zaakbrug.Alpha3bShouldReturnAlpha2.read.param1.value = eng -step2.zaakbrug.Alpha3bShouldReturnAlpha2.write = Alpha3bShouldReturnAlpha2/out.txt - diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt deleted file mode 100644 index 059e33b58..000000000 --- a/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt +++ /dev/null @@ -1 +0,0 @@ -endsds \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2.properties b/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2.properties deleted file mode 100644 index 4a81ea730..000000000 --- a/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2.properties +++ /dev/null @@ -1,12 +0,0 @@ -scenario.description = Alpha3tShouldReturnAlpha2' - -include =../common.properties - -zaakbrug.Alpha3tShouldReturnAlpha2.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.Alpha3tShouldReturnAlpha2.filename = Translate/Common/xsl/GetISO639Code.xslt - -step1.zaakbrug.Alpha3tShouldReturnAlpha2.read = ${configurations.directory}/Translate/ISO639.xml -step1.zaakbrug.Alpha3tShouldReturnAlpha2.read.param1.name = Alpha3t -step1.zaakbrug.Alpha3tShouldReturnAlpha2.read.param1.value = nld -step2.zaakbrug.Alpha3tShouldReturnAlpha2.write = Alpha3tShouldReturnAlpha2/out.txt - diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt deleted file mode 100644 index 86a8418bd..000000000 --- a/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt +++ /dev/null @@ -1 +0,0 @@ -nldsds \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput.properties b/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput.properties deleted file mode 100644 index 9a37caead..000000000 --- a/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput.properties +++ /dev/null @@ -1,10 +0,0 @@ -scenario.description: - -include: ../common.properties - -zaakbrug.EnrichEntity.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.EnrichEntity.filename: Translate/Common/xsl/EnrichEntity.xslt - -step1.zaakbrug.EnrichEntity.read: EmptyWithParamShouldResultInUnchangedInput/in.xml -step2.zaakbrug.EnrichEntity.write: EmptyWithParamShouldResultInUnchangedInput/out.xml - diff --git a/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/in.xml b/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/in.xml deleted file mode 100644 index 9bddfa534..000000000 --- a/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/in.xml +++ /dev/null @@ -1,12 +0,0 @@ - - ZK2024-00194 - Aanvraag omgevingsvergunning - 20240920 - 20240920 - (Nog) niet - J - - openbaar - - \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml b/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml deleted file mode 100644 index 3f4b88f44..000000000 --- a/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml +++ /dev/null @@ -1,3 +0,0 @@ - - \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity/Regression.properties b/src/test/testtool/EnrichEntity/Regression.properties deleted file mode 100644 index 4c2277453..000000000 --- a/src/test/testtool/EnrichEntity/Regression.properties +++ /dev/null @@ -1,13 +0,0 @@ -scenario.description: - -include: ../common.properties - -zaakbrug.EnrichEntity.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.EnrichEntity.filename: Translate/Common/xsl/EnrichEntity.xslt - -step1.zaakbrug.EnrichEntity.read: Regression/in.xml -step1.zaakbrug.EnrichEntity.read.param1.name: With -step1.zaakbrug.EnrichEntity.read.param1.valuefile = Regression/With.xml -step1.zaakbrug.EnrichEntity.read.param1.type = domdoc -step2.zaakbrug.EnrichEntity.write: Regression/out.xml - diff --git a/src/test/testtool/EnrichEntity/Regression/With.xml b/src/test/testtool/EnrichEntity/Regression/With.xml deleted file mode 100644 index fbd203c8c..000000000 --- a/src/test/testtool/EnrichEntity/Regression/With.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - 823288444 - N - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - - - \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity/Regression/in.xml b/src/test/testtool/EnrichEntity/Regression/in.xml deleted file mode 100644 index 322f15646..000000000 --- a/src/test/testtool/EnrichEntity/Regression/in.xml +++ /dev/null @@ -1,11 +0,0 @@ - - ZK2024-00194 - Aanvraag omgevingsvergunning - 20240920 - 20240920 - (Nog) niet - J - - openbaar - - \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity/Regression/out.xml b/src/test/testtool/EnrichEntity/Regression/out.xml deleted file mode 100644 index b5f4030a6..000000000 --- a/src/test/testtool/EnrichEntity/Regression/out.xml +++ /dev/null @@ -1,28 +0,0 @@ - - ZK2024-00194 - Aanvraag omgevingsvergunning - 20240920 - 1234567890 - (Nog) niet - J - - openbaar - - - - - 823288444 - N - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - - - - \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput.properties b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput.properties deleted file mode 100644 index 22c14866c..000000000 --- a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput.properties +++ /dev/null @@ -1,10 +0,0 @@ -scenario.description: - -include: ../common.properties - -zaakbrug.EnrichEntity_ForEachPipeWrapped.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.EnrichEntity_ForEachPipeWrapped.filename: Translate/Common/xsl/EnrichEntity_ForEachPipeWrapped.xslt - -step1.zaakbrug.EnrichEntity_ForEachPipeWrapped.read: EmptyWithParamShouldResultInUnchangedInput/in.xml -step2.zaakbrug.EnrichEntity_ForEachPipeWrapped.write: EmptyWithParamShouldResultInUnchangedInput/out.xml - diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/in.xml b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/in.xml deleted file mode 100644 index 9bddfa534..000000000 --- a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/in.xml +++ /dev/null @@ -1,12 +0,0 @@ - - ZK2024-00194 - Aanvraag omgevingsvergunning - 20240920 - 20240920 - (Nog) niet - J - - openbaar - - \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/out.xml b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/out.xml deleted file mode 100644 index 9bddfa534..000000000 --- a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/out.xml +++ /dev/null @@ -1,12 +0,0 @@ - - ZK2024-00194 - Aanvraag omgevingsvergunning - 20240920 - 20240920 - (Nog) niet - J - - openbaar - - \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression.properties b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression.properties deleted file mode 100644 index be5f9a700..000000000 --- a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression.properties +++ /dev/null @@ -1,13 +0,0 @@ -scenario.description: - -include: ../common.properties - -zaakbrug.EnrichEntity_ForEachPipeWrapped.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.EnrichEntity_ForEachPipeWrapped.filename: Translate/Common/xsl/EnrichEntity_ForEachPipeWrapped.xslt - -step1.zaakbrug.EnrichEntity_ForEachPipeWrapped.read: Regression/in.xml -step1.zaakbrug.EnrichEntity_ForEachPipeWrapped.read.param1.name: With -step1.zaakbrug.EnrichEntity_ForEachPipeWrapped.read.param1.valuefile = Regression/With.xml -step1.zaakbrug.EnrichEntity_ForEachPipeWrapped.read.param1.type = domdoc -step2.zaakbrug.EnrichEntity_ForEachPipeWrapped.write: Regression/out.xml - diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/With.xml b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/With.xml deleted file mode 100644 index ce7fcd463..000000000 --- a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/With.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - 823288444 - N - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - - - - - - - - - 823288444 - N - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - - - - - \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/in.xml b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/in.xml deleted file mode 100644 index 322f15646..000000000 --- a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/in.xml +++ /dev/null @@ -1,11 +0,0 @@ - - ZK2024-00194 - Aanvraag omgevingsvergunning - 20240920 - 20240920 - (Nog) niet - J - - openbaar - - \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/out.xml b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/out.xml deleted file mode 100644 index 359e6adda..000000000 --- a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/out.xml +++ /dev/null @@ -1,46 +0,0 @@ - - ZK2024-00194 - Aanvraag omgevingsvergunning - 20240920 - 20240920 - (Nog) niet - J - - openbaar - - - - - 823288444 - N - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - - - - - - - 823288444 - N - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - - - - \ No newline at end of file diff --git a/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult.properties b/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult.properties deleted file mode 100644 index f03269192..000000000 --- a/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult.properties +++ /dev/null @@ -1,10 +0,0 @@ -scenario.description: - -include: ../common.properties - -zaakbrug.FilterBaseZdsZaak.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.FilterBaseZdsZaak.filename: Translate/Common/xsl/FilterBaseZdsZaak.xslt - -step1.zaakbrug.FilterBaseZdsZaak.read: NoZAKObjectInInputShouldResultInEmptyResult/in.xml -step2.zaakbrug.FilterBaseZdsZaak.write: NoZAKObjectInInputShouldResultInEmptyResult/out.txt - diff --git a/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/in.xml b/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/in.xml deleted file mode 100644 index a6a0245e0..000000000 --- a/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/in.xml +++ /dev/null @@ -1,14 +0,0 @@ - - ZK2024-00028 - Aanvraag omgevingsvergunning - 20240916 - 20240916 - (Nog) niet - - - VO-A - VO-A - - - - \ No newline at end of file diff --git a/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/out.txt b/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/out.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/test/testtool/FilterBaseZdsZaak/Regression.properties b/src/test/testtool/FilterBaseZdsZaak/Regression.properties deleted file mode 100644 index 60bc597a9..000000000 --- a/src/test/testtool/FilterBaseZdsZaak/Regression.properties +++ /dev/null @@ -1,10 +0,0 @@ -scenario.description: - -include: ../common.properties - -zaakbrug.FilterBaseZdsZaak.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.FilterBaseZdsZaak.filename: Translate/Common/xsl/FilterBaseZdsZaak.xslt - -step1.zaakbrug.FilterBaseZdsZaak.read: Regression/in.xml -step2.zaakbrug.FilterBaseZdsZaak.write: Regression/out.xml - diff --git a/src/test/testtool/FilterBaseZdsZaak/Regression/in.xml b/src/test/testtool/FilterBaseZdsZaak/Regression/in.xml deleted file mode 100644 index 8e3679acb..000000000 --- a/src/test/testtool/FilterBaseZdsZaak/Regression/in.xml +++ /dev/null @@ -1,200 +0,0 @@ - - ZK2024-00028 - Aanvraag omgevingsvergunning - 20240916 - 20240916 - (Nog) niet - - - VO-A - VO-A - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - 12345678 - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - \ No newline at end of file diff --git a/src/test/testtool/FilterBaseZdsZaak/Regression/out.xml b/src/test/testtool/FilterBaseZdsZaak/Regression/out.xml deleted file mode 100644 index b424ed491..000000000 --- a/src/test/testtool/FilterBaseZdsZaak/Regression/out.xml +++ /dev/null @@ -1,7 +0,0 @@ - - ZK2024-00028 - Aanvraag omgevingsvergunning - 20240916 - 20240916 - (Nog) niet - \ No newline at end of file diff --git a/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.properties b/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.properties deleted file mode 100644 index b3da3aef4..000000000 --- a/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.properties +++ /dev/null @@ -1,12 +0,0 @@ -scenario.description = ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot - -include =../common.properties - -zaakbrug.ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.filename = Translate/Common/xsl/FilterValueOverridesOnKeyRoot.xslt - -step1.zaakbrug.ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.read = ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/ValueOverrides.xml -step1.zaakbrug.ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.read.param1.name = valueOverrideKeyRoot -step1.zaakbrug.ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.read.param1.value = zgw.zaken-api.rollen.zgwRol -step2.zaakbrug.ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.write = ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/out.xml - diff --git a/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/ValueOverrides.xml b/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/ValueOverrides.xml deleted file mode 100644 index 45a566946..000000000 --- a/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/ValueOverrides.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - zgw.zaken-api.zaken.ZgwZaak.betalingsindicatie - nvt - - - zgw.zaken-api.rollen.zgwRol.roltoelichting - lalala - true() - - - zgw.zaken-api.rollen.zgwRol.betrokkeneIdentificatie.inpBsn - apple - true() - - - zgw.zaken-api.rollen.zgwRol.betrokkeneIdentificatie.geslachtsnaam - banana - true() - - - zgw.zaken-api.rollen.zgwRol.betrokkeneIdentificatie.idontexist - kiwi - - \ No newline at end of file diff --git a/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/out.xml b/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/out.xml deleted file mode 100644 index c000a0977..000000000 --- a/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/out.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - zgwRol.roltoelichting - lalala - true() - - - zgwRol.betrokkeneIdentificatie.inpBsn - apple - true() - - - zgwRol.betrokkeneIdentificatie.geslachtsnaam - banana - true() - - - zgwRol.betrokkeneIdentificatie.idontexist - kiwi - - \ No newline at end of file diff --git a/src/test/testtool/SelectZdsRoles/SelectZdsRoles.properties b/src/test/testtool/SelectZdsRoles/SelectZdsRoles.properties deleted file mode 100644 index 7ecfe6b4a..000000000 --- a/src/test/testtool/SelectZdsRoles/SelectZdsRoles.properties +++ /dev/null @@ -1,13 +0,0 @@ -scenario.description: - -include: ../common.properties - -zaakbrug.SelectZdsRoles.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.SelectZdsRoles.filename: Translate/Common/xsl/SelectZdsRoles.xslt - -step1.zaakbrug.SelectZdsRoles.read: SelectZdsRoles/in.xml -step1.zaakbrug.SelectZdsRoles.read.param1.name: RolMapping -step1.zaakbrug.SelectZdsRoles.read.param1.valuefile = SelectZdsRoles/RolMapping.xml -step1.zaakbrug.SelectZdsRoles.read.param1.type = domdoc -step2.zaakbrug.SelectZdsRoles.write: SelectZdsRoles/out.xml - diff --git a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/RolMapping.xml b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/RolMapping.xml deleted file mode 100644 index 1c01b8da8..000000000 --- a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/RolMapping.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - Haarlem - 0392 - 001005650 - - - Zeevang - 0478 - 001509962 - - - Súdwest-Fryslân - 1900 - 548746485 - - - Eindhoven - 0772 - 548746485 - - - BetrekkingOp - Belanghebbende - Initiator - Uitvoerende - Verantwoordelijke - Gemachtigde - OverigeBetrokkene - - \ No newline at end of file diff --git a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml deleted file mode 100644 index 98d71fe5c..000000000 --- a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml +++ /dev/null @@ -1,201 +0,0 @@ - - - ZK2024-00028 - Aanvraag omgevingsvergunning - 20240916 - 20240916 - (Nog) niet - - - VO-A - VO-A - - - - - - - 123456789 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - 12345678 - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - \ No newline at end of file diff --git a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml deleted file mode 100644 index 69904bbf1..000000000 --- a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - 23456789 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - 12345678 - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch.properties deleted file mode 100644 index e9270173a..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch.properties +++ /dev/null @@ -1,15 +0,0 @@ -scenario.description: -scenario.active: false - -include: ../common.properties - -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt - -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/in.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/MatchWithZdsRol.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false -step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/MatchWithZdsRol.xml deleted file mode 100644 index ba2804146..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/MatchWithZdsRol.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - 823288444 - N - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - 12345678 - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/in.xml deleted file mode 100644 index 6995faebb..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/in.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - 823288444 - J - not the same - also not the same - - - - 12345678 - - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/out.xml deleted file mode 100644 index dec5d5d78..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/out.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - 823288444 - J - not the same - also not the same - - - - 12345678 - - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch.properties deleted file mode 100644 index 92566bdbb..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch.properties +++ /dev/null @@ -1,15 +0,0 @@ -scenario.description: -scenario.active: false - -include: ../common.properties - -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt - -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/in.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/MatchWithZdsRol.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false -step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/MatchWithZdsRol.xml deleted file mode 100644 index 81a5bac61..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/MatchWithZdsRol.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - 823288444 - N - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - 12345678 - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/in.xml deleted file mode 100644 index 827a93876..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/in.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - 823288444 - J - not the same - also not the same - - - - 12345678 - - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/out.xml deleted file mode 100644 index dec5d5d78..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/out.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - 823288444 - J - not the same - also not the same - - - - 12345678 - - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch.properties deleted file mode 100644 index a24abe937..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch.properties +++ /dev/null @@ -1,15 +0,0 @@ -scenario.description: -scenario.active: false - -include: ../common.properties - -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt - -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: NNPWithMatchingRemainingKerngegevensShouldResultInMatch/in.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = NNPWithMatchingRemainingKerngegevensShouldResultInMatch/MatchWithZdsRol.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false -step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: NNPWithMatchingRemainingKerngegevensShouldResultInMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/MatchWithZdsRol.xml deleted file mode 100644 index c0a63eb5e..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/MatchWithZdsRol.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - N - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - datumAanvang - - - - 12345678 - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/in.xml deleted file mode 100644 index 5d5c07307..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/in.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - different but no kerngegeven - different kerngegegeven - overig_privaatrechtelijke_rechtspersoon - different but no kerngegeven - - - - different but no kerngegeven - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/out.xml deleted file mode 100644 index dec5d5d78..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/out.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - 823288444 - J - not the same - also not the same - - - - 12345678 - - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch.properties deleted file mode 100644 index 6ba8db86b..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch.properties +++ /dev/null @@ -1,14 +0,0 @@ -scenario.description: - -include: ../common.properties - -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt - -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/in.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false -step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml deleted file mode 100644 index c0a63eb5e..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - N - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - datumAanvang - - - - 12345678 - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/in.xml deleted file mode 100644 index 3b93d30eb..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/in.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - different but no kerngegeven - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - different but no kerngegeven - - - - different but no kerngegeven - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/out.xml deleted file mode 100644 index de0beb68e..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/out.xml +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch.properties deleted file mode 100644 index 7eaddfd85..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch.properties +++ /dev/null @@ -1,14 +0,0 @@ -scenario.description: - -include: ../common.properties - -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt - -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: NNPWithoutKerngegevensShouldResultInNoMatch/in.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = NNPWithoutKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false -step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: NNPWithoutKerngegevensShouldResultInNoMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml deleted file mode 100644 index c0a63eb5e..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - N - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - datumAanvang - - - - 12345678 - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/in.xml deleted file mode 100644 index 59ab6f7d7..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/in.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - different but no kerngegeven - different but no kerngegeven - - - - different but no kerngegeven - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/out.xml deleted file mode 100644 index de0beb68e..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/out.xml +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch.properties deleted file mode 100644 index 0b8f2edcb..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch.properties +++ /dev/null @@ -1,15 +0,0 @@ -scenario.description: -scenario.active: false - -include: ../common.properties - -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt - -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: NPSWithMatchingOnlyInp.bsnShouldResultInMatch/in.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = NPSWithMatchingOnlyInp.bsnShouldResultInMatch/MatchWithZdsRol.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false -step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: NPSWithMatchingOnlyInp.bsnShouldResultInMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/MatchWithZdsRol.xml deleted file mode 100644 index ba2804146..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/MatchWithZdsRol.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - 823288444 - N - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - 12345678 - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/in.xml deleted file mode 100644 index 6995faebb..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/in.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - 823288444 - J - not the same - also not the same - - - - 12345678 - - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/out.xml deleted file mode 100644 index dec5d5d78..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/out.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - 823288444 - J - not the same - also not the same - - - - 12345678 - - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression.properties deleted file mode 100644 index e1b5c5c8e..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression.properties +++ /dev/null @@ -1,14 +0,0 @@ -scenario.description: - -include: ../common.properties - -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt - -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: Regression/in.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = Regression/MatchWithZdsRol.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false -step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: Regression/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/MatchWithZdsRol.xml deleted file mode 100644 index af4f02832..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/MatchWithZdsRol.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - 823288444 - N - - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - 12345678 - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/in.xml deleted file mode 100644 index f938fc193..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/in.xml +++ /dev/null @@ -1,204 +0,0 @@ - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - 12345678 - - - - - - 823288444 - N - - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - 12345678 - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - - - - 111111110 - J - Precies - - P - Pietje - M - 19010101 - - - J - Bolsward - - Kerkstraat - 8701HP - 1 - - - - - - - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/out.xml deleted file mode 100644 index 31fba7838..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/out.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - 823288444 - N - - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - 12345678 - - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch.properties deleted file mode 100644 index 63735ce75..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch.properties +++ /dev/null @@ -1,14 +0,0 @@ -scenario.description: - -include: ../common.properties - -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt - -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: SameGerelateerdeButDifferentRoleShouldResultInNoMatch/in.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = SameGerelateerdeButDifferentRoleShouldResultInNoMatch/MatchWithZdsRol.xml -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug -step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false -step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: SameGerelateerdeButDifferentRoleShouldResultInNoMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/MatchWithZdsRol.xml deleted file mode 100644 index af4f02832..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/MatchWithZdsRol.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - 823288444 - N - - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - 12345678 - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/in.xml deleted file mode 100644 index 83723bf55..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/in.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - 823288444 - N - - Gemeente Súdwest-Fryslân - overig_privaatrechtelijke_rechtspersoon - - - - 12345678 - - - diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/out.xml deleted file mode 100644 index de0beb68e..000000000 --- a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/out.xml +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext.properties b/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext.properties deleted file mode 100644 index 170c81a96..000000000 --- a/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext.properties +++ /dev/null @@ -1,11 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt - -step1.zaakbrug.ApplyValueOverrides.read = AbsentValueOverridesAndMergeWithShouldResultInInputContext/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param1.value = false -step2.zaakbrug.ApplyValueOverrides.write = AbsentValueOverridesAndMergeWithShouldResultInInputContext/out.xml diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/in.xml b/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/in.xml deleted file mode 100644 index fbb84f60c..000000000 --- a/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/in.xml +++ /dev/null @@ -1,15 +0,0 @@ - - natuurlijk_persoon - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a - BetrekkingOp:Precies - - 111111110 - J - Precies - - P - Pietje - m - 1901-01-01 - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/out.xml b/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/out.xml deleted file mode 100644 index 4839dc0b3..000000000 --- a/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/out.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - J - 1901-01-01 - m - Precies - 111111110 - P - Pietje - - - natuurlijk_persoon - BetrekkingOp:Precies - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition.properties b/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition.properties deleted file mode 100644 index 624bf4aa0..000000000 --- a/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition.properties +++ /dev/null @@ -1,14 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt - -step1.zaakbrug.ApplyValueOverrides.read = AbsentValueOverridesShouldMergeWithDefaultCondition/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = mergeWith -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = AbsentValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param2.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param2.value = false -step2.zaakbrug.ApplyValueOverrides.write = AbsentValueOverridesShouldMergeWithDefaultCondition/out.xml diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/in.xml b/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/in.xml deleted file mode 100644 index fbb84f60c..000000000 --- a/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/in.xml +++ /dev/null @@ -1,15 +0,0 @@ - - natuurlijk_persoon - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a - BetrekkingOp:Precies - - 111111110 - J - Precies - - P - Pietje - m - 1901-01-01 - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml b/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml deleted file mode 100644 index 95cb727b0..000000000 --- a/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml +++ /dev/null @@ -1,8 +0,0 @@ - - lalala - - apple - banana - kiwi - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/out.xml b/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/out.xml deleted file mode 100644 index 4cde24bd0..000000000 --- a/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/out.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - J - 1901-01-01 - m - Precies - kiwi - 111111110 - P - Pietje - - - natuurlijk_persoon - BetrekkingOp:Precies - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ApplyValueOverrides.properties b/src/test/testtool/ValueOverrides/ApplyValueOverrides.properties deleted file mode 100644 index aa1b37730..000000000 --- a/src/test/testtool/ValueOverrides/ApplyValueOverrides.properties +++ /dev/null @@ -1,19 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt - -step1.zaakbrug.ApplyValueOverrides.read = ApplyValueOverrides/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ApplyValueOverrides/ValueOverrides.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = node -step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ApplyValueOverrides/mergeWith.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys -step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.kenmerken -step2.zaakbrug.ApplyValueOverrides.write = ApplyValueOverrides/out.xml diff --git a/src/test/testtool/ValueOverrides/ApplyValueOverrides/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ApplyValueOverrides/ValueOverrides.xml deleted file mode 100644 index 52f04ca94..000000000 --- a/src/test/testtool/ValueOverrides/ApplyValueOverrides/ValueOverrides.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - zgwRol.roltoelichting - lalala - true() - - - zgwRol.betrokkeneIdentificatie.inpBsn - apple - true() - - - zgwRol.betrokkeneIdentificatie.geslachtsnaam - shouldUseDefaultCondition - - - zgwRol.betrokkeneIdentificatie.idontexist - shouldUseDefaultCondition - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ApplyValueOverrides/in.xml b/src/test/testtool/ValueOverrides/ApplyValueOverrides/in.xml deleted file mode 100644 index 186035833..000000000 --- a/src/test/testtool/ValueOverrides/ApplyValueOverrides/in.xml +++ /dev/null @@ -1,23 +0,0 @@ - - natuurlijk_persoon - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a - BetrekkingOp:Precies - - 111111110 - J - Precies - - P - Pietje - m - 1901-01-01 - - - kenmerk1 - larva - - - kenmerk2 - larva - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ApplyValueOverrides/mergeWith.xml b/src/test/testtool/ValueOverrides/ApplyValueOverrides/mergeWith.xml deleted file mode 100644 index 3442cee9c..000000000 --- a/src/test/testtool/ValueOverrides/ApplyValueOverrides/mergeWith.xml +++ /dev/null @@ -1,8 +0,0 @@ - - lalala - - apple - banana - kiwi - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ApplyValueOverrides/out.xml b/src/test/testtool/ValueOverrides/ApplyValueOverrides/out.xml deleted file mode 100644 index c76093cf7..000000000 --- a/src/test/testtool/ValueOverrides/ApplyValueOverrides/out.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - J - 1901-01-01 - m - Precies - kiwi - apple - P - Pietje - - - natuurlijk_persoon - - kenmerk1 - larva - - - kenmerk2 - larva - - lalala - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen.properties b/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen.properties deleted file mode 100644 index a52306d59..000000000 --- a/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen.properties +++ /dev/null @@ -1,14 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/BuildValueOverridesZgwToZdsExtraElementen.xslt - -step1.zaakbrug.ApplyValueOverrides.read = BuildValueOverridesZgwToZdsExtraElementen/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = PreValueOverridesContext -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = BuildValueOverridesZgwToZdsExtraElementen/context.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param2.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param2.value = false -step2.zaakbrug.ApplyValueOverrides.write = BuildValueOverridesZgwToZdsExtraElementen/out.xml diff --git a/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/context.xml b/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/context.xml deleted file mode 100644 index 8b5d99fd9..000000000 --- a/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/context.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - correctValue - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/in.xml b/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/in.xml deleted file mode 100644 index c077bc014..000000000 --- a/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/in.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - ${extraElementen:kvkNummer} - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/out.xml b/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/out.xml deleted file mode 100644 index 504e24a61..000000000 --- a/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/out.xml +++ /dev/null @@ -1,3 +0,0 @@ - - correctValue - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition.properties b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition.properties deleted file mode 100644 index 54daf98e1..000000000 --- a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition.properties +++ /dev/null @@ -1,17 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt - -step1.zaakbrug.ApplyValueOverrides.read = EmptyRootValueOverridesShouldMergeWithDefaultCondition/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = EmptyRootValueOverridesShouldMergeWithDefaultCondition/ValueOverrides.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = node -step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = EmptyRootValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step2.zaakbrug.ApplyValueOverrides.write = EmptyRootValueOverridesShouldMergeWithDefaultCondition/out.xml diff --git a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/ValueOverrides.xml b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/ValueOverrides.xml deleted file mode 100644 index 635b93e76..000000000 --- a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/ValueOverrides.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/in.xml b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/in.xml deleted file mode 100644 index fbb84f60c..000000000 --- a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/in.xml +++ /dev/null @@ -1,15 +0,0 @@ - - natuurlijk_persoon - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a - BetrekkingOp:Precies - - 111111110 - J - Precies - - P - Pietje - m - 1901-01-01 - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml deleted file mode 100644 index 3442cee9c..000000000 --- a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml +++ /dev/null @@ -1,8 +0,0 @@ - - lalala - - apple - banana - kiwi - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/out.xml b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/out.xml deleted file mode 100644 index 4cde24bd0..000000000 --- a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/out.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - J - 1901-01-01 - m - Precies - kiwi - 111111110 - P - Pietje - - - natuurlijk_persoon - BetrekkingOp:Precies - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen.properties b/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen.properties deleted file mode 100644 index 33575dc55..000000000 --- a/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen.properties +++ /dev/null @@ -1,14 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/FilterPostValueOverrideContextSourcedFromExtraElementen.xslt - -step1.zaakbrug.ApplyValueOverrides.read = FilterPostValueOverrideContextSourcedFromExtraElementen/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = PreValueOverridesContext -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = FilterPostValueOverrideContextSourcedFromExtraElementen/context.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param2.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param2.value = false -step2.zaakbrug.ApplyValueOverrides.write = FilterPostValueOverrideContextSourcedFromExtraElementen/out.xml diff --git a/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/context.xml b/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/context.xml deleted file mode 100644 index 8b5d99fd9..000000000 --- a/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/context.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - correctValue - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/in.xml b/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/in.xml deleted file mode 100644 index c077bc014..000000000 --- a/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/in.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - ${extraElementen:kvkNummer} - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/out.xml b/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/out.xml deleted file mode 100644 index 3fef94da8..000000000 --- a/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/out.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue.properties b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue.properties deleted file mode 100644 index 53b5821f2..000000000 --- a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue.properties +++ /dev/null @@ -1,19 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt - -step1.zaakbrug.ApplyValueOverrides.read = NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/ValueOverrides.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = node -step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/mergeWith.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys -step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.kenmerken -step2.zaakbrug.ApplyValueOverrides.write = NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/out.xml diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/ValueOverrides.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/ValueOverrides.xml deleted file mode 100644 index 635b93e76..000000000 --- a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/ValueOverrides.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/in.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/in.xml deleted file mode 100644 index d05f1ba38..000000000 --- a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/in.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/mergeWith.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/mergeWith.xml deleted file mode 100644 index e30b2c9ac..000000000 --- a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/mergeWith.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/out.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/out.xml deleted file mode 100644 index 432d465aa..000000000 --- a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/out.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue.properties b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue.properties deleted file mode 100644 index d71d5133d..000000000 --- a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue.properties +++ /dev/null @@ -1,19 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt - -step1.zaakbrug.ApplyValueOverrides.read = NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/ValueOverrides.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = node -step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/mergeWith.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys -step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.kenmerken -step2.zaakbrug.ApplyValueOverrides.write = NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/out.xml diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/ValueOverrides.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/ValueOverrides.xml deleted file mode 100644 index 635b93e76..000000000 --- a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/ValueOverrides.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/in.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/in.xml deleted file mode 100644 index c8c547e8f..000000000 --- a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/in.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/mergeWith.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/mergeWith.xml deleted file mode 100644 index e30b2c9ac..000000000 --- a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/mergeWith.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/out.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/out.xml deleted file mode 100644 index 25f0f1cdf..000000000 --- a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/out.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides.properties b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides.properties deleted file mode 100644 index 9141e0e1d..000000000 --- a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides.properties +++ /dev/null @@ -1,19 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt - -step1.zaakbrug.ApplyValueOverrides.read = ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/ValueOverrides.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = node -step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/mergeWith.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys -step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.kenmerken -step2.zaakbrug.ApplyValueOverrides.write = ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/out.xml diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/ValueOverrides.xml deleted file mode 100644 index bab80fbdb..000000000 --- a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/ValueOverrides.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - zgwRol.kenmerken - lalala - true() - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/in.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/in.xml deleted file mode 100644 index 186035833..000000000 --- a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/in.xml +++ /dev/null @@ -1,23 +0,0 @@ - - natuurlijk_persoon - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a - BetrekkingOp:Precies - - 111111110 - J - Precies - - P - Pietje - m - 1901-01-01 - - - kenmerk1 - larva - - - kenmerk2 - larva - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/mergeWith.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/mergeWith.xml deleted file mode 100644 index 470e5869a..000000000 --- a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/mergeWith.xml +++ /dev/null @@ -1,12 +0,0 @@ - - lalala - - apple - banana - kiwi - - - kenmerk3 - larva - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/out.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/out.xml deleted file mode 100644 index 5ec2aed91..000000000 --- a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/out.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - J - 1901-01-01 - m - Precies - kiwi - 111111110 - P - Pietje - - - natuurlijk_persoon - - kenmerk1 - larva - - - kenmerk2 - larva - - - kenmerk3 - larva - - BetrekkingOp:Precies - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError.properties b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError.properties deleted file mode 100644 index 382fa4d60..000000000 --- a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError.properties +++ /dev/null @@ -1,19 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt - -step1.zaakbrug.ApplyValueOverrides.read = ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/ValueOverrides.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = node -step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/mergeWith.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys -step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.imnotinthecontexts -step2.zaakbrug.ApplyValueOverrides.write = ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/out.xml diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/ValueOverrides.xml deleted file mode 100644 index 4c3f9df59..000000000 --- a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/ValueOverrides.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - zgwRol.roltoelichting - lalala - true() - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/in.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/in.xml deleted file mode 100644 index fbb84f60c..000000000 --- a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/in.xml +++ /dev/null @@ -1,15 +0,0 @@ - - natuurlijk_persoon - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a - BetrekkingOp:Precies - - 111111110 - J - Precies - - P - Pietje - m - 1901-01-01 - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/mergeWith.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/mergeWith.xml deleted file mode 100644 index 95cb727b0..000000000 --- a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/mergeWith.xml +++ /dev/null @@ -1,8 +0,0 @@ - - lalala - - apple - banana - kiwi - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/out.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/out.xml deleted file mode 100644 index 37a720196..000000000 --- a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/out.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - J - 1901-01-01 - m - Precies - kiwi - 111111110 - P - Pietje - - - natuurlijk_persoon - lalala - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue.properties b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue.properties deleted file mode 100644 index c5b4bea59..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue.properties +++ /dev/null @@ -1,17 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ResolveDynamicValuesWithExtraElementenContext.xslt - -step1.zaakbrug.ApplyValueOverrides.read = ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = ExtraElementenContext -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param2.name = PreValueOverridesContext -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step2.zaakbrug.ApplyValueOverrides.write = ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml deleted file mode 100644 index ffeb56c20..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - this is the pre-override value - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml deleted file mode 100644 index 069de05d5..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml deleted file mode 100644 index 866ca7ee7..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - ${extraElementen:kvkNummer} - chrijvingGeneriek>initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml deleted file mode 100644 index 2fd2bb231..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - this is the pre-override value - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - adgwaygd - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement.properties b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement.properties deleted file mode 100644 index 63b92c1c7..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement.properties +++ /dev/null @@ -1,17 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ResolveDynamicValuesWithExtraElementenContext.xslt - -step1.zaakbrug.ApplyValueOverrides.read = ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = ExtraElementenContext -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/context.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param2.name = PreValueOverridesContext -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/PreValueOverridesContext.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step2.zaakbrug.ApplyValueOverrides.write = ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/out.xml diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/PreValueOverridesContext.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/PreValueOverridesContext.xml deleted file mode 100644 index ffeb56c20..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/PreValueOverridesContext.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - this is the pre-override value - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/context.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/context.xml deleted file mode 100644 index 5f11a254b..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/context.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - 823288444 - N - Gemeente Súdwest-Fryslân - - Eenmanszaak - - 0091200000046730 - J - Sneek - Marktstraat - Marktstraat - 8601CR - 15 - - - - - - - - - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/in.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/in.xml deleted file mode 100644 index c077bc014..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/in.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - ${extraElementen:kvkNummer} - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/out.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/out.xml deleted file mode 100644 index ea7ab634e..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/out.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue.properties b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue.properties deleted file mode 100644 index fe4cbb6b5..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue.properties +++ /dev/null @@ -1,17 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ResolveDynamicValuesWithExtraElementenContext.xslt - -step1.zaakbrug.ApplyValueOverrides.read = ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = ExtraElementenContext -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/context.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param2.name = PreValueOverridesContext -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step2.zaakbrug.ApplyValueOverrides.write = ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml deleted file mode 100644 index ffeb56c20..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - this is the pre-override value - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/context.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/context.xml deleted file mode 100644 index 3c5441da9..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/context.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - 823288444 - N - Gemeente Súdwest-Fryslân - - Eenmanszaak - - 0091200000046730 - J - Sneek - Marktstraat - Marktstraat - 8601CR - 15 - - - - - - - - - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/in.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/in.xml deleted file mode 100644 index c077bc014..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/in.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - ${extraElementen:kvkNummer} - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/out.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/out.xml deleted file mode 100644 index 93524b964..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/out.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - this is the pre-override value - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue.properties b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue.properties deleted file mode 100644 index 9994f9e5d..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue.properties +++ /dev/null @@ -1,17 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ResolveDynamicValuesWithExtraElementenContext.xslt - -step1.zaakbrug.ApplyValueOverrides.read = ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = ExtraElementenContext -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/context.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param2.name = PreValueOverridesContext -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/PreValueOverridesContext.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step2.zaakbrug.ApplyValueOverrides.write = ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/PreValueOverridesContext.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/PreValueOverridesContext.xml deleted file mode 100644 index ffeb56c20..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/PreValueOverridesContext.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - this is the pre-override value - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/context.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/context.xml deleted file mode 100644 index 2e8c9e030..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/context.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - 823288444 - N - Gemeente Súdwest-Fryslân - - Eenmanszaak - - 0091200000046730 - J - Sneek - Marktstraat - Marktstraat - 8601CR - 15 - - - - - - - - 12345678 - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/in.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/in.xml deleted file mode 100644 index c077bc014..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/in.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - ${extraElementen:kvkNummer} - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/out.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/out.xml deleted file mode 100644 index 54704da9e..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/out.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - 12345678 - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext.properties b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext.properties deleted file mode 100644 index a1cb42c46..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext.properties +++ /dev/null @@ -1,17 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ResolveDynamicValuesWithExtraElementenContext.xslt - -step1.zaakbrug.ApplyValueOverrides.read = ResolveDynamicValuesWithExtraElementenContext/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = ExtraElementenContext -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ResolveDynamicValuesWithExtraElementenContext/context.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param2.name = PreValueOverridesContext -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ResolveDynamicValuesWithExtraElementenContext/PreValueOverridesContext.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step2.zaakbrug.ApplyValueOverrides.write = ResolveDynamicValuesWithExtraElementenContext/out.xml diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/PreValueOverridesContext.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/PreValueOverridesContext.xml deleted file mode 100644 index ffeb56c20..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/PreValueOverridesContext.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - this is the pre-override value - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/context.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/context.xml deleted file mode 100644 index 2e8c9e030..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/context.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - 823288444 - N - Gemeente Súdwest-Fryslân - - Eenmanszaak - - 0091200000046730 - J - Sneek - Marktstraat - Marktstraat - 8601CR - 15 - - - - - - - - 12345678 - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/in.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/in.xml deleted file mode 100644 index c077bc014..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/in.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - ${extraElementen:kvkNummer} - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/out.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/out.xml deleted file mode 100644 index 68f1e7e71..000000000 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/out.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - 12345678 - N - fromValueOverride - 823288444 - overig_privaatrechtelijke_rechtspersoon - Gemeente Súdwest-Fryslân - - niet_natuurlijk_persoon - Initiator - initiator - Initiator:Gemeente Súdwest-Fryslân - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue.properties b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue.properties deleted file mode 100644 index 265b1ac8e..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue.properties +++ /dev/null @@ -1,17 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt - -step1.zaakbrug.ApplyValueOverrides.read = ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/ValueOverrides.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = node -step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/mergeWith.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step2.zaakbrug.ApplyValueOverrides.write = ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/ValueOverrides.xml deleted file mode 100644 index 329dfeee1..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/ValueOverrides.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - zgwRol.betrokkeneIdentificatie.voornamen - valueFromOverride - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/in.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/in.xml deleted file mode 100644 index 079f8fb56..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/in.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/mergeWith.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/mergeWith.xml deleted file mode 100644 index c564a8f65..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/mergeWith.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - valueFromOverride - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/out.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/out.xml deleted file mode 100644 index c564a8f65..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/out.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - valueFromOverride - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue.properties b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue.properties deleted file mode 100644 index 56b76feb2..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue.properties +++ /dev/null @@ -1,19 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt - -step1.zaakbrug.ApplyValueOverrides.read = ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/ValueOverrides.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = node -step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/mergeWith.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys -step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.kenmerken -step2.zaakbrug.ApplyValueOverrides.write = ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/ValueOverrides.xml deleted file mode 100644 index 329dfeee1..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/ValueOverrides.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - zgwRol.betrokkeneIdentificatie.voornamen - valueFromOverride - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/in.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/in.xml deleted file mode 100644 index d05f1ba38..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/in.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/mergeWith.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/mergeWith.xml deleted file mode 100644 index c564a8f65..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/mergeWith.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - valueFromOverride - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/out.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/out.xml deleted file mode 100644 index c564a8f65..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/out.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - valueFromOverride - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue.properties b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue.properties deleted file mode 100644 index 5152aa6ff..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue.properties +++ /dev/null @@ -1,17 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt - -step1.zaakbrug.ApplyValueOverrides.read = ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/ValueOverrides.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = node -step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/mergeWith.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step2.zaakbrug.ApplyValueOverrides.write = ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/ValueOverrides.xml deleted file mode 100644 index 329dfeee1..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/ValueOverrides.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - zgwRol.betrokkeneIdentificatie.voornamen - valueFromOverride - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/in.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/in.xml deleted file mode 100644 index 222bb8c9c..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/in.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/mergeWith.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/mergeWith.xml deleted file mode 100644 index c564a8f65..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/mergeWith.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - valueFromOverride - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/out.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/out.xml deleted file mode 100644 index 7adc035d2..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/out.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - valueFromOverride - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue.properties b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue.properties deleted file mode 100644 index 3f1fd7a0b..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue.properties +++ /dev/null @@ -1,19 +0,0 @@ -scenario.description = - -include =../common.properties - -zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt - -step1.zaakbrug.ApplyValueOverrides.read = ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/in.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides -step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/ValueOverrides.xml -step1.zaakbrug.ApplyValueOverrides.read.param1.type = node -step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith -step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/mergeWith.xml -step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc -step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug -step1.zaakbrug.ApplyValueOverrides.read.param3.value = false -step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys -step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.kenmerken -step2.zaakbrug.ApplyValueOverrides.write = ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/ValueOverrides.xml deleted file mode 100644 index 329dfeee1..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/ValueOverrides.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - zgwRol.betrokkeneIdentificatie.voornamen - valueFromOverride - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/in.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/in.xml deleted file mode 100644 index 58365a313..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/in.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - nonEmptyInputContextValue - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/mergeWith.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/mergeWith.xml deleted file mode 100644 index c564a8f65..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/mergeWith.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - valueFromOverride - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/out.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/out.xml deleted file mode 100644 index a44b021df..000000000 --- a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/out.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - nonEmptyInputContextValue - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten.properties b/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten.properties deleted file mode 100644 index f8483f4cc..000000000 --- a/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten.properties +++ /dev/null @@ -1,14 +0,0 @@ -scenario.description = ValueOverridesDepthFirstUnflatten - -include =../common.properties - -zaakbrug.ValueOverridesDepthFirstUnflatten.className = nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ValueOverridesDepthFirstUnflatten.filename = Translate/Common/xsl/ValueOverridesDepthFirstUnflatten.xslt - -# step1.zaakbrug.ValueOverridesDepthFirstUnflatten.read = ../dummy.xml -step1.zaakbrug.ValueOverridesDepthFirstUnflatten.read = ValueOverridesDepthFirstUnflatten/ValueOverrides.xml -step1.zaakbrug.ValueOverridesDepthFirstUnflatten.read.param1.name = valueOverrides -step1.zaakbrug.ValueOverridesDepthFirstUnflatten.read.param1.valuefile = ValueOverridesDepthFirstUnflatten/ValueOverrides.xml -step1.zaakbrug.ValueOverridesDepthFirstUnflatten.read.param1.type = node -step2.zaakbrug.ValueOverridesDepthFirstUnflatten.write = ValueOverridesDepthFirstUnflatten/out.xml - diff --git a/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/ValueOverrides.xml b/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/ValueOverrides.xml deleted file mode 100644 index 3bad7abca..000000000 --- a/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/ValueOverrides.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - zgwRol.roltoelichting - lalala - true() - - - zgwRol.betrokkeneIdentificatie.inpBsn - apple - true() - - - zgwRol.betrokkeneIdentificatie.geslachtsnaam - banana - true() - - - zgwRol.betrokkeneIdentificatie.idontexist - kiwi - - \ No newline at end of file diff --git a/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/out.xml b/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/out.xml deleted file mode 100644 index 3442cee9c..000000000 --- a/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/out.xml +++ /dev/null @@ -1,8 +0,0 @@ - - lalala - - apple - banana - kiwi - - \ No newline at end of file diff --git a/src/test/testtool/ZgwRol/ZgwRol.properties b/src/test/testtool/ZgwRol/ZgwRol.properties deleted file mode 100644 index 644404057..000000000 --- a/src/test/testtool/ZgwRol/ZgwRol.properties +++ /dev/null @@ -1,16 +0,0 @@ -scenario.description: - -include: ../common.properties - -zaakbrug.ZgwRol.className: nl.nn.adapterframework.testtool.XsltProviderListener -zaakbrug.ZgwRol.filename: Translate/Common/xsl/ZgwRol.xslt - -step1.zaakbrug.ZgwRol.read: ZgwRol/in.xml -step1.zaakbrug.ZgwRol.read.param1.name: RolMapping -step1.zaakbrug.ZgwRol.read.param1.valuefile = ZgwRol/RolMapping.xml -step1.zaakbrug.ZgwRol.read.param1.type = domdoc -step1.zaakbrug.ZgwRol.read.param2.name: ZgwRolTypen -step1.zaakbrug.ZgwRol.read.param2.valuefile = ZgwRol/ZgwRolTypen.xml -step1.zaakbrug.ZgwRol.read.param2.type = domdoc -step2.zaakbrug.ZgwRol.write: ZgwRol/out.xml - diff --git a/src/test/testtool/ZgwRol/ZgwRol/RolMapping.xml b/src/test/testtool/ZgwRol/ZgwRol/RolMapping.xml deleted file mode 100644 index 1c01b8da8..000000000 --- a/src/test/testtool/ZgwRol/ZgwRol/RolMapping.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - Haarlem - 0392 - 001005650 - - - Zeevang - 0478 - 001509962 - - - Súdwest-Fryslân - 1900 - 548746485 - - - Eindhoven - 0772 - 548746485 - - - BetrekkingOp - Belanghebbende - Initiator - Uitvoerende - Verantwoordelijke - Gemachtigde - OverigeBetrokkene - - \ No newline at end of file diff --git a/src/test/testtool/ZgwRol/ZgwRol/ZgwRolTypen.xml b/src/test/testtool/ZgwRol/ZgwRol/ZgwRolTypen.xml deleted file mode 100644 index d5bab59b9..000000000 --- a/src/test/testtool/ZgwRol/ZgwRol/ZgwRolTypen.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/c7430300-daa3-4b72-87c9-cb90b7a588a5 - http://open-zaak.nginx:9001/catalogi/api/v1/zaaktypen/d66575b0-6896-43dd-9c9a-199a8d1262a5 - VO-A - Belanghebbende - belanghebbende - http://open-zaak.nginx:9001/catalogi/api/v1/catalogussen/6bcc3fc9-70af-4980-a3cb-f9ab1dd9b83f - - - - - - - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - http://open-zaak.nginx:9001/catalogi/api/v1/zaaktypen/d66575b0-6896-43dd-9c9a-199a8d1262a5 - VO-A - Initiator - initiator - http://open-zaak.nginx:9001/catalogi/api/v1/catalogussen/6bcc3fc9-70af-4980-a3cb-f9ab1dd9b83f - - - - - - - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/660afdba-c84b-4fe9-9335-e510c968831a - http://open-zaak.nginx:9001/catalogi/api/v1/zaaktypen/d66575b0-6896-43dd-9c9a-199a8d1262a5 - VO-A - Behandelaar - behandelaar - http://open-zaak.nginx:9001/catalogi/api/v1/catalogussen/6bcc3fc9-70af-4980-a3cb-f9ab1dd9b83f - - - - - - \ No newline at end of file diff --git a/src/test/testtool/ZgwRol/ZgwRol/in.xml b/src/test/testtool/ZgwRol/ZgwRol/in.xml deleted file mode 100644 index 03cdc610a..000000000 --- a/src/test/testtool/ZgwRol/ZgwRol/in.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - 111111110 - J - Precies - - P - - - - - - - - - 12345678 - - - \ No newline at end of file diff --git a/src/test/testtool/ZgwRol/ZgwRol/out.xml b/src/test/testtool/ZgwRol/ZgwRol/out.xml deleted file mode 100644 index a1534fe9e..000000000 --- a/src/test/testtool/ZgwRol/ZgwRol/out.xml +++ /dev/null @@ -1,12 +0,0 @@ - - http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 - Initiator - initiator - natuurlijk_persoon - Initiator:Precies - - 111111110 - J - Precies - P \ No newline at end of file From ce47fefbab29cb7f0103ca62c3d2df23d9dc8937 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Tue, 10 Dec 2024 14:40:01 +0100 Subject: [PATCH 21/31] set proper command and version --- .github/workflows/ci.yml | 2 +- .github/workflows/run-larva-scenarios.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e65bd34e..6fce0a9e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: - ci uses: ./.github/workflows/run-larva-scenarios.yml with: - APP_VERSION: "1.0.0" + APP_VERSION: ${{ needs.version-next.outputs.version-next }} run-soapui-tests: runs-on: ubuntu-latest diff --git a/.github/workflows/run-larva-scenarios.yml b/.github/workflows/run-larva-scenarios.yml index 00df02b2d..56657e089 100644 --- a/.github/workflows/run-larva-scenarios.yml +++ b/.github/workflows/run-larva-scenarios.yml @@ -27,13 +27,13 @@ jobs: - name: Start Application run: | - docker compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml up -d + docker run -d --name zaakbrug -p 8080:8080 -e dtap.stage=LOC wearefrank/zaakbrug:${{ inputs.APP_VERSION }} timeout-minutes: 2 - name: Wait for Application to be Healthy run: | start_time=$(date +%s) - timeout=120 + timeout=60 while true; do if [ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:8080/iaf/api/server/health)" == "200" ]; then echo "Application is healthy." @@ -62,8 +62,8 @@ jobs: - name: Check if all scenarios passed run: | - cat results.html if ! grep -q 'All scenarios passed' results.html; then echo "Not all scenarios passed. Failing the job." + cat results.html exit 1 fi \ No newline at end of file From 8effc612dcad5f8fddce2eb89cdaed4568e286ba Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Tue, 10 Dec 2024 15:55:09 +0100 Subject: [PATCH 22/31] rebuild --- .github/workflows/ci.yml | 71 ++++++++++++++++++++++++++++++++++------ 1 file changed, 61 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6fce0a9e5..0125561d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,18 +42,9 @@ jobs: upload-sarif-to-security: false run-frank-till-healthy-enabled: false - test-larva-scenarios: - needs: - - version-next - - ci - uses: ./.github/workflows/run-larva-scenarios.yml - with: - APP_VERSION: ${{ needs.version-next.outputs.version-next }} - run-soapui-tests: runs-on: ubuntu-latest needs: - - test-larva-scenarios - version-next - ci steps: @@ -117,4 +108,64 @@ jobs: if: always() with: name: reports-soapui-testreports - path: ./*/reports \ No newline at end of file + path: ./*/reports + + run-larva-tests: + runs-on: ubuntu-latest + needs: + - version-next + - ci + steps: + - uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 + with: + egress-policy: audit + + - name: Checkout + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #4.2.2 + + - name: Download Docker tar + uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 #4.1.8 + with: + name: build-docker-image + + - name: Load Docker tar + shell: bash + run: | + docker load --input image.tar + docker image ls -a + + - name: Run Larva Tests + run: | + export ZAAKBRUG_VERSION="${{ needs.version-next.outputs.version-next }}" + + docker image inspect ${{ vars.DOCKER_IMAGE_REPOSITORY }}/${{ vars.DOCKER_IMAGE_NAME }}:${ZAAKBRUG_VERSION} + docker compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml up -d + docker ps + + sleep 90 + + curl -X POST 'http://localhost:8080/iaf/larva/index.jsp' \ + --header 'Content-Type: application/x-www-form-urlencoded' \ + --data-urlencode 'scenariosrootdirectory=/opt/frank/testtool' \ + --data-urlencode 'waitbeforecleanup=100' \ + --data-urlencode 'loglevel=WRONG_PIPELINE_MESSAGES_PREPARED_FOR_DIFF' \ + --data-urlencode 'execute=/opt/frank/testtool' \ + --data-urlencode 'submit=start' > results.html + + if ! grep -q 'All scenarios passed' results.html; then + echo "Not all scenarios passed. Failing the job." + cat results.html + EXIT_CODE=1 + exit 1 + fi + + docker compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml down + timeout-minutes: 15 + + - name: Check if test reports created + run: | + if [ -z "$(ls -A e2e/reports)" ] + then + echo "There is no test report found, tests might not have been run. Failing the job." + exit 1 + fi \ No newline at end of file From c0462b48919f8b5d66c17c435a70f70d8d8a3b96 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Tue, 10 Dec 2024 16:10:09 +0100 Subject: [PATCH 23/31] keep only zaakbrug --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0125561d1..93a94bbf6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -139,7 +139,7 @@ jobs: export ZAAKBRUG_VERSION="${{ needs.version-next.outputs.version-next }}" docker image inspect ${{ vars.DOCKER_IMAGE_REPOSITORY }}/${{ vars.DOCKER_IMAGE_NAME }}:${ZAAKBRUG_VERSION} - docker compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml up -d + docker compose -f ./docker-compose.zaakbrug.dev.yml up -d docker ps sleep 90 From 511ef9972d6f3c3a8335219edadc633b21c4eb08 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Tue, 10 Dec 2024 16:57:18 +0100 Subject: [PATCH 24/31] add logging --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93a94bbf6..afcaefcc2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -140,9 +140,13 @@ jobs: docker image inspect ${{ vars.DOCKER_IMAGE_REPOSITORY }}/${{ vars.DOCKER_IMAGE_NAME }}:${ZAAKBRUG_VERSION} docker compose -f ./docker-compose.zaakbrug.dev.yml up -d + + docker ps + sleep 120 docker ps - sleep 90 + echo "Contents of the test folder:" + ls -al /opt/frank/testtool curl -X POST 'http://localhost:8080/iaf/larva/index.jsp' \ --header 'Content-Type: application/x-www-form-urlencoded' \ From 10f9797ef5e4a4c78df95a6ac20eff287d45205b Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Tue, 10 Dec 2024 17:04:53 +0100 Subject: [PATCH 25/31] undo logging --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afcaefcc2..ad2b40033 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -145,9 +145,6 @@ jobs: sleep 120 docker ps - echo "Contents of the test folder:" - ls -al /opt/frank/testtool - curl -X POST 'http://localhost:8080/iaf/larva/index.jsp' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data-urlencode 'scenariosrootdirectory=/opt/frank/testtool' \ From 969e838cb96de67860b5708030e4dc406dc1aa00 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Wed, 11 Dec 2024 09:46:09 +0100 Subject: [PATCH 26/31] reset to base state --- .github/workflows/ci.yml | 71 +++++----------------------------------- 1 file changed, 9 insertions(+), 62 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad2b40033..693890b80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,6 +42,14 @@ jobs: upload-sarif-to-security: false run-frank-till-healthy-enabled: false + run-larva-scenarios: + uses: ./.github/workflows/run-larva-scenarios.yml + needs: + - version-next + - ci + with: + APP_VERSION: ${{ needs.version-next.outputs.version-next }} + run-soapui-tests: runs-on: ubuntu-latest needs: @@ -108,65 +116,4 @@ jobs: if: always() with: name: reports-soapui-testreports - path: ./*/reports - - run-larva-tests: - runs-on: ubuntu-latest - needs: - - version-next - - ci - steps: - - uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 - with: - egress-policy: audit - - - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #4.2.2 - - - name: Download Docker tar - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 #4.1.8 - with: - name: build-docker-image - - - name: Load Docker tar - shell: bash - run: | - docker load --input image.tar - docker image ls -a - - - name: Run Larva Tests - run: | - export ZAAKBRUG_VERSION="${{ needs.version-next.outputs.version-next }}" - - docker image inspect ${{ vars.DOCKER_IMAGE_REPOSITORY }}/${{ vars.DOCKER_IMAGE_NAME }}:${ZAAKBRUG_VERSION} - docker compose -f ./docker-compose.zaakbrug.dev.yml up -d - - docker ps - sleep 120 - docker ps - - curl -X POST 'http://localhost:8080/iaf/larva/index.jsp' \ - --header 'Content-Type: application/x-www-form-urlencoded' \ - --data-urlencode 'scenariosrootdirectory=/opt/frank/testtool' \ - --data-urlencode 'waitbeforecleanup=100' \ - --data-urlencode 'loglevel=WRONG_PIPELINE_MESSAGES_PREPARED_FOR_DIFF' \ - --data-urlencode 'execute=/opt/frank/testtool' \ - --data-urlencode 'submit=start' > results.html - - if ! grep -q 'All scenarios passed' results.html; then - echo "Not all scenarios passed. Failing the job." - cat results.html - EXIT_CODE=1 - exit 1 - fi - - docker compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml down - timeout-minutes: 15 - - - name: Check if test reports created - run: | - if [ -z "$(ls -A e2e/reports)" ] - then - echo "There is no test report found, tests might not have been run. Failing the job." - exit 1 - fi \ No newline at end of file + path: ./*/reports \ No newline at end of file From ef44852cb5fdaac7d15dcce22a4efbc8a706041e Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Wed, 11 Dec 2024 10:05:17 +0100 Subject: [PATCH 27/31] Revert "force log" This reverts commit 4805710bb9acb6fe9bba1366d1dd3eb465e3ebd3. --- .../Alpha2ShouldReturnAlpha3t.properties | 12 ++ .../Alpha2ShouldReturnAlpha3t/out.txt | 1 + ...hAlpha3bValueShouldReturnAlpha2.properties | 12 ++ .../out.txt | 1 + ...hAlpha3tValueShouldReturnAlpha2.properties | 12 ++ .../out.txt | 1 + .../Alpha3bShouldReturnAlpha2.properties | 12 ++ .../Alpha3bShouldReturnAlpha2/out.txt | 1 + .../Alpha3tShouldReturnAlpha2.properties | 12 ++ .../Alpha3tShouldReturnAlpha2/out.txt | 1 + ...ramShouldResultInUnchangedInput.properties | 10 + .../in.xml | 12 ++ .../out.xml | 3 + .../EnrichEntity/Regression.properties | 13 ++ .../testtool/EnrichEntity/Regression/With.xml | 18 ++ .../testtool/EnrichEntity/Regression/in.xml | 11 + .../testtool/EnrichEntity/Regression/out.xml | 28 +++ ...ramShouldResultInUnchangedInput.properties | 10 + .../in.xml | 12 ++ .../out.xml | 12 ++ .../Regression.properties | 13 ++ .../Regression/With.xml | 42 ++++ .../Regression/in.xml | 11 + .../Regression/out.xml | 46 ++++ ...nInputShouldResultInEmptyResult.properties | 10 + .../in.xml | 14 ++ .../out.txt | 0 .../FilterBaseZdsZaak/Regression.properties | 10 + .../FilterBaseZdsZaak/Regression/in.xml | 200 +++++++++++++++++ .../FilterBaseZdsZaak/Regression/out.xml | 7 + ...lueOverridesStartingWithKeyRoot.properties | 12 ++ .../ValueOverrides.xml | 25 +++ .../out.xml | 21 ++ .../SelectZdsRoles/SelectZdsRoles.properties | 13 ++ .../SelectZdsRoles/RolMapping.xml | 31 +++ .../SelectZdsRoles/SelectZdsRoles/in.xml | 201 +++++++++++++++++ .../SelectZdsRoles/SelectZdsRoles/out.xml | 188 ++++++++++++++++ ...dentificatieShouldResultInMatch.properties | 15 ++ .../MatchWithZdsRol.xml | 15 ++ .../in.xml | 20 ++ .../out.xml | 18 ++ ...nlyInn.nnpIdShouldResultInMatch.properties | 15 ++ .../MatchWithZdsRol.xml | 15 ++ .../in.xml | 20 ++ .../out.xml | 18 ++ ...KerngegevensShouldResultInMatch.properties | 15 ++ .../MatchWithZdsRol.xml | 15 ++ .../in.xml | 18 ++ .../out.xml | 18 ++ ...rngegevensShouldResultInNoMatch.properties | 14 ++ .../MatchWithZdsRol.xml | 15 ++ .../in.xml | 18 ++ .../out.xml | 1 + ...rngegevensShouldResultInNoMatch.properties | 14 ++ .../MatchWithZdsRol.xml | 15 ++ .../in.xml | 16 ++ .../out.xml | 1 + ...gOnlyInp.bsnShouldResultInMatch.properties | 15 ++ .../MatchWithZdsRol.xml | 15 ++ .../in.xml | 20 ++ .../out.xml | 18 ++ .../Regression.properties | 14 ++ .../Regression/MatchWithZdsRol.xml | 16 ++ .../Regression/in.xml | 204 ++++++++++++++++++ .../Regression/out.xml | 18 ++ ...ferentRoleShouldResultInNoMatch.properties | 14 ++ .../MatchWithZdsRol.xml | 16 ++ .../in.xml | 21 ++ .../out.xml | 1 + ...eWithShouldResultInInputContext.properties | 11 + .../in.xml | 15 ++ .../out.xml | 15 ++ ...ShouldMergeWithDefaultCondition.properties | 14 ++ .../in.xml | 15 ++ .../mergeWith.xml | 8 + .../out.xml | 16 ++ .../ApplyValueOverrides.properties | 19 ++ .../ApplyValueOverrides/ValueOverrides.xml | 20 ++ .../ValueOverrides/ApplyValueOverrides/in.xml | 23 ++ .../ApplyValueOverrides/mergeWith.xml | 8 + .../ApplyValueOverrides/out.xml | 24 +++ ...OverridesZgwToZdsExtraElementen.properties | 14 ++ .../context.xml | 15 ++ .../in.xml | 15 ++ .../out.xml | 3 + ...ShouldMergeWithDefaultCondition.properties | 17 ++ .../ValueOverrides.xml | 1 + .../in.xml | 15 ++ .../mergeWith.xml | 8 + .../out.xml | 16 ++ ...ontextSourcedFromExtraElementen.properties | 14 ++ .../context.xml | 15 ++ .../in.xml | 15 ++ .../out.xml | 14 ++ ...ShouldUseEmptyInputContextValue.properties | 19 ++ .../ValueOverrides.xml | 1 + .../in.xml | 5 + .../mergeWith.xml | 1 + .../out.xml | 5 + ...ilShouldUseNilInputContextValue.properties | 19 ++ .../ValueOverrides.xml | 1 + .../in.xml | 5 + .../mergeWith.xml | 1 + .../out.xml | 5 + ...ContextsAndIgnoreValueOverrides.properties | 19 ++ .../ValueOverrides.xml | 7 + .../in.xml | 23 ++ .../mergeWith.xml | 12 ++ .../out.xml | 29 +++ ...ntInContextsShouldNotThrowError.properties | 19 ++ .../ValueOverrides.xml | 7 + .../in.xml | 15 ++ .../mergeWith.xml | 8 + .../out.xml | 16 ++ ...ldResultInPreValueOverrideValue.properties | 17 ++ .../PreValueOverridesContext.xml | 15 ++ .../context.xml | 11 + .../in.xml | 7 + .../out.xml | 15 ++ ...ementShouldResultInEmptyElement.properties | 17 ++ .../PreValueOverridesContext.xml | 15 ++ .../context.xml | 27 +++ .../in.xml | 15 ++ .../out.xml | 15 ++ ...ldResultInPreValueOverrideValue.properties | 17 ++ .../PreValueOverridesContext.xml | 15 ++ .../context.xml | 27 +++ .../in.xml | 15 ++ .../out.xml | 15 ++ ...ShouldResultInExtraElementValue.properties | 17 ++ .../PreValueOverridesContext.xml | 15 ++ .../context.xml | 27 +++ .../in.xml | 15 ++ .../out.xml | 15 ++ ...ValuesWithExtraElementenContext.properties | 17 ++ .../PreValueOverridesContext.xml | 15 ++ .../context.xml | 27 +++ .../in.xml | 15 ++ .../out.xml | 15 ++ ...tShouldUseMergeWithContextValue.properties | 17 ++ .../ValueOverrides.xml | 6 + .../in.xml | 3 + .../mergeWith.xml | 5 + .../out.xml | 5 + ...yShouldUseMergeWithContextValue.properties | 19 ++ .../ValueOverrides.xml | 6 + .../in.xml | 5 + .../mergeWith.xml | 5 + .../out.xml | 5 + ...lShouldUseMergeWithContextValue.properties | 17 ++ .../ValueOverrides.xml | 6 + .../in.xml | 3 + .../mergeWith.xml | 5 + .../out.xml | 5 + ...EmptyShouldUseInputContextValue.properties | 19 ++ .../ValueOverrides.xml | 6 + .../in.xml | 5 + .../mergeWith.xml | 5 + .../out.xml | 5 + ...lueOverridesDepthFirstUnflatten.properties | 14 ++ .../ValueOverrides.xml | 21 ++ .../ValueOverridesDepthFirstUnflatten/out.xml | 8 + src/test/testtool/ZgwRol/ZgwRol.properties | 16 ++ .../testtool/ZgwRol/ZgwRol/RolMapping.xml | 31 +++ .../testtool/ZgwRol/ZgwRol/ZgwRolTypen.xml | 38 ++++ src/test/testtool/ZgwRol/ZgwRol/in.xml | 21 ++ src/test/testtool/ZgwRol/ZgwRol/out.xml | 12 ++ 167 files changed, 3007 insertions(+) create mode 100644 src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t.properties create mode 100644 src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt create mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2.properties create mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt create mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2.properties create mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt create mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2.properties create mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt create mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2.properties create mode 100644 src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt create mode 100644 src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput.properties create mode 100644 src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/in.xml create mode 100644 src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml create mode 100644 src/test/testtool/EnrichEntity/Regression.properties create mode 100644 src/test/testtool/EnrichEntity/Regression/With.xml create mode 100644 src/test/testtool/EnrichEntity/Regression/in.xml create mode 100644 src/test/testtool/EnrichEntity/Regression/out.xml create mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput.properties create mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/in.xml create mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/out.xml create mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression.properties create mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/With.xml create mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/in.xml create mode 100644 src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/out.xml create mode 100644 src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult.properties create mode 100644 src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/in.xml create mode 100644 src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/out.txt create mode 100644 src/test/testtool/FilterBaseZdsZaak/Regression.properties create mode 100644 src/test/testtool/FilterBaseZdsZaak/Regression/in.xml create mode 100644 src/test/testtool/FilterBaseZdsZaak/Regression/out.xml create mode 100644 src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.properties create mode 100644 src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/ValueOverrides.xml create mode 100644 src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/out.xml create mode 100644 src/test/testtool/SelectZdsRoles/SelectZdsRoles.properties create mode 100644 src/test/testtool/SelectZdsRoles/SelectZdsRoles/RolMapping.xml create mode 100644 src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml create mode 100644 src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch.properties create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/MatchWithZdsRol.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/in.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/out.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch.properties create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/MatchWithZdsRol.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/in.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/out.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch.properties create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/MatchWithZdsRol.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/in.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/out.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch.properties create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/in.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/out.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch.properties create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/in.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/out.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch.properties create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/MatchWithZdsRol.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/in.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/out.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression.properties create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/MatchWithZdsRol.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/in.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/out.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch.properties create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/MatchWithZdsRol.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/in.xml create mode 100644 src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/out.xml create mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext.properties create mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/in.xml create mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/out.xml create mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition.properties create mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/in.xml create mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml create mode 100644 src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/out.xml create mode 100644 src/test/testtool/ValueOverrides/ApplyValueOverrides.properties create mode 100644 src/test/testtool/ValueOverrides/ApplyValueOverrides/ValueOverrides.xml create mode 100644 src/test/testtool/ValueOverrides/ApplyValueOverrides/in.xml create mode 100644 src/test/testtool/ValueOverrides/ApplyValueOverrides/mergeWith.xml create mode 100644 src/test/testtool/ValueOverrides/ApplyValueOverrides/out.xml create mode 100644 src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen.properties create mode 100644 src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/context.xml create mode 100644 src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/in.xml create mode 100644 src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/out.xml create mode 100644 src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition.properties create mode 100644 src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/ValueOverrides.xml create mode 100644 src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/in.xml create mode 100644 src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml create mode 100644 src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/out.xml create mode 100644 src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen.properties create mode 100644 src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/context.xml create mode 100644 src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/in.xml create mode 100644 src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/out.xml create mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue.properties create mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/ValueOverrides.xml create mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/in.xml create mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/mergeWith.xml create mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/out.xml create mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue.properties create mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/ValueOverrides.xml create mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/in.xml create mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/mergeWith.xml create mode 100644 src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/out.xml create mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides.properties create mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/ValueOverrides.xml create mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/in.xml create mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/mergeWith.xml create mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/out.xml create mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError.properties create mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/ValueOverrides.xml create mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/in.xml create mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/mergeWith.xml create mode 100644 src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/out.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue.properties create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement.properties create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/PreValueOverridesContext.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/context.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/in.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/out.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue.properties create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/context.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/in.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/out.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue.properties create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/PreValueOverridesContext.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/context.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/in.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/out.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext.properties create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/PreValueOverridesContext.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/context.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/in.xml create mode 100644 src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/out.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue.properties create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/ValueOverrides.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/in.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/mergeWith.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/out.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue.properties create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/ValueOverrides.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/in.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/mergeWith.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/out.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue.properties create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/ValueOverrides.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/in.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/mergeWith.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/out.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue.properties create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/ValueOverrides.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/in.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/mergeWith.xml create mode 100644 src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/out.xml create mode 100644 src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten.properties create mode 100644 src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/ValueOverrides.xml create mode 100644 src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/out.xml create mode 100644 src/test/testtool/ZgwRol/ZgwRol.properties create mode 100644 src/test/testtool/ZgwRol/ZgwRol/RolMapping.xml create mode 100644 src/test/testtool/ZgwRol/ZgwRol/ZgwRolTypen.xml create mode 100644 src/test/testtool/ZgwRol/ZgwRol/in.xml create mode 100644 src/test/testtool/ZgwRol/ZgwRol/out.xml diff --git a/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t.properties b/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t.properties new file mode 100644 index 000000000..c5f78ee85 --- /dev/null +++ b/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t.properties @@ -0,0 +1,12 @@ +scenario.description = Alpha2ShouldReturnAlpha3t' + +include =../common.properties + +zaakbrug.Alpha2ShouldReturnAlpha3t.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.Alpha2ShouldReturnAlpha3t.filename = Translate/Common/xsl/GetISO639Code.xslt + +step1.zaakbrug.Alpha2ShouldReturnAlpha3t.read = ${configurations.directory}/Translate/ISO639.xml +step1.zaakbrug.Alpha2ShouldReturnAlpha3t.read.param1.name = Alpha2 +step1.zaakbrug.Alpha2ShouldReturnAlpha3t.read.param1.value = nl +step2.zaakbrug.Alpha2ShouldReturnAlpha3t.write = Alpha2ShouldReturnAlpha3t/out.txt + diff --git a/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt new file mode 100644 index 000000000..4aad2ed18 --- /dev/null +++ b/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt @@ -0,0 +1 @@ +nlddsds \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2.properties b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2.properties new file mode 100644 index 000000000..3883ccf56 --- /dev/null +++ b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2.properties @@ -0,0 +1,12 @@ +scenario.description = Alpha3WithAlpha3bValueShouldReturnAlpha2' + +include =../common.properties + +zaakbrug.Alpha3WithAlpha3bValueShouldReturnAlpha2.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.Alpha3WithAlpha3bValueShouldReturnAlpha2.filename = Translate/Common/xsl/GetISO639Code.xslt + +step1.zaakbrug.Alpha3WithAlpha3bValueShouldReturnAlpha2.read = ${configurations.directory}/Translate/ISO639.xml +step1.zaakbrug.Alpha3WithAlpha3bValueShouldReturnAlpha2.read.param1.name = Alpha3 +step1.zaakbrug.Alpha3WithAlpha3bValueShouldReturnAlpha2.read.param1.value = eng +step2.zaakbrug.Alpha3WithAlpha3bValueShouldReturnAlpha2.write = Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt + diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt new file mode 100644 index 000000000..059e33b58 --- /dev/null +++ b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt @@ -0,0 +1 @@ +endsds \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2.properties b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2.properties new file mode 100644 index 000000000..8aa9131df --- /dev/null +++ b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2.properties @@ -0,0 +1,12 @@ +scenario.description = Alpha3WithAlpha3tValueShouldReturnAlpha2' + +include =../common.properties + +zaakbrug.Alpha3WithAlpha3tValueShouldReturnAlpha2.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.Alpha3WithAlpha3tValueShouldReturnAlpha2.filename = Translate/Common/xsl/GetISO639Code.xslt + +step1.zaakbrug.Alpha3WithAlpha3tValueShouldReturnAlpha2.read = ${configurations.directory}/Translate/ISO639.xml +step1.zaakbrug.Alpha3WithAlpha3tValueShouldReturnAlpha2.read.param1.name = Alpha3 +step1.zaakbrug.Alpha3WithAlpha3tValueShouldReturnAlpha2.read.param1.value = nld +step2.zaakbrug.Alpha3WithAlpha3tValueShouldReturnAlpha2.write = Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt + diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt new file mode 100644 index 000000000..86a8418bd --- /dev/null +++ b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt @@ -0,0 +1 @@ +nldsds \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2.properties b/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2.properties new file mode 100644 index 000000000..5ff634525 --- /dev/null +++ b/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2.properties @@ -0,0 +1,12 @@ +scenario.description = Alpha3bShouldReturnAlpha2' + +include =../common.properties + +zaakbrug.Alpha3bShouldReturnAlpha2.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.Alpha3bShouldReturnAlpha2.filename = Translate/Common/xsl/GetISO639Code.xslt + +step1.zaakbrug.Alpha3bShouldReturnAlpha2.read = ${configurations.directory}/Translate/ISO639.xml +step1.zaakbrug.Alpha3bShouldReturnAlpha2.read.param1.name = Alpha3b +step1.zaakbrug.Alpha3bShouldReturnAlpha2.read.param1.value = eng +step2.zaakbrug.Alpha3bShouldReturnAlpha2.write = Alpha3bShouldReturnAlpha2/out.txt + diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt new file mode 100644 index 000000000..059e33b58 --- /dev/null +++ b/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt @@ -0,0 +1 @@ +endsds \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2.properties b/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2.properties new file mode 100644 index 000000000..4a81ea730 --- /dev/null +++ b/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2.properties @@ -0,0 +1,12 @@ +scenario.description = Alpha3tShouldReturnAlpha2' + +include =../common.properties + +zaakbrug.Alpha3tShouldReturnAlpha2.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.Alpha3tShouldReturnAlpha2.filename = Translate/Common/xsl/GetISO639Code.xslt + +step1.zaakbrug.Alpha3tShouldReturnAlpha2.read = ${configurations.directory}/Translate/ISO639.xml +step1.zaakbrug.Alpha3tShouldReturnAlpha2.read.param1.name = Alpha3t +step1.zaakbrug.Alpha3tShouldReturnAlpha2.read.param1.value = nld +step2.zaakbrug.Alpha3tShouldReturnAlpha2.write = Alpha3tShouldReturnAlpha2/out.txt + diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt new file mode 100644 index 000000000..86a8418bd --- /dev/null +++ b/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt @@ -0,0 +1 @@ +nldsds \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput.properties b/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput.properties new file mode 100644 index 000000000..9a37caead --- /dev/null +++ b/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput.properties @@ -0,0 +1,10 @@ +scenario.description: + +include: ../common.properties + +zaakbrug.EnrichEntity.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.EnrichEntity.filename: Translate/Common/xsl/EnrichEntity.xslt + +step1.zaakbrug.EnrichEntity.read: EmptyWithParamShouldResultInUnchangedInput/in.xml +step2.zaakbrug.EnrichEntity.write: EmptyWithParamShouldResultInUnchangedInput/out.xml + diff --git a/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/in.xml b/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/in.xml new file mode 100644 index 000000000..9bddfa534 --- /dev/null +++ b/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/in.xml @@ -0,0 +1,12 @@ + + ZK2024-00194 + Aanvraag omgevingsvergunning + 20240920 + 20240920 + (Nog) niet + J + + openbaar + + \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml b/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml new file mode 100644 index 000000000..3f4b88f44 --- /dev/null +++ b/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml @@ -0,0 +1,3 @@ + + \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity/Regression.properties b/src/test/testtool/EnrichEntity/Regression.properties new file mode 100644 index 000000000..4c2277453 --- /dev/null +++ b/src/test/testtool/EnrichEntity/Regression.properties @@ -0,0 +1,13 @@ +scenario.description: + +include: ../common.properties + +zaakbrug.EnrichEntity.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.EnrichEntity.filename: Translate/Common/xsl/EnrichEntity.xslt + +step1.zaakbrug.EnrichEntity.read: Regression/in.xml +step1.zaakbrug.EnrichEntity.read.param1.name: With +step1.zaakbrug.EnrichEntity.read.param1.valuefile = Regression/With.xml +step1.zaakbrug.EnrichEntity.read.param1.type = domdoc +step2.zaakbrug.EnrichEntity.write: Regression/out.xml + diff --git a/src/test/testtool/EnrichEntity/Regression/With.xml b/src/test/testtool/EnrichEntity/Regression/With.xml new file mode 100644 index 000000000..fbd203c8c --- /dev/null +++ b/src/test/testtool/EnrichEntity/Regression/With.xml @@ -0,0 +1,18 @@ + + + + 823288444 + N + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + + + \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity/Regression/in.xml b/src/test/testtool/EnrichEntity/Regression/in.xml new file mode 100644 index 000000000..322f15646 --- /dev/null +++ b/src/test/testtool/EnrichEntity/Regression/in.xml @@ -0,0 +1,11 @@ + + ZK2024-00194 + Aanvraag omgevingsvergunning + 20240920 + 20240920 + (Nog) niet + J + + openbaar + + \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity/Regression/out.xml b/src/test/testtool/EnrichEntity/Regression/out.xml new file mode 100644 index 000000000..b5f4030a6 --- /dev/null +++ b/src/test/testtool/EnrichEntity/Regression/out.xml @@ -0,0 +1,28 @@ + + ZK2024-00194 + Aanvraag omgevingsvergunning + 20240920 + 1234567890 + (Nog) niet + J + + openbaar + + + + + 823288444 + N + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + + + + \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput.properties b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput.properties new file mode 100644 index 000000000..22c14866c --- /dev/null +++ b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput.properties @@ -0,0 +1,10 @@ +scenario.description: + +include: ../common.properties + +zaakbrug.EnrichEntity_ForEachPipeWrapped.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.EnrichEntity_ForEachPipeWrapped.filename: Translate/Common/xsl/EnrichEntity_ForEachPipeWrapped.xslt + +step1.zaakbrug.EnrichEntity_ForEachPipeWrapped.read: EmptyWithParamShouldResultInUnchangedInput/in.xml +step2.zaakbrug.EnrichEntity_ForEachPipeWrapped.write: EmptyWithParamShouldResultInUnchangedInput/out.xml + diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/in.xml b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/in.xml new file mode 100644 index 000000000..9bddfa534 --- /dev/null +++ b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/in.xml @@ -0,0 +1,12 @@ + + ZK2024-00194 + Aanvraag omgevingsvergunning + 20240920 + 20240920 + (Nog) niet + J + + openbaar + + \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/out.xml b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/out.xml new file mode 100644 index 000000000..9bddfa534 --- /dev/null +++ b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/EmptyWithParamShouldResultInUnchangedInput/out.xml @@ -0,0 +1,12 @@ + + ZK2024-00194 + Aanvraag omgevingsvergunning + 20240920 + 20240920 + (Nog) niet + J + + openbaar + + \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression.properties b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression.properties new file mode 100644 index 000000000..be5f9a700 --- /dev/null +++ b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression.properties @@ -0,0 +1,13 @@ +scenario.description: + +include: ../common.properties + +zaakbrug.EnrichEntity_ForEachPipeWrapped.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.EnrichEntity_ForEachPipeWrapped.filename: Translate/Common/xsl/EnrichEntity_ForEachPipeWrapped.xslt + +step1.zaakbrug.EnrichEntity_ForEachPipeWrapped.read: Regression/in.xml +step1.zaakbrug.EnrichEntity_ForEachPipeWrapped.read.param1.name: With +step1.zaakbrug.EnrichEntity_ForEachPipeWrapped.read.param1.valuefile = Regression/With.xml +step1.zaakbrug.EnrichEntity_ForEachPipeWrapped.read.param1.type = domdoc +step2.zaakbrug.EnrichEntity_ForEachPipeWrapped.write: Regression/out.xml + diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/With.xml b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/With.xml new file mode 100644 index 000000000..ce7fcd463 --- /dev/null +++ b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/With.xml @@ -0,0 +1,42 @@ + + + + + + 823288444 + N + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + + + + + + + + + 823288444 + N + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + + + + + \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/in.xml b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/in.xml new file mode 100644 index 000000000..322f15646 --- /dev/null +++ b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/in.xml @@ -0,0 +1,11 @@ + + ZK2024-00194 + Aanvraag omgevingsvergunning + 20240920 + 20240920 + (Nog) niet + J + + openbaar + + \ No newline at end of file diff --git a/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/out.xml b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/out.xml new file mode 100644 index 000000000..359e6adda --- /dev/null +++ b/src/test/testtool/EnrichEntity_ForEachPipeWrapped/Regression/out.xml @@ -0,0 +1,46 @@ + + ZK2024-00194 + Aanvraag omgevingsvergunning + 20240920 + 20240920 + (Nog) niet + J + + openbaar + + + + + 823288444 + N + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + + + + + + + 823288444 + N + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + + + + \ No newline at end of file diff --git a/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult.properties b/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult.properties new file mode 100644 index 000000000..f03269192 --- /dev/null +++ b/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult.properties @@ -0,0 +1,10 @@ +scenario.description: + +include: ../common.properties + +zaakbrug.FilterBaseZdsZaak.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.FilterBaseZdsZaak.filename: Translate/Common/xsl/FilterBaseZdsZaak.xslt + +step1.zaakbrug.FilterBaseZdsZaak.read: NoZAKObjectInInputShouldResultInEmptyResult/in.xml +step2.zaakbrug.FilterBaseZdsZaak.write: NoZAKObjectInInputShouldResultInEmptyResult/out.txt + diff --git a/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/in.xml b/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/in.xml new file mode 100644 index 000000000..a6a0245e0 --- /dev/null +++ b/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/in.xml @@ -0,0 +1,14 @@ + + ZK2024-00028 + Aanvraag omgevingsvergunning + 20240916 + 20240916 + (Nog) niet + + + VO-A + VO-A + + + + \ No newline at end of file diff --git a/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/out.txt b/src/test/testtool/FilterBaseZdsZaak/NoZAKObjectInInputShouldResultInEmptyResult/out.txt new file mode 100644 index 000000000..e69de29bb diff --git a/src/test/testtool/FilterBaseZdsZaak/Regression.properties b/src/test/testtool/FilterBaseZdsZaak/Regression.properties new file mode 100644 index 000000000..60bc597a9 --- /dev/null +++ b/src/test/testtool/FilterBaseZdsZaak/Regression.properties @@ -0,0 +1,10 @@ +scenario.description: + +include: ../common.properties + +zaakbrug.FilterBaseZdsZaak.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.FilterBaseZdsZaak.filename: Translate/Common/xsl/FilterBaseZdsZaak.xslt + +step1.zaakbrug.FilterBaseZdsZaak.read: Regression/in.xml +step2.zaakbrug.FilterBaseZdsZaak.write: Regression/out.xml + diff --git a/src/test/testtool/FilterBaseZdsZaak/Regression/in.xml b/src/test/testtool/FilterBaseZdsZaak/Regression/in.xml new file mode 100644 index 000000000..8e3679acb --- /dev/null +++ b/src/test/testtool/FilterBaseZdsZaak/Regression/in.xml @@ -0,0 +1,200 @@ + + ZK2024-00028 + Aanvraag omgevingsvergunning + 20240916 + 20240916 + (Nog) niet + + + VO-A + VO-A + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + 12345678 + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + \ No newline at end of file diff --git a/src/test/testtool/FilterBaseZdsZaak/Regression/out.xml b/src/test/testtool/FilterBaseZdsZaak/Regression/out.xml new file mode 100644 index 000000000..b424ed491 --- /dev/null +++ b/src/test/testtool/FilterBaseZdsZaak/Regression/out.xml @@ -0,0 +1,7 @@ + + ZK2024-00028 + Aanvraag omgevingsvergunning + 20240916 + 20240916 + (Nog) niet + \ No newline at end of file diff --git a/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.properties b/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.properties new file mode 100644 index 000000000..b3da3aef4 --- /dev/null +++ b/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.properties @@ -0,0 +1,12 @@ +scenario.description = ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot + +include =../common.properties + +zaakbrug.ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.filename = Translate/Common/xsl/FilterValueOverridesOnKeyRoot.xslt + +step1.zaakbrug.ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.read = ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/ValueOverrides.xml +step1.zaakbrug.ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.read.param1.name = valueOverrideKeyRoot +step1.zaakbrug.ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.read.param1.value = zgw.zaken-api.rollen.zgwRol +step2.zaakbrug.ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot.write = ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/out.xml + diff --git a/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/ValueOverrides.xml b/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/ValueOverrides.xml new file mode 100644 index 000000000..45a566946 --- /dev/null +++ b/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/ValueOverrides.xml @@ -0,0 +1,25 @@ + + + zgw.zaken-api.zaken.ZgwZaak.betalingsindicatie + nvt + + + zgw.zaken-api.rollen.zgwRol.roltoelichting + lalala + true() + + + zgw.zaken-api.rollen.zgwRol.betrokkeneIdentificatie.inpBsn + apple + true() + + + zgw.zaken-api.rollen.zgwRol.betrokkeneIdentificatie.geslachtsnaam + banana + true() + + + zgw.zaken-api.rollen.zgwRol.betrokkeneIdentificatie.idontexist + kiwi + + \ No newline at end of file diff --git a/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/out.xml b/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/out.xml new file mode 100644 index 000000000..c000a0977 --- /dev/null +++ b/src/test/testtool/FilterValueOverridesOnKeyRoot/ValidKeyRootShouldOnlyReturnValueOverridesStartingWithKeyRoot/out.xml @@ -0,0 +1,21 @@ + + + zgwRol.roltoelichting + lalala + true() + + + zgwRol.betrokkeneIdentificatie.inpBsn + apple + true() + + + zgwRol.betrokkeneIdentificatie.geslachtsnaam + banana + true() + + + zgwRol.betrokkeneIdentificatie.idontexist + kiwi + + \ No newline at end of file diff --git a/src/test/testtool/SelectZdsRoles/SelectZdsRoles.properties b/src/test/testtool/SelectZdsRoles/SelectZdsRoles.properties new file mode 100644 index 000000000..7ecfe6b4a --- /dev/null +++ b/src/test/testtool/SelectZdsRoles/SelectZdsRoles.properties @@ -0,0 +1,13 @@ +scenario.description: + +include: ../common.properties + +zaakbrug.SelectZdsRoles.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.SelectZdsRoles.filename: Translate/Common/xsl/SelectZdsRoles.xslt + +step1.zaakbrug.SelectZdsRoles.read: SelectZdsRoles/in.xml +step1.zaakbrug.SelectZdsRoles.read.param1.name: RolMapping +step1.zaakbrug.SelectZdsRoles.read.param1.valuefile = SelectZdsRoles/RolMapping.xml +step1.zaakbrug.SelectZdsRoles.read.param1.type = domdoc +step2.zaakbrug.SelectZdsRoles.write: SelectZdsRoles/out.xml + diff --git a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/RolMapping.xml b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/RolMapping.xml new file mode 100644 index 000000000..1c01b8da8 --- /dev/null +++ b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/RolMapping.xml @@ -0,0 +1,31 @@ + + + Haarlem + 0392 + 001005650 + + + Zeevang + 0478 + 001509962 + + + Súdwest-Fryslân + 1900 + 548746485 + + + Eindhoven + 0772 + 548746485 + + + BetrekkingOp + Belanghebbende + Initiator + Uitvoerende + Verantwoordelijke + Gemachtigde + OverigeBetrokkene + + \ No newline at end of file diff --git a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml new file mode 100644 index 000000000..98d71fe5c --- /dev/null +++ b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml @@ -0,0 +1,201 @@ + + + ZK2024-00028 + Aanvraag omgevingsvergunning + 20240916 + 20240916 + (Nog) niet + + + VO-A + VO-A + + + + + + + 123456789 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + 12345678 + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + \ No newline at end of file diff --git a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml new file mode 100644 index 000000000..69904bbf1 --- /dev/null +++ b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml @@ -0,0 +1,188 @@ + + + + + + 23456789 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + 12345678 + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch.properties new file mode 100644 index 000000000..e9270173a --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch.properties @@ -0,0 +1,15 @@ +scenario.description: +scenario.active: false + +include: ../common.properties + +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt + +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/in.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/MatchWithZdsRol.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false +step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/MatchWithZdsRol.xml new file mode 100644 index 000000000..ba2804146 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/MatchWithZdsRol.xml @@ -0,0 +1,15 @@ + + + + 823288444 + N + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + 12345678 + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/in.xml new file mode 100644 index 000000000..6995faebb --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/in.xml @@ -0,0 +1,20 @@ + + + + + 823288444 + J + not the same + also not the same + + + + 12345678 + + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/out.xml new file mode 100644 index 000000000..dec5d5d78 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyIAnn.identificatieShouldResultInMatch/out.xml @@ -0,0 +1,18 @@ + + + + + 823288444 + J + not the same + also not the same + + + + 12345678 + + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch.properties new file mode 100644 index 000000000..92566bdbb --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch.properties @@ -0,0 +1,15 @@ +scenario.description: +scenario.active: false + +include: ../common.properties + +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt + +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/in.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/MatchWithZdsRol.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false +step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/MatchWithZdsRol.xml new file mode 100644 index 000000000..81a5bac61 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/MatchWithZdsRol.xml @@ -0,0 +1,15 @@ + + + + 823288444 + N + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + 12345678 + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/in.xml new file mode 100644 index 000000000..827a93876 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/in.xml @@ -0,0 +1,20 @@ + + + + + 823288444 + J + not the same + also not the same + + + + 12345678 + + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/out.xml new file mode 100644 index 000000000..dec5d5d78 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingOnlyInn.nnpIdShouldResultInMatch/out.xml @@ -0,0 +1,18 @@ + + + + + 823288444 + J + not the same + also not the same + + + + 12345678 + + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch.properties new file mode 100644 index 000000000..a24abe937 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch.properties @@ -0,0 +1,15 @@ +scenario.description: +scenario.active: false + +include: ../common.properties + +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt + +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: NNPWithMatchingRemainingKerngegevensShouldResultInMatch/in.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = NNPWithMatchingRemainingKerngegevensShouldResultInMatch/MatchWithZdsRol.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false +step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: NNPWithMatchingRemainingKerngegevensShouldResultInMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/MatchWithZdsRol.xml new file mode 100644 index 000000000..c0a63eb5e --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/MatchWithZdsRol.xml @@ -0,0 +1,15 @@ + + + + N + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + datumAanvang + + + + 12345678 + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/in.xml new file mode 100644 index 000000000..5d5c07307 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/in.xml @@ -0,0 +1,18 @@ + + + + different but no kerngegeven + different kerngegegeven + overig_privaatrechtelijke_rechtspersoon + different but no kerngegeven + + + + different but no kerngegeven + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/out.xml new file mode 100644 index 000000000..dec5d5d78 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithMatchingRemainingKerngegevensShouldResultInMatch/out.xml @@ -0,0 +1,18 @@ + + + + + 823288444 + J + not the same + also not the same + + + + 12345678 + + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch.properties new file mode 100644 index 000000000..6ba8db86b --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch.properties @@ -0,0 +1,14 @@ +scenario.description: + +include: ../common.properties + +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt + +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/in.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false +step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml new file mode 100644 index 000000000..c0a63eb5e --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml @@ -0,0 +1,15 @@ + + + + N + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + datumAanvang + + + + 12345678 + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/in.xml new file mode 100644 index 000000000..3b93d30eb --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/in.xml @@ -0,0 +1,18 @@ + + + + different but no kerngegeven + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + different but no kerngegeven + + + + different but no kerngegeven + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/out.xml new file mode 100644 index 000000000..de0beb68e --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithNonMatchingRemainingKerngegevensShouldResultInNoMatch/out.xml @@ -0,0 +1 @@ + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch.properties new file mode 100644 index 000000000..7eaddfd85 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch.properties @@ -0,0 +1,14 @@ +scenario.description: + +include: ../common.properties + +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt + +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: NNPWithoutKerngegevensShouldResultInNoMatch/in.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = NNPWithoutKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false +step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: NNPWithoutKerngegevensShouldResultInNoMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml new file mode 100644 index 000000000..c0a63eb5e --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/MatchWithZdsRol.xml @@ -0,0 +1,15 @@ + + + + N + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + datumAanvang + + + + 12345678 + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/in.xml new file mode 100644 index 000000000..59ab6f7d7 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/in.xml @@ -0,0 +1,16 @@ + + + + different but no kerngegeven + different but no kerngegeven + + + + different but no kerngegeven + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/out.xml new file mode 100644 index 000000000..de0beb68e --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NNPWithoutKerngegevensShouldResultInNoMatch/out.xml @@ -0,0 +1 @@ + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch.properties new file mode 100644 index 000000000..0b8f2edcb --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch.properties @@ -0,0 +1,15 @@ +scenario.description: +scenario.active: false + +include: ../common.properties + +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt + +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: NPSWithMatchingOnlyInp.bsnShouldResultInMatch/in.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = NPSWithMatchingOnlyInp.bsnShouldResultInMatch/MatchWithZdsRol.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false +step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: NPSWithMatchingOnlyInp.bsnShouldResultInMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/MatchWithZdsRol.xml new file mode 100644 index 000000000..ba2804146 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/MatchWithZdsRol.xml @@ -0,0 +1,15 @@ + + + + 823288444 + N + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + 12345678 + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/in.xml new file mode 100644 index 000000000..6995faebb --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/in.xml @@ -0,0 +1,20 @@ + + + + + 823288444 + J + not the same + also not the same + + + + 12345678 + + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/out.xml new file mode 100644 index 000000000..dec5d5d78 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/NPSWithMatchingOnlyInp.bsnShouldResultInMatch/out.xml @@ -0,0 +1,18 @@ + + + + + 823288444 + J + not the same + also not the same + + + + 12345678 + + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression.properties new file mode 100644 index 000000000..e1b5c5c8e --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression.properties @@ -0,0 +1,14 @@ +scenario.description: + +include: ../common.properties + +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt + +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: Regression/in.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = Regression/MatchWithZdsRol.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false +step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: Regression/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/MatchWithZdsRol.xml new file mode 100644 index 000000000..af4f02832 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/MatchWithZdsRol.xml @@ -0,0 +1,16 @@ + + + + 823288444 + N + + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + 12345678 + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/in.xml new file mode 100644 index 000000000..f938fc193 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/in.xml @@ -0,0 +1,204 @@ + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + 12345678 + + + + + + 823288444 + N + + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + 12345678 + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + + + + 111111110 + J + Precies + + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + + + + + + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/out.xml new file mode 100644 index 000000000..31fba7838 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/Regression/out.xml @@ -0,0 +1,18 @@ + + + + + 823288444 + N + + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + 12345678 + + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch.properties b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch.properties new file mode 100644 index 000000000..63735ce75 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch.properties @@ -0,0 +1,14 @@ +scenario.description: + +include: ../common.properties + +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.filename: Translate/Common/xsl/SelectZdsRolesFromListWithMatchingIdentity.xslt + +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read: SameGerelateerdeButDifferentRoleShouldResultInNoMatch/in.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.name: MatchWithZdsRol +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.valuefile = SameGerelateerdeButDifferentRoleShouldResultInNoMatch/MatchWithZdsRol.xml +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param1.type = domdoc +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.name = debug +step1.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.read.param2.value = false +step2.zaakbrug.SelectZdsRolesFromListWithMatchingIdentity.write: SameGerelateerdeButDifferentRoleShouldResultInNoMatch/out.xml diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/MatchWithZdsRol.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/MatchWithZdsRol.xml new file mode 100644 index 000000000..af4f02832 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/MatchWithZdsRol.xml @@ -0,0 +1,16 @@ + + + + 823288444 + N + + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + 12345678 + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/in.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/in.xml new file mode 100644 index 000000000..83723bf55 --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/in.xml @@ -0,0 +1,21 @@ + + + + + 823288444 + N + + Gemeente Súdwest-Fryslân + overig_privaatrechtelijke_rechtspersoon + + + + 12345678 + + + diff --git a/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/out.xml b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/out.xml new file mode 100644 index 000000000..de0beb68e --- /dev/null +++ b/src/test/testtool/SelectZdsRolesFromListWithMatchingIdentity/SameGerelateerdeButDifferentRoleShouldResultInNoMatch/out.xml @@ -0,0 +1 @@ + diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext.properties b/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext.properties new file mode 100644 index 000000000..170c81a96 --- /dev/null +++ b/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext.properties @@ -0,0 +1,11 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt + +step1.zaakbrug.ApplyValueOverrides.read = AbsentValueOverridesAndMergeWithShouldResultInInputContext/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param1.value = false +step2.zaakbrug.ApplyValueOverrides.write = AbsentValueOverridesAndMergeWithShouldResultInInputContext/out.xml diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/in.xml b/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/in.xml new file mode 100644 index 000000000..fbb84f60c --- /dev/null +++ b/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/in.xml @@ -0,0 +1,15 @@ + + natuurlijk_persoon + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a + BetrekkingOp:Precies + + 111111110 + J + Precies + + P + Pietje + m + 1901-01-01 + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/out.xml b/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/out.xml new file mode 100644 index 000000000..4839dc0b3 --- /dev/null +++ b/src/test/testtool/ValueOverrides/AbsentValueOverridesAndMergeWithShouldResultInInputContext/out.xml @@ -0,0 +1,15 @@ + + + J + 1901-01-01 + m + Precies + 111111110 + P + Pietje + + + natuurlijk_persoon + BetrekkingOp:Precies + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition.properties b/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition.properties new file mode 100644 index 000000000..624bf4aa0 --- /dev/null +++ b/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition.properties @@ -0,0 +1,14 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt + +step1.zaakbrug.ApplyValueOverrides.read = AbsentValueOverridesShouldMergeWithDefaultCondition/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = mergeWith +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = AbsentValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param2.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param2.value = false +step2.zaakbrug.ApplyValueOverrides.write = AbsentValueOverridesShouldMergeWithDefaultCondition/out.xml diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/in.xml b/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/in.xml new file mode 100644 index 000000000..fbb84f60c --- /dev/null +++ b/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/in.xml @@ -0,0 +1,15 @@ + + natuurlijk_persoon + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a + BetrekkingOp:Precies + + 111111110 + J + Precies + + P + Pietje + m + 1901-01-01 + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml b/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml new file mode 100644 index 000000000..95cb727b0 --- /dev/null +++ b/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml @@ -0,0 +1,8 @@ + + lalala + + apple + banana + kiwi + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/out.xml b/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/out.xml new file mode 100644 index 000000000..4cde24bd0 --- /dev/null +++ b/src/test/testtool/ValueOverrides/AbsentValueOverridesShouldMergeWithDefaultCondition/out.xml @@ -0,0 +1,16 @@ + + + J + 1901-01-01 + m + Precies + kiwi + 111111110 + P + Pietje + + + natuurlijk_persoon + BetrekkingOp:Precies + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ApplyValueOverrides.properties b/src/test/testtool/ValueOverrides/ApplyValueOverrides.properties new file mode 100644 index 000000000..aa1b37730 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ApplyValueOverrides.properties @@ -0,0 +1,19 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt + +step1.zaakbrug.ApplyValueOverrides.read = ApplyValueOverrides/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ApplyValueOverrides/ValueOverrides.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = node +step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ApplyValueOverrides/mergeWith.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys +step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.kenmerken +step2.zaakbrug.ApplyValueOverrides.write = ApplyValueOverrides/out.xml diff --git a/src/test/testtool/ValueOverrides/ApplyValueOverrides/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ApplyValueOverrides/ValueOverrides.xml new file mode 100644 index 000000000..52f04ca94 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ApplyValueOverrides/ValueOverrides.xml @@ -0,0 +1,20 @@ + + + zgwRol.roltoelichting + lalala + true() + + + zgwRol.betrokkeneIdentificatie.inpBsn + apple + true() + + + zgwRol.betrokkeneIdentificatie.geslachtsnaam + shouldUseDefaultCondition + + + zgwRol.betrokkeneIdentificatie.idontexist + shouldUseDefaultCondition + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ApplyValueOverrides/in.xml b/src/test/testtool/ValueOverrides/ApplyValueOverrides/in.xml new file mode 100644 index 000000000..186035833 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ApplyValueOverrides/in.xml @@ -0,0 +1,23 @@ + + natuurlijk_persoon + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a + BetrekkingOp:Precies + + 111111110 + J + Precies + + P + Pietje + m + 1901-01-01 + + + kenmerk1 + larva + + + kenmerk2 + larva + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ApplyValueOverrides/mergeWith.xml b/src/test/testtool/ValueOverrides/ApplyValueOverrides/mergeWith.xml new file mode 100644 index 000000000..3442cee9c --- /dev/null +++ b/src/test/testtool/ValueOverrides/ApplyValueOverrides/mergeWith.xml @@ -0,0 +1,8 @@ + + lalala + + apple + banana + kiwi + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ApplyValueOverrides/out.xml b/src/test/testtool/ValueOverrides/ApplyValueOverrides/out.xml new file mode 100644 index 000000000..c76093cf7 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ApplyValueOverrides/out.xml @@ -0,0 +1,24 @@ + + + J + 1901-01-01 + m + Precies + kiwi + apple + P + Pietje + + + natuurlijk_persoon + + kenmerk1 + larva + + + kenmerk2 + larva + + lalala + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen.properties b/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen.properties new file mode 100644 index 000000000..a52306d59 --- /dev/null +++ b/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen.properties @@ -0,0 +1,14 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/BuildValueOverridesZgwToZdsExtraElementen.xslt + +step1.zaakbrug.ApplyValueOverrides.read = BuildValueOverridesZgwToZdsExtraElementen/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = PreValueOverridesContext +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = BuildValueOverridesZgwToZdsExtraElementen/context.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param2.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param2.value = false +step2.zaakbrug.ApplyValueOverrides.write = BuildValueOverridesZgwToZdsExtraElementen/out.xml diff --git a/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/context.xml b/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/context.xml new file mode 100644 index 000000000..8b5d99fd9 --- /dev/null +++ b/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/context.xml @@ -0,0 +1,15 @@ + + + correctValue + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/in.xml b/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/in.xml new file mode 100644 index 000000000..c077bc014 --- /dev/null +++ b/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/in.xml @@ -0,0 +1,15 @@ + + + ${extraElementen:kvkNummer} + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/out.xml b/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/out.xml new file mode 100644 index 000000000..504e24a61 --- /dev/null +++ b/src/test/testtool/ValueOverrides/BuildValueOverridesZgwToZdsExtraElementen/out.xml @@ -0,0 +1,3 @@ + + correctValue + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition.properties b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition.properties new file mode 100644 index 000000000..54daf98e1 --- /dev/null +++ b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition.properties @@ -0,0 +1,17 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt + +step1.zaakbrug.ApplyValueOverrides.read = EmptyRootValueOverridesShouldMergeWithDefaultCondition/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = EmptyRootValueOverridesShouldMergeWithDefaultCondition/ValueOverrides.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = node +step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = EmptyRootValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step2.zaakbrug.ApplyValueOverrides.write = EmptyRootValueOverridesShouldMergeWithDefaultCondition/out.xml diff --git a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/ValueOverrides.xml b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/ValueOverrides.xml new file mode 100644 index 000000000..635b93e76 --- /dev/null +++ b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/ValueOverrides.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/in.xml b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/in.xml new file mode 100644 index 000000000..fbb84f60c --- /dev/null +++ b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/in.xml @@ -0,0 +1,15 @@ + + natuurlijk_persoon + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a + BetrekkingOp:Precies + + 111111110 + J + Precies + + P + Pietje + m + 1901-01-01 + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml new file mode 100644 index 000000000..3442cee9c --- /dev/null +++ b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/mergeWith.xml @@ -0,0 +1,8 @@ + + lalala + + apple + banana + kiwi + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/out.xml b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/out.xml new file mode 100644 index 000000000..4cde24bd0 --- /dev/null +++ b/src/test/testtool/ValueOverrides/EmptyRootValueOverridesShouldMergeWithDefaultCondition/out.xml @@ -0,0 +1,16 @@ + + + J + 1901-01-01 + m + Precies + kiwi + 111111110 + P + Pietje + + + natuurlijk_persoon + BetrekkingOp:Precies + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen.properties b/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen.properties new file mode 100644 index 000000000..33575dc55 --- /dev/null +++ b/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen.properties @@ -0,0 +1,14 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/FilterPostValueOverrideContextSourcedFromExtraElementen.xslt + +step1.zaakbrug.ApplyValueOverrides.read = FilterPostValueOverrideContextSourcedFromExtraElementen/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = PreValueOverridesContext +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = FilterPostValueOverrideContextSourcedFromExtraElementen/context.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param2.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param2.value = false +step2.zaakbrug.ApplyValueOverrides.write = FilterPostValueOverrideContextSourcedFromExtraElementen/out.xml diff --git a/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/context.xml b/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/context.xml new file mode 100644 index 000000000..8b5d99fd9 --- /dev/null +++ b/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/context.xml @@ -0,0 +1,15 @@ + + + correctValue + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/in.xml b/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/in.xml new file mode 100644 index 000000000..c077bc014 --- /dev/null +++ b/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/in.xml @@ -0,0 +1,15 @@ + + + ${extraElementen:kvkNummer} + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/out.xml b/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/out.xml new file mode 100644 index 000000000..3fef94da8 --- /dev/null +++ b/src/test/testtool/ValueOverrides/FilterPostValueOverrideContextSourcedFromExtraElementen/out.xml @@ -0,0 +1,14 @@ + + + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue.properties b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue.properties new file mode 100644 index 000000000..53b5821f2 --- /dev/null +++ b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue.properties @@ -0,0 +1,19 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt + +step1.zaakbrug.ApplyValueOverrides.read = NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/ValueOverrides.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = node +step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/mergeWith.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys +step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.kenmerken +step2.zaakbrug.ApplyValueOverrides.write = NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/out.xml diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/ValueOverrides.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/ValueOverrides.xml new file mode 100644 index 000000000..635b93e76 --- /dev/null +++ b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/ValueOverrides.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/in.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/in.xml new file mode 100644 index 000000000..d05f1ba38 --- /dev/null +++ b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/in.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/mergeWith.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/mergeWith.xml new file mode 100644 index 000000000..e30b2c9ac --- /dev/null +++ b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/mergeWith.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/out.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/out.xml new file mode 100644 index 000000000..432d465aa --- /dev/null +++ b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseEmptyInputContextValue/out.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue.properties b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue.properties new file mode 100644 index 000000000..d71d5133d --- /dev/null +++ b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue.properties @@ -0,0 +1,19 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt + +step1.zaakbrug.ApplyValueOverrides.read = NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/ValueOverrides.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = node +step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/mergeWith.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys +step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.kenmerken +step2.zaakbrug.ApplyValueOverrides.write = NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/out.xml diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/ValueOverrides.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/ValueOverrides.xml new file mode 100644 index 000000000..635b93e76 --- /dev/null +++ b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/ValueOverrides.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/in.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/in.xml new file mode 100644 index 000000000..c8c547e8f --- /dev/null +++ b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/in.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/mergeWith.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/mergeWith.xml new file mode 100644 index 000000000..e30b2c9ac --- /dev/null +++ b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/mergeWith.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/out.xml b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/out.xml new file mode 100644 index 000000000..25f0f1cdf --- /dev/null +++ b/src/test/testtool/ValueOverrides/NoValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseNilInputContextValue/out.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides.properties b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides.properties new file mode 100644 index 000000000..9141e0e1d --- /dev/null +++ b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides.properties @@ -0,0 +1,19 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt + +step1.zaakbrug.ApplyValueOverrides.read = ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/ValueOverrides.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = node +step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/mergeWith.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys +step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.kenmerken +step2.zaakbrug.ApplyValueOverrides.write = ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/out.xml diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/ValueOverrides.xml new file mode 100644 index 000000000..bab80fbdb --- /dev/null +++ b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/ValueOverrides.xml @@ -0,0 +1,7 @@ + + + zgwRol.kenmerken + lalala + true() + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/in.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/in.xml new file mode 100644 index 000000000..186035833 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/in.xml @@ -0,0 +1,23 @@ + + natuurlijk_persoon + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a + BetrekkingOp:Precies + + 111111110 + J + Precies + + P + Pietje + m + 1901-01-01 + + + kenmerk1 + larva + + + kenmerk2 + larva + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/mergeWith.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/mergeWith.xml new file mode 100644 index 000000000..470e5869a --- /dev/null +++ b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/mergeWith.xml @@ -0,0 +1,12 @@ + + lalala + + apple + banana + kiwi + + + kenmerk3 + larva + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/out.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/out.xml new file mode 100644 index 000000000..5ec2aed91 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyShouldCopyElementsFromBothContextsAndIgnoreValueOverrides/out.xml @@ -0,0 +1,29 @@ + + + J + 1901-01-01 + m + Precies + kiwi + 111111110 + P + Pietje + + + natuurlijk_persoon + + kenmerk1 + larva + + + kenmerk2 + larva + + + kenmerk3 + larva + + BetrekkingOp:Precies + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError.properties b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError.properties new file mode 100644 index 000000000..382fa4d60 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError.properties @@ -0,0 +1,19 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt + +step1.zaakbrug.ApplyValueOverrides.read = ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/ValueOverrides.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = node +step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/mergeWith.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys +step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.imnotinthecontexts +step2.zaakbrug.ApplyValueOverrides.write = ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/out.xml diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/ValueOverrides.xml new file mode 100644 index 000000000..4c3f9df59 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/ValueOverrides.xml @@ -0,0 +1,7 @@ + + + zgwRol.roltoelichting + lalala + true() + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/in.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/in.xml new file mode 100644 index 000000000..fbb84f60c --- /dev/null +++ b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/in.xml @@ -0,0 +1,15 @@ + + natuurlijk_persoon + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a + BetrekkingOp:Precies + + 111111110 + J + Precies + + P + Pietje + m + 1901-01-01 + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/mergeWith.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/mergeWith.xml new file mode 100644 index 000000000..95cb727b0 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/mergeWith.xml @@ -0,0 +1,8 @@ + + lalala + + apple + banana + kiwi + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/out.xml b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/out.xml new file mode 100644 index 000000000..37a720196 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ProcessAsArrayKeyWithElementAbsentInContextsShouldNotThrowError/out.xml @@ -0,0 +1,16 @@ + + + J + 1901-01-01 + m + Precies + kiwi + 111111110 + P + Pietje + + + natuurlijk_persoon + lalala + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/91d7e379-06a8-42c6-bcec-19990dccbc9a + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue.properties b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue.properties new file mode 100644 index 000000000..c5b4bea59 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue.properties @@ -0,0 +1,17 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ResolveDynamicValuesWithExtraElementenContext.xslt + +step1.zaakbrug.ApplyValueOverrides.read = ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = ExtraElementenContext +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param2.name = PreValueOverridesContext +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step2.zaakbrug.ApplyValueOverrides.write = ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml new file mode 100644 index 000000000..ffeb56c20 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml @@ -0,0 +1,15 @@ + + + this is the pre-override value + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml new file mode 100644 index 000000000..069de05d5 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml new file mode 100644 index 000000000..866ca7ee7 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml @@ -0,0 +1,7 @@ + + + ${extraElementen:kvkNummer} + chrijvingGeneriek>initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml new file mode 100644 index 000000000..2fd2bb231 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml @@ -0,0 +1,15 @@ + + + this is the pre-override value + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + adgwaygd + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement.properties b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement.properties new file mode 100644 index 000000000..63b92c1c7 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement.properties @@ -0,0 +1,17 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ResolveDynamicValuesWithExtraElementenContext.xslt + +step1.zaakbrug.ApplyValueOverrides.read = ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = ExtraElementenContext +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/context.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param2.name = PreValueOverridesContext +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/PreValueOverridesContext.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step2.zaakbrug.ApplyValueOverrides.write = ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/out.xml diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/PreValueOverridesContext.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/PreValueOverridesContext.xml new file mode 100644 index 000000000..ffeb56c20 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/PreValueOverridesContext.xml @@ -0,0 +1,15 @@ + + + this is the pre-override value + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/context.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/context.xml new file mode 100644 index 000000000..5f11a254b --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/context.xml @@ -0,0 +1,27 @@ + + + + 823288444 + N + Gemeente Súdwest-Fryslân + + Eenmanszaak + + 0091200000046730 + J + Sneek + Marktstraat + Marktstraat + 8601CR + 15 + + + + + + + + + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/in.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/in.xml new file mode 100644 index 000000000..c077bc014 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/in.xml @@ -0,0 +1,15 @@ + + + ${extraElementen:kvkNummer} + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/out.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/out.xml new file mode 100644 index 000000000..ea7ab634e --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyAndNilExtraElementShouldResultInEmptyElement/out.xml @@ -0,0 +1,15 @@ + + + + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue.properties b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue.properties new file mode 100644 index 000000000..fe4cbb6b5 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue.properties @@ -0,0 +1,17 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ResolveDynamicValuesWithExtraElementenContext.xslt + +step1.zaakbrug.ApplyValueOverrides.read = ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = ExtraElementenContext +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/context.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param2.name = PreValueOverridesContext +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step2.zaakbrug.ApplyValueOverrides.write = ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml new file mode 100644 index 000000000..ffeb56c20 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/PreValueOverridesContext.xml @@ -0,0 +1,15 @@ + + + this is the pre-override value + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/context.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/context.xml new file mode 100644 index 000000000..3c5441da9 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/context.xml @@ -0,0 +1,27 @@ + + + + 823288444 + N + Gemeente Súdwest-Fryslân + + Eenmanszaak + + 0091200000046730 + J + Sneek + Marktstraat + Marktstraat + 8601CR + 15 + + + + + + + + + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/in.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/in.xml new file mode 100644 index 000000000..c077bc014 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/in.xml @@ -0,0 +1,15 @@ + + + ${extraElementen:kvkNummer} + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/out.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/out.xml new file mode 100644 index 000000000..93524b964 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithEmptyExtraElementShouldResultInPreValueOverrideValue/out.xml @@ -0,0 +1,15 @@ + + + this is the pre-override value + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue.properties b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue.properties new file mode 100644 index 000000000..9994f9e5d --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue.properties @@ -0,0 +1,17 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ResolveDynamicValuesWithExtraElementenContext.xslt + +step1.zaakbrug.ApplyValueOverrides.read = ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = ExtraElementenContext +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/context.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param2.name = PreValueOverridesContext +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/PreValueOverridesContext.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step2.zaakbrug.ApplyValueOverrides.write = ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/PreValueOverridesContext.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/PreValueOverridesContext.xml new file mode 100644 index 000000000..ffeb56c20 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/PreValueOverridesContext.xml @@ -0,0 +1,15 @@ + + + this is the pre-override value + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/context.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/context.xml new file mode 100644 index 000000000..2e8c9e030 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/context.xml @@ -0,0 +1,27 @@ + + + + 823288444 + N + Gemeente Súdwest-Fryslân + + Eenmanszaak + + 0091200000046730 + J + Sneek + Marktstraat + Marktstraat + 8601CR + 15 + + + + + + + + 12345678 + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/in.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/in.xml new file mode 100644 index 000000000..c077bc014 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/in.xml @@ -0,0 +1,15 @@ + + + ${extraElementen:kvkNummer} + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/out.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/out.xml new file mode 100644 index 000000000..54704da9e --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementWIthValueShouldResultInExtraElementValue/out.xml @@ -0,0 +1,15 @@ + + + 12345678 + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext.properties b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext.properties new file mode 100644 index 000000000..a1cb42c46 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext.properties @@ -0,0 +1,17 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ResolveDynamicValuesWithExtraElementenContext.xslt + +step1.zaakbrug.ApplyValueOverrides.read = ResolveDynamicValuesWithExtraElementenContext/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = ExtraElementenContext +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ResolveDynamicValuesWithExtraElementenContext/context.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param2.name = PreValueOverridesContext +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ResolveDynamicValuesWithExtraElementenContext/PreValueOverridesContext.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step2.zaakbrug.ApplyValueOverrides.write = ResolveDynamicValuesWithExtraElementenContext/out.xml diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/PreValueOverridesContext.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/PreValueOverridesContext.xml new file mode 100644 index 000000000..ffeb56c20 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/PreValueOverridesContext.xml @@ -0,0 +1,15 @@ + + + this is the pre-override value + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/context.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/context.xml new file mode 100644 index 000000000..2e8c9e030 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/context.xml @@ -0,0 +1,27 @@ + + + + 823288444 + N + Gemeente Súdwest-Fryslân + + Eenmanszaak + + 0091200000046730 + J + Sneek + Marktstraat + Marktstraat + 8601CR + 15 + + + + + + + + 12345678 + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/in.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/in.xml new file mode 100644 index 000000000..c077bc014 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/in.xml @@ -0,0 +1,15 @@ + + + ${extraElementen:kvkNummer} + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/out.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/out.xml new file mode 100644 index 000000000..68f1e7e71 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithExtraElementenContext/out.xml @@ -0,0 +1,15 @@ + + + 12345678 + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator + Initiator:Gemeente Súdwest-Fryslân + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue.properties b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue.properties new file mode 100644 index 000000000..265b1ac8e --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue.properties @@ -0,0 +1,17 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt + +step1.zaakbrug.ApplyValueOverrides.read = ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/ValueOverrides.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = node +step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/mergeWith.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step2.zaakbrug.ApplyValueOverrides.write = ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/ValueOverrides.xml new file mode 100644 index 000000000..329dfeee1 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/ValueOverrides.xml @@ -0,0 +1,6 @@ + + + zgwRol.betrokkeneIdentificatie.voornamen + valueFromOverride + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/in.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/in.xml new file mode 100644 index 000000000..079f8fb56 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/in.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/mergeWith.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/mergeWith.xml new file mode 100644 index 000000000..c564a8f65 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/mergeWith.xml @@ -0,0 +1,5 @@ + + + valueFromOverride + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/out.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/out.xml new file mode 100644 index 000000000..c564a8f65 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextAbsentShouldUseMergeWithContextValue/out.xml @@ -0,0 +1,5 @@ + + + valueFromOverride + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue.properties b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue.properties new file mode 100644 index 000000000..56b76feb2 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue.properties @@ -0,0 +1,19 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt + +step1.zaakbrug.ApplyValueOverrides.read = ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/ValueOverrides.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = node +step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/mergeWith.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys +step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.kenmerken +step2.zaakbrug.ApplyValueOverrides.write = ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/ValueOverrides.xml new file mode 100644 index 000000000..329dfeee1 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/ValueOverrides.xml @@ -0,0 +1,6 @@ + + + zgwRol.betrokkeneIdentificatie.voornamen + valueFromOverride + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/in.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/in.xml new file mode 100644 index 000000000..d05f1ba38 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/in.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/mergeWith.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/mergeWith.xml new file mode 100644 index 000000000..c564a8f65 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/mergeWith.xml @@ -0,0 +1,5 @@ + + + valueFromOverride + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/out.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/out.xml new file mode 100644 index 000000000..c564a8f65 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextEmptyShouldUseMergeWithContextValue/out.xml @@ -0,0 +1,5 @@ + + + valueFromOverride + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue.properties b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue.properties new file mode 100644 index 000000000..5152aa6ff --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue.properties @@ -0,0 +1,17 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt + +step1.zaakbrug.ApplyValueOverrides.read = ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/ValueOverrides.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = node +step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/mergeWith.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step2.zaakbrug.ApplyValueOverrides.write = ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/ValueOverrides.xml new file mode 100644 index 000000000..329dfeee1 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/ValueOverrides.xml @@ -0,0 +1,6 @@ + + + zgwRol.betrokkeneIdentificatie.voornamen + valueFromOverride + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/in.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/in.xml new file mode 100644 index 000000000..222bb8c9c --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/in.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/mergeWith.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/mergeWith.xml new file mode 100644 index 000000000..c564a8f65 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/mergeWith.xml @@ -0,0 +1,5 @@ + + + valueFromOverride + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/out.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/out.xml new file mode 100644 index 000000000..7adc035d2 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNilShouldUseMergeWithContextValue/out.xml @@ -0,0 +1,5 @@ + + + valueFromOverride + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue.properties b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue.properties new file mode 100644 index 000000000..3f1fd7a0b --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue.properties @@ -0,0 +1,19 @@ +scenario.description = + +include =../common.properties + +zaakbrug.ApplyValueOverrides.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ApplyValueOverrides.filename = Translate/Common/xsl/ApplyValueOverrides.xslt + +step1.zaakbrug.ApplyValueOverrides.read = ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/in.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.name = valueOverrides +step1.zaakbrug.ApplyValueOverrides.read.param1.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/ValueOverrides.xml +step1.zaakbrug.ApplyValueOverrides.read.param1.type = node +step1.zaakbrug.ApplyValueOverrides.read.param2.name = mergeWith +step1.zaakbrug.ApplyValueOverrides.read.param2.valuefile = ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/mergeWith.xml +step1.zaakbrug.ApplyValueOverrides.read.param2.type = domdoc +step1.zaakbrug.ApplyValueOverrides.read.param3.name = debug +step1.zaakbrug.ApplyValueOverrides.read.param3.value = false +step1.zaakbrug.ApplyValueOverrides.read.param4.name = processAsArrayKeys +step1.zaakbrug.ApplyValueOverrides.read.param4.value = zgwRol.kenmerken +step2.zaakbrug.ApplyValueOverrides.write = ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/out.xml diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/ValueOverrides.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/ValueOverrides.xml new file mode 100644 index 000000000..329dfeee1 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/ValueOverrides.xml @@ -0,0 +1,6 @@ + + + zgwRol.betrokkeneIdentificatie.voornamen + valueFromOverride + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/in.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/in.xml new file mode 100644 index 000000000..58365a313 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/in.xml @@ -0,0 +1,5 @@ + + + nonEmptyInputContextValue + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/mergeWith.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/mergeWith.xml new file mode 100644 index 000000000..c564a8f65 --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/mergeWith.xml @@ -0,0 +1,5 @@ + + + valueFromOverride + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/out.xml b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/out.xml new file mode 100644 index 000000000..a44b021df --- /dev/null +++ b/src/test/testtool/ValueOverrides/ValueOverrideWithDefaultConditionAndElementInInputContextNonEmptyShouldUseInputContextValue/out.xml @@ -0,0 +1,5 @@ + + + nonEmptyInputContextValue + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten.properties b/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten.properties new file mode 100644 index 000000000..f8483f4cc --- /dev/null +++ b/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten.properties @@ -0,0 +1,14 @@ +scenario.description = ValueOverridesDepthFirstUnflatten + +include =../common.properties + +zaakbrug.ValueOverridesDepthFirstUnflatten.className = nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ValueOverridesDepthFirstUnflatten.filename = Translate/Common/xsl/ValueOverridesDepthFirstUnflatten.xslt + +# step1.zaakbrug.ValueOverridesDepthFirstUnflatten.read = ../dummy.xml +step1.zaakbrug.ValueOverridesDepthFirstUnflatten.read = ValueOverridesDepthFirstUnflatten/ValueOverrides.xml +step1.zaakbrug.ValueOverridesDepthFirstUnflatten.read.param1.name = valueOverrides +step1.zaakbrug.ValueOverridesDepthFirstUnflatten.read.param1.valuefile = ValueOverridesDepthFirstUnflatten/ValueOverrides.xml +step1.zaakbrug.ValueOverridesDepthFirstUnflatten.read.param1.type = node +step2.zaakbrug.ValueOverridesDepthFirstUnflatten.write = ValueOverridesDepthFirstUnflatten/out.xml + diff --git a/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/ValueOverrides.xml b/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/ValueOverrides.xml new file mode 100644 index 000000000..3bad7abca --- /dev/null +++ b/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/ValueOverrides.xml @@ -0,0 +1,21 @@ + + + zgwRol.roltoelichting + lalala + true() + + + zgwRol.betrokkeneIdentificatie.inpBsn + apple + true() + + + zgwRol.betrokkeneIdentificatie.geslachtsnaam + banana + true() + + + zgwRol.betrokkeneIdentificatie.idontexist + kiwi + + \ No newline at end of file diff --git a/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/out.xml b/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/out.xml new file mode 100644 index 000000000..3442cee9c --- /dev/null +++ b/src/test/testtool/ValueOverridesDepthFirstUnflatten/ValueOverridesDepthFirstUnflatten/out.xml @@ -0,0 +1,8 @@ + + lalala + + apple + banana + kiwi + + \ No newline at end of file diff --git a/src/test/testtool/ZgwRol/ZgwRol.properties b/src/test/testtool/ZgwRol/ZgwRol.properties new file mode 100644 index 000000000..644404057 --- /dev/null +++ b/src/test/testtool/ZgwRol/ZgwRol.properties @@ -0,0 +1,16 @@ +scenario.description: + +include: ../common.properties + +zaakbrug.ZgwRol.className: nl.nn.adapterframework.testtool.XsltProviderListener +zaakbrug.ZgwRol.filename: Translate/Common/xsl/ZgwRol.xslt + +step1.zaakbrug.ZgwRol.read: ZgwRol/in.xml +step1.zaakbrug.ZgwRol.read.param1.name: RolMapping +step1.zaakbrug.ZgwRol.read.param1.valuefile = ZgwRol/RolMapping.xml +step1.zaakbrug.ZgwRol.read.param1.type = domdoc +step1.zaakbrug.ZgwRol.read.param2.name: ZgwRolTypen +step1.zaakbrug.ZgwRol.read.param2.valuefile = ZgwRol/ZgwRolTypen.xml +step1.zaakbrug.ZgwRol.read.param2.type = domdoc +step2.zaakbrug.ZgwRol.write: ZgwRol/out.xml + diff --git a/src/test/testtool/ZgwRol/ZgwRol/RolMapping.xml b/src/test/testtool/ZgwRol/ZgwRol/RolMapping.xml new file mode 100644 index 000000000..1c01b8da8 --- /dev/null +++ b/src/test/testtool/ZgwRol/ZgwRol/RolMapping.xml @@ -0,0 +1,31 @@ + + + Haarlem + 0392 + 001005650 + + + Zeevang + 0478 + 001509962 + + + Súdwest-Fryslân + 1900 + 548746485 + + + Eindhoven + 0772 + 548746485 + + + BetrekkingOp + Belanghebbende + Initiator + Uitvoerende + Verantwoordelijke + Gemachtigde + OverigeBetrokkene + + \ No newline at end of file diff --git a/src/test/testtool/ZgwRol/ZgwRol/ZgwRolTypen.xml b/src/test/testtool/ZgwRol/ZgwRol/ZgwRolTypen.xml new file mode 100644 index 000000000..d5bab59b9 --- /dev/null +++ b/src/test/testtool/ZgwRol/ZgwRol/ZgwRolTypen.xml @@ -0,0 +1,38 @@ + + + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/c7430300-daa3-4b72-87c9-cb90b7a588a5 + http://open-zaak.nginx:9001/catalogi/api/v1/zaaktypen/d66575b0-6896-43dd-9c9a-199a8d1262a5 + VO-A + Belanghebbende + belanghebbende + http://open-zaak.nginx:9001/catalogi/api/v1/catalogussen/6bcc3fc9-70af-4980-a3cb-f9ab1dd9b83f + + + + + + + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + http://open-zaak.nginx:9001/catalogi/api/v1/zaaktypen/d66575b0-6896-43dd-9c9a-199a8d1262a5 + VO-A + Initiator + initiator + http://open-zaak.nginx:9001/catalogi/api/v1/catalogussen/6bcc3fc9-70af-4980-a3cb-f9ab1dd9b83f + + + + + + + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/660afdba-c84b-4fe9-9335-e510c968831a + http://open-zaak.nginx:9001/catalogi/api/v1/zaaktypen/d66575b0-6896-43dd-9c9a-199a8d1262a5 + VO-A + Behandelaar + behandelaar + http://open-zaak.nginx:9001/catalogi/api/v1/catalogussen/6bcc3fc9-70af-4980-a3cb-f9ab1dd9b83f + + + + + + \ No newline at end of file diff --git a/src/test/testtool/ZgwRol/ZgwRol/in.xml b/src/test/testtool/ZgwRol/ZgwRol/in.xml new file mode 100644 index 000000000..03cdc610a --- /dev/null +++ b/src/test/testtool/ZgwRol/ZgwRol/in.xml @@ -0,0 +1,21 @@ + + + + + 111111110 + J + Precies + + P + + + + + + + + + 12345678 + + + \ No newline at end of file diff --git a/src/test/testtool/ZgwRol/ZgwRol/out.xml b/src/test/testtool/ZgwRol/ZgwRol/out.xml new file mode 100644 index 000000000..a1534fe9e --- /dev/null +++ b/src/test/testtool/ZgwRol/ZgwRol/out.xml @@ -0,0 +1,12 @@ + + http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 + Initiator + initiator + natuurlijk_persoon + Initiator:Precies + + 111111110 + J + Precies + P \ No newline at end of file From 6b7032d383733a8bc1b5855f2d4fdca46fdf3cff Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Thu, 12 Dec 2024 13:54:00 +0100 Subject: [PATCH 28/31] Revert "force another failure" This reverts commit 4f1cd85727173c3122afa60dd9070d41d1fb6f8f. --- .../context.xml | 14 ++++++++++++++ .../in.xml | 10 +++++++++- .../out.xml | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml index 069de05d5..54e58f92a 100644 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/context.xml @@ -1,6 +1,20 @@ + 823288444 + N + Gemeente Súdwest-Fryslân + + Eenmanszaak + + 0091200000046730 + J + Sneek + Marktstraat + Marktstraat + 8601CR + 15 diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml index 866ca7ee7..c077bc014 100644 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/in.xml @@ -1,7 +1,15 @@ ${extraElementen:kvkNummer} - chrijvingGeneriek>initiator + N + fromValueOverride + 823288444 + overig_privaatrechtelijke_rechtspersoon + Gemeente Súdwest-Fryslân + + niet_natuurlijk_persoon + Initiator + initiator Initiator:Gemeente Súdwest-Fryslân http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 \ No newline at end of file diff --git a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml index 2fd2bb231..93524b964 100644 --- a/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml +++ b/src/test/testtool/ValueOverrides/ResolveDynamicValuesWithAbsentExtraElementShouldResultInPreValueOverrideValue/out.xml @@ -9,7 +9,7 @@ niet_natuurlijk_persoon Initiator - adgwaygd + initiator Initiator:Gemeente Súdwest-Fryslân http://open-zaak.nginx:9001/catalogi/api/v1/roltypen/a892d249-d866-417b-bc88-8d1287da7de8 \ No newline at end of file From 17d93fae0cf0d227baf418c41a864c0ad692b68f Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Thu, 12 Dec 2024 13:54:05 +0100 Subject: [PATCH 29/31] Revert "force more test failures" This reverts commit a971abb42fcd10ef30154fc207efb6043e1e855d. --- .../ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt | 2 +- .../Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt | 2 +- .../Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt | 2 +- .../ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt | 2 +- .../ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt index 4aad2ed18..5855595d4 100644 --- a/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt +++ b/src/test/testtool/ConvertISO639Taal/Alpha2ShouldReturnAlpha3t/out.txt @@ -1 +1 @@ -nlddsds \ No newline at end of file +nld \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt index 059e33b58..2c4c454fd 100644 --- a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt +++ b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3bValueShouldReturnAlpha2/out.txt @@ -1 +1 @@ -endsds \ No newline at end of file +en \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt index 86a8418bd..d5f5c2a19 100644 --- a/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt +++ b/src/test/testtool/ConvertISO639Taal/Alpha3WithAlpha3tValueShouldReturnAlpha2/out.txt @@ -1 +1 @@ -nldsds \ No newline at end of file +nl \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt index 059e33b58..2c4c454fd 100644 --- a/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt +++ b/src/test/testtool/ConvertISO639Taal/Alpha3bShouldReturnAlpha2/out.txt @@ -1 +1 @@ -endsds \ No newline at end of file +en \ No newline at end of file diff --git a/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt b/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt index 86a8418bd..d5f5c2a19 100644 --- a/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt +++ b/src/test/testtool/ConvertISO639Taal/Alpha3tShouldReturnAlpha2/out.txt @@ -1 +1 @@ -nldsds \ No newline at end of file +nl \ No newline at end of file From 875e6381dab2ff1b1bbb2b21fecb22731ddf5176 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Thu, 12 Dec 2024 13:54:11 +0100 Subject: [PATCH 30/31] Revert "add more failed tests" This reverts commit f312b8b529e730bbba716e54748388b844b37874. --- src/test/testtool/EnrichEntity/Regression/out.xml | 2 +- .../testtool/SelectZdsRoles/SelectZdsRoles/in.xml | 2 +- .../SelectZdsRoles/SelectZdsRoles/out.xml | 2 +- src/test/testtool/ZgwRol/ZgwRol/in.xml | 15 ++++++++++++++- src/test/testtool/ZgwRol/ZgwRol/out.xml | 6 +++++- 5 files changed, 22 insertions(+), 5 deletions(-) diff --git a/src/test/testtool/EnrichEntity/Regression/out.xml b/src/test/testtool/EnrichEntity/Regression/out.xml index b5f4030a6..5d2c449dd 100644 --- a/src/test/testtool/EnrichEntity/Regression/out.xml +++ b/src/test/testtool/EnrichEntity/Regression/out.xml @@ -6,7 +6,7 @@ ZK2024-00194 Aanvraag omgevingsvergunning 20240920 - 1234567890 + 20240920 (Nog) niet J diff --git a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml index 98d71fe5c..ada26ac9d 100644 --- a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml +++ b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/in.xml @@ -15,7 +15,7 @@ - 123456789 + 111111110 J Precies diff --git a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml index 69904bbf1..0ac595efb 100644 --- a/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml +++ b/src/test/testtool/SelectZdsRoles/SelectZdsRoles/out.xml @@ -3,7 +3,7 @@ - 23456789 + 111111110 J Precies diff --git a/src/test/testtool/ZgwRol/ZgwRol/in.xml b/src/test/testtool/ZgwRol/ZgwRol/in.xml index 03cdc610a..674b0c8ca 100644 --- a/src/test/testtool/ZgwRol/ZgwRol/in.xml +++ b/src/test/testtool/ZgwRol/ZgwRol/in.xml @@ -6,7 +6,20 @@ J Precies - P + P + Pietje + M + 19010101 + + + J + Bolsward + + Kerkstraat + 8701HP + 1 + + diff --git a/src/test/testtool/ZgwRol/ZgwRol/out.xml b/src/test/testtool/ZgwRol/ZgwRol/out.xml index a1534fe9e..ed31c31d2 100644 --- a/src/test/testtool/ZgwRol/ZgwRol/out.xml +++ b/src/test/testtool/ZgwRol/ZgwRol/out.xml @@ -8,5 +8,9 @@ 111111110 J Precies - PP + Pietje + m + 1901-01-01 + \ No newline at end of file From dfb0420f96898178ed2b5c59aa58b3efc2842228 Mon Sep 17 00:00:00 2001 From: DelanoWAF Date: Thu, 12 Dec 2024 13:54:22 +0100 Subject: [PATCH 31/31] Revert "attempt failed test trigger" This reverts commit f0623b450b7b0c5cd50134eb3ca4d14bf11ce53e. --- .../out.xml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml b/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml index 3f4b88f44..9bddfa534 100644 --- a/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml +++ b/src/test/testtool/EnrichEntity/EmptyWithParamShouldResultInUnchangedInput/out.xml @@ -1,3 +1,12 @@ - \ No newline at end of file + ZK2024-00194 + Aanvraag omgevingsvergunning + 20240920 + 20240920 + (Nog) niet + J + + openbaar + + \ No newline at end of file